diff options
Diffstat (limited to 'kdejava/koala/org/kde/koala/KDE.java')
-rw-r--r-- | kdejava/koala/org/kde/koala/KDE.java | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/kdejava/koala/org/kde/koala/KDE.java b/kdejava/koala/org/kde/koala/KDE.java index 4a6b22f7..d1b1d1f9 100644 --- a/kdejava/koala/org/kde/koala/KDE.java +++ b/kdejava/koala/org/kde/koala/KDE.java @@ -64,7 +64,7 @@ public class KDE { public static native String versionString(); // int KSSLPemCallback(char* arg1,int arg2,int arg3,void* arg4); >>>> NOT CONVERTED /** - {@link KLocale} + {@link TDELocale} i18n is the function that does everything you need to translate a string. You just wrap around every user visible string a i18n call to get a String with the string in the user's preferred @@ -73,20 +73,20 @@ public class KDE { characters that are in US-ASCII, you're on the safe side. But for e.g. German umlauts or French accents should be recoded to UTF-8) - @short {@link KLocale} i18n is the function that does everything you need to translate a string. + @short {@link TDELocale} i18n is the function that does everything you need to translate a string. */ public static native String i18n(String text); /** - {@link KLocale} + {@link TDELocale} If the string is too ambiguous to be translated well to a non-english language, use this form of i18n to separate lookup string and english text. - @short {@link KLocale} If the string is too ambiguous to be translated well to a non-english language, use this form of i18n to separate lookup string and english text. + @short {@link TDELocale} If the string is too ambiguous to be translated well to a non-english language, use this form of i18n to separate lookup string and english text. @see #translate */ public static native String i18n(String comment, String text); /** - {@link KLocale} + {@link TDELocale} If you want to handle plural forms, use this form of i18n. @param singular the singular form of the word, for example "file". @param plural the plural form of the word. Must contain a "%n" that will @@ -95,16 +95,16 @@ public class KDE { @return the correct singular or plural for the selected language, depending on n - @short {@link KLocale} If you want to handle plural forms, use this form of i18n. + @short {@link TDELocale} If you want to handle plural forms, use this form of i18n. @see #translate */ public static native String i18n(String singular, String plural, long n); /** - {@link KLocale} + {@link TDELocale} Qt3's uic generates i18n( "msg", "comment" ) calls which conflict with our i18n method. We use uic -tr tr2i18n to redirect to the right i18n() function - @short {@link KLocale} Qt3's uic generates i18n( "msg", "comment" ) calls which conflict with our i18n method. + @short {@link TDELocale} Qt3's uic generates i18n( "msg", "comment" ) calls which conflict with our i18n method. */ public static native String tr2i18n(String message, String arg2); public static native String tr2i18n(String message); @@ -175,7 +175,7 @@ public class KDE { // TQDataStream& op_read(TQDataStream& arg1,long long int& arg2); >>>> NOT CONVERTED // TQDataStream& op_read(TQDataStream& arg1,unsigned long long int& arg2); >>>> NOT CONVERTED /** - Convert an ASN1 UTCTIME value to a string. Uses KLocale settings. + Convert an ASN1 UTCTIME value to a string. Uses TDELocale settings. @param tm the OpenSSL ASN1_UTCTIME pointer @return the date formatted in a String @@ -184,7 +184,7 @@ public class KDE { */ // TQString ASN1_UTCTIME_QString(ASN1_UTCTIME* arg1); >>>> NOT CONVERTED /** - Convert an ASN1 UTCTIME value to a Calendar. Uses KLocale settings. + Convert an ASN1 UTCTIME value to a Calendar. Uses TDELocale settings. @param tm the OpenSSL ASN1_UTCTIME pointer @param isGmt set to 1 if the date is set to GMT @return the date formatted in a TQDateTime |