blob: e6ab18ef1747eea610c9509adac326207c7a0763 [file] [log] [blame]
Bjorn Bringertfb903a42013-03-18 21:17:26 +00001#ifndef HOST_PSEUDOLOCALIZE_H
2#define HOST_PSEUDOLOCALIZE_H
3
Anton Krumina2ef5c02014-03-12 14:46:44 -07004#include "StringPool.h"
5
Bjorn Bringertfb903a42013-03-18 21:17:26 +00006#include <string>
7
Anton Krumina2ef5c02014-03-12 14:46:44 -07008String16 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);
Bjorn Bringertfb903a42013-03-18 21:17:26 +000016
17#endif // HOST_PSEUDOLOCALIZE_H
18