blob: baeabcdaf291f4eb87e75c385dbbecc7849b146c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#include "common.hpp"
namespace text {
std::string unit_no_path;
std::string unit_blocked;
void load_strings(std::string lang)
{
unit_no_path = "Cannot find a path.";
unit_blocked = "The path is blocked.";
}
}
|