Browse Source

OC.getLocale() now returns Locale and no longer Language

Added OC.getLanguage() to get Language
<html lang=''> still gets language, though according to IETF BCP47 locale should be good.

Signed-off-by: Thomas Citharel <tcit@tcit.fr>
tags/v14.0.0beta1
Thomas Citharel 7 years ago
parent
commit
bf6bfad76b
No account linked to committer's email address
4 changed files with 13 additions and 3 deletions
  1. 9
    0
      core/js/js.js
  2. 1
    1
      core/templates/layout.user.php
  3. 1
    1
      lib/private/L10N/Factory.php
  4. 2
    1
      lib/private/TemplateLayout.php

+ 9
- 0
core/js/js.js View File

@@ -791,6 +791,15 @@ var OCP = {},
* @return {String} locale string
*/
getLocale: function() {
return $('html').prop('data-locale');
},

/**
* Returns the user's language
*
* @returns {String} language string
*/
getLanguage: function () {
return $('html').prop('lang');
},


+ 1
- 1
core/templates/layout.user.php View File

@@ -1,5 +1,5 @@
<!DOCTYPE html>
<html class="ng-csp" data-placeholder-focus="false" lang="<?php p($_['language']); ?>" >
<html class="ng-csp" data-placeholder-focus="false" lang="<?php p($_['language']); ?>" data-locale="<?php p($_['locale']); ?>" >
<head data-user="<?php p($_['user_uid']); ?>" data-user-displayname="<?php p($_['user_displayname']); ?>" data-requesttoken="<?php p($_['requesttoken']); ?>">
<meta charset="utf-8">
<title>

+ 1
- 1
lib/private/L10N/Factory.php View File

@@ -195,7 +195,7 @@ class Factory implements IFactory {
return 'en';
}

public function findLocale($app = null, $lang = null)
public function findLocale($lang = null)
{
if ($this->config->getSystemValue('installed', false)) {
$userId = null !== $this->userSession->getUser() ? $this->userSession->getUser()->getUID() : null;

+ 2
- 1
lib/private/TemplateLayout.php View File

@@ -131,10 +131,11 @@ class TemplateLayout extends \OC_Template {
parent::__construct('core', 'layout.base');

}
// Send the language to our layouts
// Send the language and the locale to our layouts
$lang = \OC::$server->getL10NFactory()->findLanguage();
$lang = str_replace('_', '-', $lang);
$this->assign('language', $lang);
$this->assign('locale', \OC::$server->getL10NFactory()->findLocale());

if(\OC::$server->getSystemConfig()->getValue('installed', false)) {
if (empty(self::$versionHash)) {

Loading…
Cancel
Save