Skip to content
Snippets Groups Projects
Commit 512373fa authored by Bernhard Posselt's avatar Bernhard Posselt
Browse files

provide a way to detect the language that is being used (e.g. for clientside...

provide a way to detect the language that is being used (e.g. for clientside javascript language selection
parent 166f2af5
No related branches found
No related tags found
No related merge requests found
......@@ -401,6 +401,23 @@ class OC_L10N implements \OCP\IL10N {
self::$language = $lang;
}
/**
* @brief find the best language
* @param array|string $app details below
* @returns string language
*
* If $app is an array, ownCloud assumes that these are the available
* languages. Otherwise ownCloud tries to find the files in the l10n
* folder.
*
* If nothing works it returns 'en'
*/
public function getLanguageCode($app=null) {
return self::findLanguage($app);
}
/**
* @brief find the best language
* @param array|string $app details below
......
......@@ -72,4 +72,18 @@ interface IL10N {
* - params: timestamp (int/string)
*/
public function l($type, $data);
/**
* @brief find the best language
* @param array|string $app details below
* @returns string language
*
* If $app is an array, ownCloud assumes that these are the available
* languages. Otherwise ownCloud tries to find the files in the l10n
* folder.
*
* If nothing works it returns 'en'
*/
public function getLanguageCode($app=null);
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment