1#ifndef HOST_PSEUDOLOCALIZE_H
2#define HOST_PSEUDOLOCALIZE_H
3
4#include "StringPool.h"
5
6#include <string>
7
8String16 pseudolocalize_string(const String16& source);
9// Surrounds every word in the sentance with specific characters that makes
10// the word directionality RTL.
11String16 pseudobidi_string(const String16& source);
12// Generates expansion string based on the specified lenght.
13// Generated string could not be shorter that length, but it could be slightly
14// longer.
15String16 pseudo_generate_expansion(const unsigned int length);
16
17#endif // HOST_PSEUDOLOCALIZE_H
18
19