You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@royale.apache.org by ah...@apache.org on 2018/10/02 04:30:14 UTC

[royale-asjs] 01/02: add LocaleUtils to get language

This is an automated email from the ASF dual-hosted git repository.

aharui pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/royale-asjs.git

commit 79b5bfbaca50868383aefab9432f22a698440a83
Author: Alex Harui <ah...@apache.org>
AuthorDate: Mon Oct 1 21:28:00 2018 -0700

    add LocaleUtils to get language
---
 .../projects/Core/src/main/royale/CoreClasses.as   |  1 +
 .../royale/org/apache/royale/utils/LocaleUtils.as  | 70 ++++++++++++++++++++++
 2 files changed, 71 insertions(+)

diff --git a/frameworks/projects/Core/src/main/royale/CoreClasses.as b/frameworks/projects/Core/src/main/royale/CoreClasses.as
index 514c6a6..66bcff7 100644
--- a/frameworks/projects/Core/src/main/royale/CoreClasses.as
+++ b/frameworks/projects/Core/src/main/royale/CoreClasses.as
@@ -210,6 +210,7 @@ import org.apache.royale.events.ItemRemovedEvent; ItemRemovedEvent;
 	import org.apache.royale.utils.JXON; JXON;
 	import org.apache.royale.utils.MD5; MD5;
 	import org.apache.royale.utils.OSUtils; OSUtils;
+    import org.apache.royale.utils.LocaleUtils; LocaleUtils;
 	import org.apache.royale.utils.PointUtils; PointUtils;
     import org.apache.royale.utils.StringPadder; StringPadder;
 	import org.apache.royale.utils.StringTrimmer; StringTrimmer;
diff --git a/frameworks/projects/Core/src/main/royale/org/apache/royale/utils/LocaleUtils.as b/frameworks/projects/Core/src/main/royale/org/apache/royale/utils/LocaleUtils.as
new file mode 100644
index 0000000..7538ac7
--- /dev/null
+++ b/frameworks/projects/Core/src/main/royale/org/apache/royale/utils/LocaleUtils.as
@@ -0,0 +1,70 @@
+////////////////////////////////////////////////////////////////////////////////
+//
+//  Licensed to the Apache Software Foundation (ASF) under one or more
+//  contributor license agreements.  See the NOTICE file distributed with
+//  this work for additional information regarding copyright ownership.
+//  The ASF licenses this file to You under the Apache License, Version 2.0
+//  (the "License"); you may not use this file except in compliance with
+//  the License.  You may obtain a copy of the License at
+//
+//      http://www.apache.org/licenses/LICENSE-2.0
+//
+//  Unless required by applicable law or agreed to in writing, software
+//  distributed under the License is distributed on an "AS IS" BASIS,
+//  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+//  See the License for the specific language governing permissions and
+//  limitations under the License.
+//
+////////////////////////////////////////////////////////////////////////////////
+package org.apache.royale.utils
+{
+	/**
+	 *  The LocaleUtils class is an all-static class with methods for
+	 *  getting informatiojn about the locale.
+	 *  You do not create instances of LocaleUtils;
+	 *  instead you call methods such as 
+	 *  the <code>LocaleUtils.getLocale()</code> method.  
+	 *  
+	 *  @langversion 3.0
+	 *  @playerversion Flash 9
+	 *  @playerversion AIR 1.1
+	 *  @productversion Royale 1.0.0
+	 *  @productversion Royale 0.0
+	 */
+    public class LocaleUtils
+    {
+        COMPILE::SWF
+        {
+            import flash.system.Capabilities;
+        }
+        public function LocaleUtils ()
+        {
+        }
+
+        /**
+         * Gets the locale of the operating system.
+         */
+        public static function getLocale():String
+        {
+            COMPILE::SWF
+            {
+                if(!_localeName)
+                {
+                    _localeName = Capabilities.language;
+                }
+                return _localeName;
+            }
+
+            COMPILE::JS
+            {
+                if(!_localeName)
+                {
+                    _localeName = navigator.language;
+                }
+                return _localeName;
+            }
+        }
+        
+        private static var _localeName:String;
+    }
+}