2013-03-18 21:17:26 +00:00
|
|
|
#ifndef HOST_PSEUDOLOCALIZE_H
|
|
|
|
#define HOST_PSEUDOLOCALIZE_H
|
|
|
|
|
2014-03-12 14:46:44 -07:00
|
|
|
#include "StringPool.h"
|
|
|
|
|
2013-03-18 21:17:26 +00:00
|
|
|
#include <string>
|
|
|
|
|
2014-03-12 14:46:44 -07:00
|
|
|
String16 pseudolocalize_string(const String16& source);
|
|
|
|
// Surrounds every word in the sentance with specific characters that makes
|
|
|
|
// the word directionality RTL.
|
|
|
|
String16 pseudobidi_string(const String16& source);
|
|
|
|
// Generates expansion string based on the specified lenght.
|
|
|
|
// Generated string could not be shorter that length, but it could be slightly
|
|
|
|
// longer.
|
|
|
|
String16 pseudo_generate_expansion(const unsigned int length);
|
2013-03-18 21:17:26 +00:00
|
|
|
|
|
|
|
#endif // HOST_PSEUDOLOCALIZE_H
|
|
|
|
|