Bjorn Bringert | fb903a4 | 2013-03-18 21:17:26 +0000 | [diff] [blame] | 1 | #ifndef HOST_PSEUDOLOCALIZE_H |
| 2 | #define HOST_PSEUDOLOCALIZE_H |
| 3 | |
Anton Krumin | a2ef5c0 | 2014-03-12 14:46:44 -0700 | [diff] [blame] | 4 | #include "StringPool.h" |
| 5 | |
Bjorn Bringert | fb903a4 | 2013-03-18 21:17:26 +0000 | [diff] [blame] | 6 | #include <string> |
| 7 | |
Anton Krumin | a2ef5c0 | 2014-03-12 14:46:44 -0700 | [diff] [blame] | 8 | String16 pseudolocalize_string(const String16& source); |
| 9 | // Surrounds every word in the sentance with specific characters that makes |
| 10 | // the word directionality RTL. |
| 11 | String16 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. |
| 15 | String16 pseudo_generate_expansion(const unsigned int length); |
Bjorn Bringert | fb903a4 | 2013-03-18 21:17:26 +0000 | [diff] [blame] | 16 | |
| 17 | #endif // HOST_PSEUDOLOCALIZE_H |
| 18 | |