Welcome to mirror list, hosted at ThFree Co, Russian Federation.

localization_dummy.cpp « platform - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 640415ac77e1e6f8e6082bc4b7e7ec57d4279d39 (plain)
1
2
3
4
5
6
7
8
9
10
#include "platform/localization.hpp"

namespace platform
{
std::string GetLocalizedTypeName(std::string const & type) { return type; }

std::string GetLocalizedBrandName(std::string const & brand) { return brand; }

std::string GetLocalizedString(std::string const & key) { return key; }
}  // namespace platform