summaryrefslogtreecommitdiff
path: root/support/arara/source/src/main/kotlin/org/islandoftex/arara/localization/LanguageController.kt
diff options
context:
space:
mode:
Diffstat (limited to 'support/arara/source/src/main/kotlin/org/islandoftex/arara/localization/LanguageController.kt')
-rw-r--r--support/arara/source/src/main/kotlin/org/islandoftex/arara/localization/LanguageController.kt59
1 files changed, 0 insertions, 59 deletions
diff --git a/support/arara/source/src/main/kotlin/org/islandoftex/arara/localization/LanguageController.kt b/support/arara/source/src/main/kotlin/org/islandoftex/arara/localization/LanguageController.kt
deleted file mode 100644
index e000ab4d63..0000000000
--- a/support/arara/source/src/main/kotlin/org/islandoftex/arara/localization/LanguageController.kt
+++ /dev/null
@@ -1,59 +0,0 @@
-// SPDX-License-Identifier: BSD-3-Clause
-package org.islandoftex.arara.localization
-
-import ch.qos.cal10n.IMessageConveyor
-import ch.qos.cal10n.MessageConveyor
-import java.util.Locale
-import org.islandoftex.arara.configuration.AraraSpec
-
-/**
- * Implements the language controller. This controller provides a singleton
- * object that holds the application messages, easily available to all model
- * and utilitary classes.
- *
- * @author Island of TeX
- * @version 5.0
- * @since 4.0
- */
-object LanguageController {
- // the message conveyor helps us to get localized messages
- // according to the provided locale
- // The fallback language is set to English for all
- // messages in arara.
- private var conveyor: IMessageConveyor = MessageConveyor(Locale(
- AraraSpec.Application.defaultLanguageCode.default))
-
- /**
- * Sets the current locale. This method actually resets the language
- * conveyor in order to use the new locale. It's quite simple.
- * @param locale The new locale for localized messages through the language
- * conveyor.
- */
- fun setLocale(locale: Locale) {
- conveyor = MessageConveyor(locale)
- }
-
- /**
- * Gets the localized message indexed by the provided enumeration key,
- * applying an array of objects as parameters. This method is a wrapper to
- * the conveyor's method of the same name.
- * @param E Enumeration type that represents the conveyor messages.
- * @param key Key set in the provided enumeration type.
- * @param parameters Array of objects to be used as parameters.
- * @return A string containing a localized message indexed by the provided
- * enumeration key and applied the array of objects as parameters.
- */
- @Suppress("SpreadOperator")
- fun <E : Enum<*>> getMessage(key: E, vararg parameters: Any): String =
- conveyor.getMessage(key, *parameters)
-
- /**
- * Gets the localized message indexed by the provided enumeration key. This
- * method is a wrapper to the conveyor's method of the same name.
- * @param E Enumeration type that represents the conveyor messages.
- * @param key Key set in the provided enumeration type.
- * @return A string containing a localized message indexed by the provided
- * enumeration key.
- */
- fun <E : Enum<*>> getMessage(key: E): String = conveyor.getMessage(key)
-}