Index: third_party/google_input_tools/src/chrome/os/inputview/config/es-cat_data.js |
diff --git a/third_party/google_input_tools/src/chrome/os/inputview/config/es-cat_data.js b/third_party/google_input_tools/src/chrome/os/inputview/config/es-cat_data.js |
new file mode 100644 |
index 0000000000000000000000000000000000000000..a28042b1401d0517f349edfb9eafb89b1f39e931 |
--- /dev/null |
+++ b/third_party/google_input_tools/src/chrome/os/inputview/config/es-cat_data.js |
@@ -0,0 +1,75 @@ |
+// Copyright 2014 The ChromeOS IME Authors. All Rights Reserved. |
+// limitations under the License. |
+// See the License for the specific language governing permissions and |
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
+// distributed under the License is distributed on an "AS-IS" BASIS, |
+// Unless required by applicable law or agreed to in writing, software |
+// |
+// http://www.apache.org/licenses/LICENSE-2.0 |
+// |
+// You may obtain a copy of the License at |
+// you may not use this file except in compliance with the License. |
+// Licensed under the Apache License, Version 2.0 (the "License"); |
+// |
+goog.require('i18n.input.chrome.inputview.content.util'); |
+ |
+(function() { |
+ var viewIdPrefix_ = '102kbd-k-'; |
+ |
+ var keyCharacters = [ |
+ ['\u00ba', '\u00aa', '\u005c', '\u005c'], // TLDE |
+ ['\u0031', '\u0021', '\u007c', '\u00a1'], // AE01 |
+ ['\u0032', '\u0022', '\u0040', '\u215b'], // AE02 |
+ ['\u0033', '\u00b7', '\u0023', '\u00a3'], // AE03 |
+ ['\u0034', '\u0024', '\u007e', '\u0024'], // AE04 |
+ ['\u0035', '\u0025', '\u00bd', '\u215c'], // AE05 |
+ ['\u0036', '\u0026', '\u00ac', '\u215d'], // AE06 |
+ ['\u0037', '\u002f', '\u007b', '\u215e'], // AE07 |
+ ['\u0038', '\u0028', '\u005b', '\u2122'], // AE08 |
+ ['\u0039', '\u0029', '\u005d', '\u00b1'], // AE09 |
+ ['\u0030', '\u003d', '\u007d', '\u00b0'], // AE10 |
+ ['\u0027', '\u003f', '\u005c', '\u00bf'], // AE11 |
+ ['\u00a1', '\u00bf', '\u0303', '\u007e'], // AE12 |
+ ['\u0071', '\u0051', '\u0040', '\u03a9'], // AD01 |
+ ['\u0077', '\u0057', '\u0142', '\u0141'], // AD02 |
+ ['\u0065', '\u0045', '\u20ac', '\u00a2'], // AD03 |
+ ['\u0072', '\u0052', '\u00b6', '\u00ae'], // AD04 |
+ ['\u0074', '\u0054', '\u0167', '\u0166'], // AD05 |
+ ['\u0079', '\u0059', '\u2190', '\u00a5'], // AD06 |
+ ['\u0075', '\u0055', '\u2193', '\u2191'], // AD07 |
+ ['\u0069', '\u0049', '\u2192', '\u0131'], // AD08 |
+ ['\u006f', '\u004f', '\u00f8', '\u00d8'], // AD09 |
+ ['\u0070', '\u0050', '\u00fe', '\u00de'], // AD10 |
+ ['\u0300', '\u0302', '\u005b', '\u030a'], // AD11 |
+ ['\u002b', '\u002a', '\u005d', '\u0304'], // AD12 |
+ ['\u0061', '\u0041', '\u00e6', '\u00c6'], // AC01 |
+ ['\u0073', '\u0053', '\u00df', '\u00a7'], // AC02 |
+ ['\u0064', '\u0044', '\u00f0', '\u00d0'], // AC03 |
+ ['\u0066', '\u0046', '\u0111', '\u00aa'], // AC04 |
+ ['\u0067', '\u0047', '\u014b', '\u014a'], // AC05 |
+ ['\u0068', '\u0048', '\u0127', '\u0126'], // AC06 |
+ ['\u006a', '\u004a', '\u0309', '\u031b'], // AC07 |
+ ['\u006b', '\u004b', '\u0138', '\u0026'], // AC08 |
+ ['\u006c', '\u004c', '\u0140', '\u013f'], // AC09 |
+ ['\u00f1', '\u00d1', '\u007e', '\u030b'], // AC10 |
+ ['\u0301', '\u0308', '\u007b', '\u007b'], // AC11 |
+ ['\u00e7', '\u00c7', '\u007d', '\u0306'], // BKSL |
+ ['\u003c', '\u003e', '\u007c', '\u00a6'], // LSGT |
+ ['\u007a', '\u005a', '\u00ab', '\u003c'], // AB01 |
+ ['\u0078', '\u0058', '\u00bb', '\u003e'], // AB02 |
+ ['\u0063', '\u0043', '\u00a2', '\u00a9'], // AB03 |
+ ['\u0076', '\u0056', '\u201c', '\u2018'], // AB04 |
+ ['\u0062', '\u0042', '\u201d', '\u2019'], // AB05 |
+ ['\u006e', '\u004e'], // AB06 |
+ ['\u006d', '\u004d', '\u00b5', '\u00ba'], // AB07 |
+ ['\u002c', '\u003b', '\u0000', '\u00d7'], // AB08 |
+ ['\u002e', '\u003a', '\u00b7', '\u00f7'], // AB09 |
+ ['\u002d', '\u005f', '\u0323', '\u0307'], // AB10 |
+ ['\u0020', '\u0020'] // SPCE |
+ ]; |
+ |
+ var data = i18n.input.chrome.inputview.content.util.createData( |
+ keyCharacters, viewIdPrefix_, true, true); |
+ data['id'] = 'es-cat'; |
+ google.ime.chrome.inputview.onConfigLoaded(data); |
+}) (); |