X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=src%2Fnet%2Fpterodactylus%2Fjsite%2Fi18n%2FI18n.java;h=4647ddc50d57bf20902067e715bd6ed79d7aa497;hb=c63257e8cc0ba1a5aca9364b22171abe7279d479;hp=6d6235653c5983b86485eaed08befa0667a8c137;hpb=06602fb38a0a5f943c967da582b7a304f5ea5d51;p=jSite2.git diff --git a/src/net/pterodactylus/jsite/i18n/I18n.java b/src/net/pterodactylus/jsite/i18n/I18n.java index 6d62356..4647ddc 100644 --- a/src/net/pterodactylus/jsite/i18n/I18n.java +++ b/src/net/pterodactylus/jsite/i18n/I18n.java @@ -41,9 +41,8 @@ import net.pterodactylus.util.logging.Logging; /** * Class that handles i18n. - * + * * @author David ‘Bombe’ Roden <bombe@freenetproject.org> - * @version $Id$ */ public class I18n { @@ -79,7 +78,7 @@ public class I18n { /** * Returns the translated value for a key. The translated values may contain * placeholders that are replaced with the given parameters. - * + * * @see MessageFormat * @param key * The key to get @@ -107,7 +106,7 @@ public class I18n { * Returns the keycode from the value of the given key. You can specify the * constants in {@link KeyEvent} in the properties file, e.g. VK_S for the * keycode ‘s’ when used for mnemonics. - * + * * @param key * The key under which the keycode is stored * @return The keycode @@ -134,7 +133,7 @@ public class I18n { /** * Returns a key stroke for use with swing accelerators. - * + * * @param key * The key of the key stroke * @return The key stroke, or null if no key stroke could be @@ -181,7 +180,7 @@ public class I18n { /** * Sets the current locale. - * + * * @param newLocale * The new locale to use */ @@ -191,7 +190,7 @@ public class I18n { /** * Sets the current locale. - * + * * @param newLocale * The new locale to use * @param notify @@ -227,7 +226,7 @@ public class I18n { /** * Returns the current locale. - * + * * @return The current locale */ public static Locale getLocale() { @@ -236,7 +235,7 @@ public class I18n { /** * Finds all available locales. - * + * * @return All available locales */ public static List findAvailableLanguages() { @@ -248,7 +247,7 @@ public class I18n { /** * Registers the given I18nable to be updated when the language is changed. - * + * * @param i18nable * The i18nable to register */ @@ -259,7 +258,7 @@ public class I18n { /** * Deregisters the given I18nable to be updated when the language is * changed. - * + * * @param i18nable * The i18nable to register */ @@ -275,7 +274,7 @@ public class I18n { * Notifies all registered {@link I18nable}s that the language was changed. */ private static void notifyI18nables() { - for (I18nable i18nable: i18nables) { + for (I18nable i18nable : i18nables) { i18nable.updateI18n(); } }