diff options
Diffstat (limited to 'core')
126 files changed, 194 insertions, 302 deletions
diff --git a/core/java/android/ddm/DdmHandleHello.java b/core/java/android/ddm/DdmHandleHello.java index c5d591f..0603ca5 100644 --- a/core/java/android/ddm/DdmHandleHello.java +++ b/core/java/android/ddm/DdmHandleHello.java @@ -152,8 +152,8 @@ public class DdmHandleHello extends ChunkHandler { "hprof-heap-dump", "method-trace-profiling" }; - if (Config.LOGD) - Log.d("ddm-heap", "Got feature list request"); + if (Config.LOGV) + Log.v("ddm-heap", "Got feature list request"); int size = 4 + 4 * features.length; for (int i = features.length-1; i >= 0; i--) diff --git a/core/java/android/net/Uri.java b/core/java/android/net/Uri.java index 9a1b65d..f2ea539 100644 --- a/core/java/android/net/Uri.java +++ b/core/java/android/net/Uri.java @@ -1567,51 +1567,40 @@ public abstract class Uri implements Parcelable, Comparable<Uri> { if (isOpaque()) { throw new UnsupportedOperationException(NOT_HIERARCHICAL); } + if (key == null) { + throw new NullPointerException("key"); + } - String query = getEncodedQuery(); - + final String query = getEncodedQuery(); if (query == null) { return null; } - String encodedKey; - try { - encodedKey = URLEncoder.encode(key, DEFAULT_ENCODING); - } catch (UnsupportedEncodingException e) { - throw new AssertionError(e); - } - - String prefix = encodedKey + "="; + final String encodedKey = encode(key, null); + final int encodedKeyLength = encodedKey.length(); - if (query.length() < prefix.length()) { - return null; - } + int encodedKeySearchIndex = 0; + final int encodedKeySearchEnd = query.length() - (encodedKeyLength + 1); - int start; - if (query.startsWith(prefix)) { - // It's the first parameter. - start = prefix.length(); - } else { - // It must be later in the query string. - prefix = "&" + prefix; - start = query.indexOf(prefix); - - if (start == -1) { - // Not found. - return null; + while (encodedKeySearchIndex <= encodedKeySearchEnd) { + int keyIndex = query.indexOf(encodedKey, encodedKeySearchIndex); + if (keyIndex == -1) { + break; + } + final int equalsIndex = keyIndex + encodedKeyLength; + if (query.charAt(equalsIndex) != '=') { + encodedKeySearchIndex = equalsIndex + 1; + continue; + } + if (keyIndex == 0 || query.charAt(keyIndex - 1) == '&') { + int end = query.indexOf('&', equalsIndex); + if (end == -1) { + end = query.length(); + } + return decode(query.substring(equalsIndex + 1, end)); } - - start += prefix.length(); - } - - // Find end of value. - int end = query.indexOf('&', start); - if (end == -1) { - end = query.length(); } - - String value = query.substring(start, end); - return decode(value); + return null; } /** Identifies a null parcelled Uri. */ diff --git a/core/java/android/os/Debug.java b/core/java/android/os/Debug.java index b4f64b6..b33e8be 100644 --- a/core/java/android/os/Debug.java +++ b/core/java/android/os/Debug.java @@ -753,6 +753,16 @@ href="{@docRoot}guide/developing/tools/traceview.html">Traceview: A Graphical Lo } /** + * Dumps the contents of VM reference tables (e.g. JNI locals and + * globals) to the log file. + * + * @hide + */ + public static final void dumpReferenceTables() { + VMDebug.dumpReferenceTables(); + } + + /** * API for gathering and querying instruction counts. * * Example usage: diff --git a/core/java/com/android/internal/logging/AndroidHandler.java b/core/java/com/android/internal/logging/AndroidHandler.java index c4a1479..12f6a4f 100644 --- a/core/java/com/android/internal/logging/AndroidHandler.java +++ b/core/java/com/android/internal/logging/AndroidHandler.java @@ -17,12 +17,16 @@ package com.android.internal.logging; import android.util.Log; +import dalvik.system.DalvikLogging; +import dalvik.system.DalvikLogHandler; -import java.util.logging.*; -import java.util.Date; -import java.text.MessageFormat; import java.io.PrintWriter; import java.io.StringWriter; +import java.util.logging.Formatter; +import java.util.logging.Handler; +import java.util.logging.Level; +import java.util.logging.LogRecord; +import java.util.logging.Logger; /** * Implements a {@link java.util.logging.Logger} handler that writes to the Android log. The @@ -77,7 +81,7 @@ import java.io.StringWriter; * </tr> * </table> */ -public class AndroidHandler extends Handler { +public class AndroidHandler extends Handler implements DalvikLogHandler { /** * Holds the formatter for all Android log handlers. */ @@ -118,33 +122,13 @@ public class AndroidHandler extends Handler { @Override public void publish(LogRecord record) { - try { - int level = getAndroidLevel(record.getLevel()); - String tag = record.getLoggerName(); - - if (tag == null) { - // Anonymous logger. - tag = "null"; - } else { - // Tags must be <= 23 characters. - int length = tag.length(); - if (length > 23) { - // Most loggers use the full class name. Try dropping the - // package. - int lastPeriod = tag.lastIndexOf("."); - if (length - lastPeriod - 1 <= 23) { - tag = tag.substring(lastPeriod + 1); - } else { - // Use last 23 chars. - tag = tag.substring(tag.length() - 23); - } - } - } - - if (!Log.isLoggable(tag, level)) { - return; - } + int level = getAndroidLevel(record.getLevel()); + String tag = DalvikLogging.loggerNameToTag(record.getLoggerName()); + if (!Log.isLoggable(tag, level)) { + return; + } + try { String message = getFormatter().format(record); Log.println(level, tag, message); } catch (RuntimeException e) { @@ -152,12 +136,26 @@ public class AndroidHandler extends Handler { } } + public void publish(Logger source, String tag, Level level, String message) { + // TODO: avoid ducking into native 2x; we aren't saving any formatter calls + int priority = getAndroidLevel(level); + if (!Log.isLoggable(tag, priority)) { + return; + } + + try { + Log.println(priority, tag, message); + } catch (RuntimeException e) { + Log.e("AndroidHandler", "Error logging message.", e); + } + } + /** * Converts a {@link java.util.logging.Logger} logging level into an Android one. - * + * * @param level The {@link java.util.logging.Logger} logging level. - * - * @return The resulting Android logging level. + * + * @return The resulting Android logging level. */ static int getAndroidLevel(Level level) { int value = level.intValue(); @@ -171,5 +169,4 @@ public class AndroidHandler extends Handler { return Log.DEBUG; } } - } diff --git a/core/jni/AndroidRuntime.cpp b/core/jni/AndroidRuntime.cpp index f61e247..82fa93e 100644 --- a/core/jni/AndroidRuntime.cpp +++ b/core/jni/AndroidRuntime.cpp @@ -750,6 +750,18 @@ int AndroidRuntime::startVm(JavaVM** pJavaVM, JNIEnv** pEnv) opt.optionString = "-Xjitprofile"; mOptions.add(opt); } + + /* + * Disable optimizations by setting the corresponding bit to 1. + */ + char jitOptBuf[sizeof("-Xjitdisableopt:") + PROPERTY_VALUE_MAX]; + property_get("dalvik.vm.jit.disableopt", propBuf, ""); + if (strlen(propBuf) > 0) { + strcpy(jitOptBuf, "-Xjitdisableopt:"); + strcat(jitOptBuf, propBuf); + opt.optionString = jitOptBuf; + mOptions.add(opt); + } #endif if (executionMode == kEMIntPortable) { diff --git a/core/jni/android_net_LocalSocketImpl.cpp b/core/jni/android_net_LocalSocketImpl.cpp index f14b9fa..e58794b 100644 --- a/core/jni/android_net_LocalSocketImpl.cpp +++ b/core/jni/android_net_LocalSocketImpl.cpp @@ -35,8 +35,6 @@ #include <cutils/sockets.h> #include <netinet/tcp.h> -#include <cutils/properties.h> -#include <cutils/adb_networking.h> namespace android { diff --git a/core/res/res/values-mcc204-cs/strings.xml b/core/res/res/values-mcc204-cs/strings.xml index 94786f1..7d96230 100644 --- a/core/res/res/values-mcc204-cs/strings.xml +++ b/core/res/res/values-mcc204-cs/strings.xml @@ -15,5 +15,5 @@ --> <resources xmlns:android="http://schemas.android.com/apk/res/android" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> - <string name="locale_replacement" msgid="2972154133076909542">"nl_nl"</string> + <string name="locale_replacement">"nl_nl"</string> </resources> diff --git a/core/res/res/values-mcc204-da/strings.xml b/core/res/res/values-mcc204-da/strings.xml index 94786f1..7d96230 100644 --- a/core/res/res/values-mcc204-da/strings.xml +++ b/core/res/res/values-mcc204-da/strings.xml @@ -15,5 +15,5 @@ --> <resources xmlns:android="http://schemas.android.com/apk/res/android" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> - <string name="locale_replacement" msgid="2972154133076909542">"nl_nl"</string> + <string name="locale_replacement">"nl_nl"</string> </resources> diff --git a/core/res/res/values-mcc204-de/strings.xml b/core/res/res/values-mcc204-de/strings.xml index 94786f1..7d96230 100644 --- a/core/res/res/values-mcc204-de/strings.xml +++ b/core/res/res/values-mcc204-de/strings.xml @@ -15,5 +15,5 @@ --> <resources xmlns:android="http://schemas.android.com/apk/res/android" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> - <string name="locale_replacement" msgid="2972154133076909542">"nl_nl"</string> + <string name="locale_replacement">"nl_nl"</string> </resources> diff --git a/core/res/res/values-mcc204-el/strings.xml b/core/res/res/values-mcc204-el/strings.xml index 94786f1..97bfe65 100644 --- a/core/res/res/values-mcc204-el/strings.xml +++ b/core/res/res/values-mcc204-el/strings.xml @@ -15,5 +15,5 @@ --> <resources xmlns:android="http://schemas.android.com/apk/res/android" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> - <string name="locale_replacement" msgid="2972154133076909542">"nl_nl"</string> + <string name="locale_replacement">"el_GR"</string> </resources> diff --git a/core/res/res/values-mcc204-es-rUS/strings.xml b/core/res/res/values-mcc204-es-rUS/strings.xml index 94786f1..7d96230 100644 --- a/core/res/res/values-mcc204-es-rUS/strings.xml +++ b/core/res/res/values-mcc204-es-rUS/strings.xml @@ -15,5 +15,5 @@ --> <resources xmlns:android="http://schemas.android.com/apk/res/android" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> - <string name="locale_replacement" msgid="2972154133076909542">"nl_nl"</string> + <string name="locale_replacement">"nl_nl"</string> </resources> diff --git a/core/res/res/values-mcc204-es/strings.xml b/core/res/res/values-mcc204-es/strings.xml index 94786f1..7d96230 100644 --- a/core/res/res/values-mcc204-es/strings.xml +++ b/core/res/res/values-mcc204-es/strings.xml @@ -15,5 +15,5 @@ --> <resources xmlns:android="http://schemas.android.com/apk/res/android" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> - <string name="locale_replacement" msgid="2972154133076909542">"nl_nl"</string> + <string name="locale_replacement">"nl_nl"</string> </resources> diff --git a/core/res/res/values-mcc204-fr/strings.xml b/core/res/res/values-mcc204-fr/strings.xml index 94786f1..7d96230 100644 --- a/core/res/res/values-mcc204-fr/strings.xml +++ b/core/res/res/values-mcc204-fr/strings.xml @@ -15,5 +15,5 @@ --> <resources xmlns:android="http://schemas.android.com/apk/res/android" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> - <string name="locale_replacement" msgid="2972154133076909542">"nl_nl"</string> + <string name="locale_replacement">"nl_nl"</string> </resources> diff --git a/core/res/res/values-mcc204-it/strings.xml b/core/res/res/values-mcc204-it/strings.xml index 94786f1..7d96230 100644 --- a/core/res/res/values-mcc204-it/strings.xml +++ b/core/res/res/values-mcc204-it/strings.xml @@ -15,5 +15,5 @@ --> <resources xmlns:android="http://schemas.android.com/apk/res/android" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> - <string name="locale_replacement" msgid="2972154133076909542">"nl_nl"</string> + <string name="locale_replacement">"nl_nl"</string> </resources> diff --git a/core/res/res/values-mcc204-ja/strings.xml b/core/res/res/values-mcc204-ja/strings.xml index 94786f1..7d96230 100644 --- a/core/res/res/values-mcc204-ja/strings.xml +++ b/core/res/res/values-mcc204-ja/strings.xml @@ -15,5 +15,5 @@ --> <resources xmlns:android="http://schemas.android.com/apk/res/android" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> - <string name="locale_replacement" msgid="2972154133076909542">"nl_nl"</string> + <string name="locale_replacement">"nl_nl"</string> </resources> diff --git a/core/res/res/values-mcc204-ko/strings.xml b/core/res/res/values-mcc204-ko/strings.xml index 94786f1..7d96230 100644 --- a/core/res/res/values-mcc204-ko/strings.xml +++ b/core/res/res/values-mcc204-ko/strings.xml @@ -15,5 +15,5 @@ --> <resources xmlns:android="http://schemas.android.com/apk/res/android" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> - <string name="locale_replacement" msgid="2972154133076909542">"nl_nl"</string> + <string name="locale_replacement">"nl_nl"</string> </resources> diff --git a/core/res/res/values-mcc204-nb/strings.xml b/core/res/res/values-mcc204-nb/strings.xml deleted file mode 100644 index 94786f1..0000000 --- a/core/res/res/values-mcc204-nb/strings.xml +++ /dev/null @@ -1,19 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!-- Copyright (C) 2009 The Android Open Source Project - - Licensed 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. ---> -<resources xmlns:android="http://schemas.android.com/apk/res/android" - xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> - <string name="locale_replacement" msgid="2972154133076909542">"nl_nl"</string> -</resources> diff --git a/core/res/res/values-mcc204-nl/strings.xml b/core/res/res/values-mcc204-nl/strings.xml index 94786f1..7d96230 100644 --- a/core/res/res/values-mcc204-nl/strings.xml +++ b/core/res/res/values-mcc204-nl/strings.xml @@ -15,5 +15,5 @@ --> <resources xmlns:android="http://schemas.android.com/apk/res/android" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> - <string name="locale_replacement" msgid="2972154133076909542">"nl_nl"</string> + <string name="locale_replacement">"nl_nl"</string> </resources> diff --git a/core/res/res/values-mcc204-pl/strings.xml b/core/res/res/values-mcc204-pl/strings.xml index 94786f1..7d96230 100644 --- a/core/res/res/values-mcc204-pl/strings.xml +++ b/core/res/res/values-mcc204-pl/strings.xml @@ -15,5 +15,5 @@ --> <resources xmlns:android="http://schemas.android.com/apk/res/android" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> - <string name="locale_replacement" msgid="2972154133076909542">"nl_nl"</string> + <string name="locale_replacement">"nl_nl"</string> </resources> diff --git a/core/res/res/values-mcc204-pt-rPT/strings.xml b/core/res/res/values-mcc204-pt-rPT/strings.xml index 94786f1..7d96230 100644 --- a/core/res/res/values-mcc204-pt-rPT/strings.xml +++ b/core/res/res/values-mcc204-pt-rPT/strings.xml @@ -15,5 +15,5 @@ --> <resources xmlns:android="http://schemas.android.com/apk/res/android" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> - <string name="locale_replacement" msgid="2972154133076909542">"nl_nl"</string> + <string name="locale_replacement">"nl_nl"</string> </resources> diff --git a/core/res/res/values-mcc204-pt/strings.xml b/core/res/res/values-mcc204-pt/strings.xml index 94786f1..7d96230 100644 --- a/core/res/res/values-mcc204-pt/strings.xml +++ b/core/res/res/values-mcc204-pt/strings.xml @@ -15,5 +15,5 @@ --> <resources xmlns:android="http://schemas.android.com/apk/res/android" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> - <string name="locale_replacement" msgid="2972154133076909542">"nl_nl"</string> + <string name="locale_replacement">"nl_nl"</string> </resources> diff --git a/core/res/res/values-mcc204-ru/strings.xml b/core/res/res/values-mcc204-ru/strings.xml index 94786f1..7d96230 100644 --- a/core/res/res/values-mcc204-ru/strings.xml +++ b/core/res/res/values-mcc204-ru/strings.xml @@ -15,5 +15,5 @@ --> <resources xmlns:android="http://schemas.android.com/apk/res/android" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> - <string name="locale_replacement" msgid="2972154133076909542">"nl_nl"</string> + <string name="locale_replacement">"nl_nl"</string> </resources> diff --git a/core/res/res/values-mcc204-sv/strings.xml b/core/res/res/values-mcc204-sv/strings.xml index 94786f1..7d96230 100644 --- a/core/res/res/values-mcc204-sv/strings.xml +++ b/core/res/res/values-mcc204-sv/strings.xml @@ -15,5 +15,5 @@ --> <resources xmlns:android="http://schemas.android.com/apk/res/android" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> - <string name="locale_replacement" msgid="2972154133076909542">"nl_nl"</string> + <string name="locale_replacement">"nl_nl"</string> </resources> diff --git a/core/res/res/values-mcc204-tr/strings.xml b/core/res/res/values-mcc204-tr/strings.xml index 94786f1..7d96230 100644 --- a/core/res/res/values-mcc204-tr/strings.xml +++ b/core/res/res/values-mcc204-tr/strings.xml @@ -15,5 +15,5 @@ --> <resources xmlns:android="http://schemas.android.com/apk/res/android" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> - <string name="locale_replacement" msgid="2972154133076909542">"nl_nl"</string> + <string name="locale_replacement">"nl_nl"</string> </resources> diff --git a/core/res/res/values-mcc204-zh-rCN/strings.xml b/core/res/res/values-mcc204-zh-rCN/strings.xml index 94786f1..7d96230 100644 --- a/core/res/res/values-mcc204-zh-rCN/strings.xml +++ b/core/res/res/values-mcc204-zh-rCN/strings.xml @@ -15,5 +15,5 @@ --> <resources xmlns:android="http://schemas.android.com/apk/res/android" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> - <string name="locale_replacement" msgid="2972154133076909542">"nl_nl"</string> + <string name="locale_replacement">"nl_nl"</string> </resources> diff --git a/core/res/res/values-mcc204-zh-rTW/strings.xml b/core/res/res/values-mcc204-zh-rTW/strings.xml index 94786f1..7d96230 100644 --- a/core/res/res/values-mcc204-zh-rTW/strings.xml +++ b/core/res/res/values-mcc204-zh-rTW/strings.xml @@ -15,5 +15,5 @@ --> <resources xmlns:android="http://schemas.android.com/apk/res/android" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> - <string name="locale_replacement" msgid="2972154133076909542">"nl_nl"</string> + <string name="locale_replacement">"nl_nl"</string> </resources> diff --git a/core/res/res/values-mcc230-cs/strings.xml b/core/res/res/values-mcc230-cs/strings.xml index 63ade62..d3ecdbb 100644 --- a/core/res/res/values-mcc230-cs/strings.xml +++ b/core/res/res/values-mcc230-cs/strings.xml @@ -15,5 +15,5 @@ --> <resources xmlns:android="http://schemas.android.com/apk/res/android" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> - <string name="locale_replacement" msgid="9011721823833053909">"cs_cz"</string> + <string name="locale_replacement">"cs_cz"</string> </resources> diff --git a/core/res/res/values-mcc230-da/strings.xml b/core/res/res/values-mcc230-da/strings.xml index 63ade62..d3ecdbb 100644 --- a/core/res/res/values-mcc230-da/strings.xml +++ b/core/res/res/values-mcc230-da/strings.xml @@ -15,5 +15,5 @@ --> <resources xmlns:android="http://schemas.android.com/apk/res/android" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> - <string name="locale_replacement" msgid="9011721823833053909">"cs_cz"</string> + <string name="locale_replacement">"cs_cz"</string> </resources> diff --git a/core/res/res/values-mcc230-de/strings.xml b/core/res/res/values-mcc230-de/strings.xml index 63ade62..d3ecdbb 100644 --- a/core/res/res/values-mcc230-de/strings.xml +++ b/core/res/res/values-mcc230-de/strings.xml @@ -15,5 +15,5 @@ --> <resources xmlns:android="http://schemas.android.com/apk/res/android" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> - <string name="locale_replacement" msgid="9011721823833053909">"cs_cz"</string> + <string name="locale_replacement">"cs_cz"</string> </resources> diff --git a/core/res/res/values-mcc230-el/strings.xml b/core/res/res/values-mcc230-el/strings.xml index 63ade62..97bfe65 100644 --- a/core/res/res/values-mcc230-el/strings.xml +++ b/core/res/res/values-mcc230-el/strings.xml @@ -15,5 +15,5 @@ --> <resources xmlns:android="http://schemas.android.com/apk/res/android" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> - <string name="locale_replacement" msgid="9011721823833053909">"cs_cz"</string> + <string name="locale_replacement">"el_GR"</string> </resources> diff --git a/core/res/res/values-mcc230-es-rUS/strings.xml b/core/res/res/values-mcc230-es-rUS/strings.xml index 63ade62..d3ecdbb 100644 --- a/core/res/res/values-mcc230-es-rUS/strings.xml +++ b/core/res/res/values-mcc230-es-rUS/strings.xml @@ -15,5 +15,5 @@ --> <resources xmlns:android="http://schemas.android.com/apk/res/android" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> - <string name="locale_replacement" msgid="9011721823833053909">"cs_cz"</string> + <string name="locale_replacement">"cs_cz"</string> </resources> diff --git a/core/res/res/values-mcc230-es/strings.xml b/core/res/res/values-mcc230-es/strings.xml index 63ade62..d3ecdbb 100644 --- a/core/res/res/values-mcc230-es/strings.xml +++ b/core/res/res/values-mcc230-es/strings.xml @@ -15,5 +15,5 @@ --> <resources xmlns:android="http://schemas.android.com/apk/res/android" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> - <string name="locale_replacement" msgid="9011721823833053909">"cs_cz"</string> + <string name="locale_replacement">"cs_cz"</string> </resources> diff --git a/core/res/res/values-mcc230-fr/strings.xml b/core/res/res/values-mcc230-fr/strings.xml index 63ade62..d3ecdbb 100644 --- a/core/res/res/values-mcc230-fr/strings.xml +++ b/core/res/res/values-mcc230-fr/strings.xml @@ -15,5 +15,5 @@ --> <resources xmlns:android="http://schemas.android.com/apk/res/android" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> - <string name="locale_replacement" msgid="9011721823833053909">"cs_cz"</string> + <string name="locale_replacement">"cs_cz"</string> </resources> diff --git a/core/res/res/values-mcc230-it/strings.xml b/core/res/res/values-mcc230-it/strings.xml index 63ade62..d3ecdbb 100644 --- a/core/res/res/values-mcc230-it/strings.xml +++ b/core/res/res/values-mcc230-it/strings.xml @@ -15,5 +15,5 @@ --> <resources xmlns:android="http://schemas.android.com/apk/res/android" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> - <string name="locale_replacement" msgid="9011721823833053909">"cs_cz"</string> + <string name="locale_replacement">"cs_cz"</string> </resources> diff --git a/core/res/res/values-mcc230-ja/strings.xml b/core/res/res/values-mcc230-ja/strings.xml index 63ade62..d3ecdbb 100644 --- a/core/res/res/values-mcc230-ja/strings.xml +++ b/core/res/res/values-mcc230-ja/strings.xml @@ -15,5 +15,5 @@ --> <resources xmlns:android="http://schemas.android.com/apk/res/android" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> - <string name="locale_replacement" msgid="9011721823833053909">"cs_cz"</string> + <string name="locale_replacement">"cs_cz"</string> </resources> diff --git a/core/res/res/values-mcc230-ko/strings.xml b/core/res/res/values-mcc230-ko/strings.xml index 63ade62..d3ecdbb 100644 --- a/core/res/res/values-mcc230-ko/strings.xml +++ b/core/res/res/values-mcc230-ko/strings.xml @@ -15,5 +15,5 @@ --> <resources xmlns:android="http://schemas.android.com/apk/res/android" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> - <string name="locale_replacement" msgid="9011721823833053909">"cs_cz"</string> + <string name="locale_replacement">"cs_cz"</string> </resources> diff --git a/core/res/res/values-mcc230-nb/strings.xml b/core/res/res/values-mcc230-nb/strings.xml deleted file mode 100644 index 63ade62..0000000 --- a/core/res/res/values-mcc230-nb/strings.xml +++ /dev/null @@ -1,19 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!-- Copyright (C) 2009 The Android Open Source Project - - Licensed 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. ---> -<resources xmlns:android="http://schemas.android.com/apk/res/android" - xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> - <string name="locale_replacement" msgid="9011721823833053909">"cs_cz"</string> -</resources> diff --git a/core/res/res/values-mcc230-nl/strings.xml b/core/res/res/values-mcc230-nl/strings.xml index 63ade62..d3ecdbb 100644 --- a/core/res/res/values-mcc230-nl/strings.xml +++ b/core/res/res/values-mcc230-nl/strings.xml @@ -15,5 +15,5 @@ --> <resources xmlns:android="http://schemas.android.com/apk/res/android" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> - <string name="locale_replacement" msgid="9011721823833053909">"cs_cz"</string> + <string name="locale_replacement">"cs_cz"</string> </resources> diff --git a/core/res/res/values-mcc230-pl/strings.xml b/core/res/res/values-mcc230-pl/strings.xml index 63ade62..d3ecdbb 100644 --- a/core/res/res/values-mcc230-pl/strings.xml +++ b/core/res/res/values-mcc230-pl/strings.xml @@ -15,5 +15,5 @@ --> <resources xmlns:android="http://schemas.android.com/apk/res/android" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> - <string name="locale_replacement" msgid="9011721823833053909">"cs_cz"</string> + <string name="locale_replacement">"cs_cz"</string> </resources> diff --git a/core/res/res/values-mcc230-pt-rPT/strings.xml b/core/res/res/values-mcc230-pt-rPT/strings.xml index 63ade62..d3ecdbb 100644 --- a/core/res/res/values-mcc230-pt-rPT/strings.xml +++ b/core/res/res/values-mcc230-pt-rPT/strings.xml @@ -15,5 +15,5 @@ --> <resources xmlns:android="http://schemas.android.com/apk/res/android" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> - <string name="locale_replacement" msgid="9011721823833053909">"cs_cz"</string> + <string name="locale_replacement">"cs_cz"</string> </resources> diff --git a/core/res/res/values-mcc230-pt/strings.xml b/core/res/res/values-mcc230-pt/strings.xml index 63ade62..d3ecdbb 100644 --- a/core/res/res/values-mcc230-pt/strings.xml +++ b/core/res/res/values-mcc230-pt/strings.xml @@ -15,5 +15,5 @@ --> <resources xmlns:android="http://schemas.android.com/apk/res/android" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> - <string name="locale_replacement" msgid="9011721823833053909">"cs_cz"</string> + <string name="locale_replacement">"cs_cz"</string> </resources> diff --git a/core/res/res/values-mcc230-ru/strings.xml b/core/res/res/values-mcc230-ru/strings.xml index 63ade62..d3ecdbb 100644 --- a/core/res/res/values-mcc230-ru/strings.xml +++ b/core/res/res/values-mcc230-ru/strings.xml @@ -15,5 +15,5 @@ --> <resources xmlns:android="http://schemas.android.com/apk/res/android" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> - <string name="locale_replacement" msgid="9011721823833053909">"cs_cz"</string> + <string name="locale_replacement">"cs_cz"</string> </resources> diff --git a/core/res/res/values-mcc230-sv/strings.xml b/core/res/res/values-mcc230-sv/strings.xml index 63ade62..d3ecdbb 100644 --- a/core/res/res/values-mcc230-sv/strings.xml +++ b/core/res/res/values-mcc230-sv/strings.xml @@ -15,5 +15,5 @@ --> <resources xmlns:android="http://schemas.android.com/apk/res/android" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> - <string name="locale_replacement" msgid="9011721823833053909">"cs_cz"</string> + <string name="locale_replacement">"cs_cz"</string> </resources> diff --git a/core/res/res/values-mcc230-tr/strings.xml b/core/res/res/values-mcc230-tr/strings.xml index 63ade62..d3ecdbb 100644 --- a/core/res/res/values-mcc230-tr/strings.xml +++ b/core/res/res/values-mcc230-tr/strings.xml @@ -15,5 +15,5 @@ --> <resources xmlns:android="http://schemas.android.com/apk/res/android" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> - <string name="locale_replacement" msgid="9011721823833053909">"cs_cz"</string> + <string name="locale_replacement">"cs_cz"</string> </resources> diff --git a/core/res/res/values-mcc230-zh-rCN/strings.xml b/core/res/res/values-mcc230-zh-rCN/strings.xml index 63ade62..d3ecdbb 100644 --- a/core/res/res/values-mcc230-zh-rCN/strings.xml +++ b/core/res/res/values-mcc230-zh-rCN/strings.xml @@ -15,5 +15,5 @@ --> <resources xmlns:android="http://schemas.android.com/apk/res/android" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> - <string name="locale_replacement" msgid="9011721823833053909">"cs_cz"</string> + <string name="locale_replacement">"cs_cz"</string> </resources> diff --git a/core/res/res/values-mcc230-zh-rTW/strings.xml b/core/res/res/values-mcc230-zh-rTW/strings.xml index 63ade62..d3ecdbb 100644 --- a/core/res/res/values-mcc230-zh-rTW/strings.xml +++ b/core/res/res/values-mcc230-zh-rTW/strings.xml @@ -15,5 +15,5 @@ --> <resources xmlns:android="http://schemas.android.com/apk/res/android" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> - <string name="locale_replacement" msgid="9011721823833053909">"cs_cz"</string> + <string name="locale_replacement">"cs_cz"</string> </resources> diff --git a/core/res/res/values-mcc232-cs/strings.xml b/core/res/res/values-mcc232-cs/strings.xml index b028927..4773838 100644 --- a/core/res/res/values-mcc232-cs/strings.xml +++ b/core/res/res/values-mcc232-cs/strings.xml @@ -15,5 +15,5 @@ --> <resources xmlns:android="http://schemas.android.com/apk/res/android" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> - <string name="locale_replacement" msgid="166900303893651370">"de_at"</string> + <string name="locale_replacement">"de_at"</string> </resources> diff --git a/core/res/res/values-mcc232-da/strings.xml b/core/res/res/values-mcc232-da/strings.xml index b028927..4773838 100644 --- a/core/res/res/values-mcc232-da/strings.xml +++ b/core/res/res/values-mcc232-da/strings.xml @@ -15,5 +15,5 @@ --> <resources xmlns:android="http://schemas.android.com/apk/res/android" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> - <string name="locale_replacement" msgid="166900303893651370">"de_at"</string> + <string name="locale_replacement">"de_at"</string> </resources> diff --git a/core/res/res/values-mcc232-de/strings.xml b/core/res/res/values-mcc232-de/strings.xml index b028927..4773838 100644 --- a/core/res/res/values-mcc232-de/strings.xml +++ b/core/res/res/values-mcc232-de/strings.xml @@ -15,5 +15,5 @@ --> <resources xmlns:android="http://schemas.android.com/apk/res/android" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> - <string name="locale_replacement" msgid="166900303893651370">"de_at"</string> + <string name="locale_replacement">"de_at"</string> </resources> diff --git a/core/res/res/values-mcc232-el/strings.xml b/core/res/res/values-mcc232-el/strings.xml index b028927..97bfe65 100644 --- a/core/res/res/values-mcc232-el/strings.xml +++ b/core/res/res/values-mcc232-el/strings.xml @@ -15,5 +15,5 @@ --> <resources xmlns:android="http://schemas.android.com/apk/res/android" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> - <string name="locale_replacement" msgid="166900303893651370">"de_at"</string> + <string name="locale_replacement">"el_GR"</string> </resources> diff --git a/core/res/res/values-mcc232-es-rUS/strings.xml b/core/res/res/values-mcc232-es-rUS/strings.xml index b028927..4773838 100644 --- a/core/res/res/values-mcc232-es-rUS/strings.xml +++ b/core/res/res/values-mcc232-es-rUS/strings.xml @@ -15,5 +15,5 @@ --> <resources xmlns:android="http://schemas.android.com/apk/res/android" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> - <string name="locale_replacement" msgid="166900303893651370">"de_at"</string> + <string name="locale_replacement">"de_at"</string> </resources> diff --git a/core/res/res/values-mcc232-es/strings.xml b/core/res/res/values-mcc232-es/strings.xml index b028927..4773838 100644 --- a/core/res/res/values-mcc232-es/strings.xml +++ b/core/res/res/values-mcc232-es/strings.xml @@ -15,5 +15,5 @@ --> <resources xmlns:android="http://schemas.android.com/apk/res/android" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> - <string name="locale_replacement" msgid="166900303893651370">"de_at"</string> + <string name="locale_replacement">"de_at"</string> </resources> diff --git a/core/res/res/values-mcc232-fr/strings.xml b/core/res/res/values-mcc232-fr/strings.xml index b028927..4773838 100644 --- a/core/res/res/values-mcc232-fr/strings.xml +++ b/core/res/res/values-mcc232-fr/strings.xml @@ -15,5 +15,5 @@ --> <resources xmlns:android="http://schemas.android.com/apk/res/android" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> - <string name="locale_replacement" msgid="166900303893651370">"de_at"</string> + <string name="locale_replacement">"de_at"</string> </resources> diff --git a/core/res/res/values-mcc232-it/strings.xml b/core/res/res/values-mcc232-it/strings.xml index b028927..4773838 100644 --- a/core/res/res/values-mcc232-it/strings.xml +++ b/core/res/res/values-mcc232-it/strings.xml @@ -15,5 +15,5 @@ --> <resources xmlns:android="http://schemas.android.com/apk/res/android" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> - <string name="locale_replacement" msgid="166900303893651370">"de_at"</string> + <string name="locale_replacement">"de_at"</string> </resources> diff --git a/core/res/res/values-mcc232-ja/strings.xml b/core/res/res/values-mcc232-ja/strings.xml index b028927..4773838 100644 --- a/core/res/res/values-mcc232-ja/strings.xml +++ b/core/res/res/values-mcc232-ja/strings.xml @@ -15,5 +15,5 @@ --> <resources xmlns:android="http://schemas.android.com/apk/res/android" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> - <string name="locale_replacement" msgid="166900303893651370">"de_at"</string> + <string name="locale_replacement">"de_at"</string> </resources> diff --git a/core/res/res/values-mcc232-ko/strings.xml b/core/res/res/values-mcc232-ko/strings.xml index b028927..4773838 100644 --- a/core/res/res/values-mcc232-ko/strings.xml +++ b/core/res/res/values-mcc232-ko/strings.xml @@ -15,5 +15,5 @@ --> <resources xmlns:android="http://schemas.android.com/apk/res/android" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> - <string name="locale_replacement" msgid="166900303893651370">"de_at"</string> + <string name="locale_replacement">"de_at"</string> </resources> diff --git a/core/res/res/values-mcc232-nb/strings.xml b/core/res/res/values-mcc232-nb/strings.xml deleted file mode 100644 index b028927..0000000 --- a/core/res/res/values-mcc232-nb/strings.xml +++ /dev/null @@ -1,19 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!-- Copyright (C) 2009 The Android Open Source Project - - Licensed 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. ---> -<resources xmlns:android="http://schemas.android.com/apk/res/android" - xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> - <string name="locale_replacement" msgid="166900303893651370">"de_at"</string> -</resources> diff --git a/core/res/res/values-mcc232-nl/strings.xml b/core/res/res/values-mcc232-nl/strings.xml index b028927..4773838 100644 --- a/core/res/res/values-mcc232-nl/strings.xml +++ b/core/res/res/values-mcc232-nl/strings.xml @@ -15,5 +15,5 @@ --> <resources xmlns:android="http://schemas.android.com/apk/res/android" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> - <string name="locale_replacement" msgid="166900303893651370">"de_at"</string> + <string name="locale_replacement">"de_at"</string> </resources> diff --git a/core/res/res/values-mcc232-pl/strings.xml b/core/res/res/values-mcc232-pl/strings.xml index b028927..4773838 100644 --- a/core/res/res/values-mcc232-pl/strings.xml +++ b/core/res/res/values-mcc232-pl/strings.xml @@ -15,5 +15,5 @@ --> <resources xmlns:android="http://schemas.android.com/apk/res/android" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> - <string name="locale_replacement" msgid="166900303893651370">"de_at"</string> + <string name="locale_replacement">"de_at"</string> </resources> diff --git a/core/res/res/values-mcc232-pt-rPT/strings.xml b/core/res/res/values-mcc232-pt-rPT/strings.xml index b028927..4773838 100644 --- a/core/res/res/values-mcc232-pt-rPT/strings.xml +++ b/core/res/res/values-mcc232-pt-rPT/strings.xml @@ -15,5 +15,5 @@ --> <resources xmlns:android="http://schemas.android.com/apk/res/android" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> - <string name="locale_replacement" msgid="166900303893651370">"de_at"</string> + <string name="locale_replacement">"de_at"</string> </resources> diff --git a/core/res/res/values-mcc232-pt/strings.xml b/core/res/res/values-mcc232-pt/strings.xml index b028927..4773838 100644 --- a/core/res/res/values-mcc232-pt/strings.xml +++ b/core/res/res/values-mcc232-pt/strings.xml @@ -15,5 +15,5 @@ --> <resources xmlns:android="http://schemas.android.com/apk/res/android" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> - <string name="locale_replacement" msgid="166900303893651370">"de_at"</string> + <string name="locale_replacement">"de_at"</string> </resources> diff --git a/core/res/res/values-mcc232-ru/strings.xml b/core/res/res/values-mcc232-ru/strings.xml index b028927..4773838 100644 --- a/core/res/res/values-mcc232-ru/strings.xml +++ b/core/res/res/values-mcc232-ru/strings.xml @@ -15,5 +15,5 @@ --> <resources xmlns:android="http://schemas.android.com/apk/res/android" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> - <string name="locale_replacement" msgid="166900303893651370">"de_at"</string> + <string name="locale_replacement">"de_at"</string> </resources> diff --git a/core/res/res/values-mcc232-sv/strings.xml b/core/res/res/values-mcc232-sv/strings.xml index b028927..4773838 100644 --- a/core/res/res/values-mcc232-sv/strings.xml +++ b/core/res/res/values-mcc232-sv/strings.xml @@ -15,5 +15,5 @@ --> <resources xmlns:android="http://schemas.android.com/apk/res/android" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> - <string name="locale_replacement" msgid="166900303893651370">"de_at"</string> + <string name="locale_replacement">"de_at"</string> </resources> diff --git a/core/res/res/values-mcc232-tr/strings.xml b/core/res/res/values-mcc232-tr/strings.xml index b028927..4773838 100644 --- a/core/res/res/values-mcc232-tr/strings.xml +++ b/core/res/res/values-mcc232-tr/strings.xml @@ -15,5 +15,5 @@ --> <resources xmlns:android="http://schemas.android.com/apk/res/android" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> - <string name="locale_replacement" msgid="166900303893651370">"de_at"</string> + <string name="locale_replacement">"de_at"</string> </resources> diff --git a/core/res/res/values-mcc232-zh-rCN/strings.xml b/core/res/res/values-mcc232-zh-rCN/strings.xml index b028927..4773838 100644 --- a/core/res/res/values-mcc232-zh-rCN/strings.xml +++ b/core/res/res/values-mcc232-zh-rCN/strings.xml @@ -15,5 +15,5 @@ --> <resources xmlns:android="http://schemas.android.com/apk/res/android" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> - <string name="locale_replacement" msgid="166900303893651370">"de_at"</string> + <string name="locale_replacement">"de_at"</string> </resources> diff --git a/core/res/res/values-mcc232-zh-rTW/strings.xml b/core/res/res/values-mcc232-zh-rTW/strings.xml index b028927..4773838 100644 --- a/core/res/res/values-mcc232-zh-rTW/strings.xml +++ b/core/res/res/values-mcc232-zh-rTW/strings.xml @@ -15,5 +15,5 @@ --> <resources xmlns:android="http://schemas.android.com/apk/res/android" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> - <string name="locale_replacement" msgid="166900303893651370">"de_at"</string> + <string name="locale_replacement">"de_at"</string> </resources> diff --git a/core/res/res/values-mcc234-cs/strings.xml b/core/res/res/values-mcc234-cs/strings.xml index bd391e1..2538b73 100644 --- a/core/res/res/values-mcc234-cs/strings.xml +++ b/core/res/res/values-mcc234-cs/strings.xml @@ -15,5 +15,5 @@ --> <resources xmlns:android="http://schemas.android.com/apk/res/android" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> - <string name="locale_replacement" msgid="233769627858930762">"en_gb"</string> + <string name="locale_replacement">"en_gb"</string> </resources> diff --git a/core/res/res/values-mcc234-da/strings.xml b/core/res/res/values-mcc234-da/strings.xml index bd391e1..2538b73 100644 --- a/core/res/res/values-mcc234-da/strings.xml +++ b/core/res/res/values-mcc234-da/strings.xml @@ -15,5 +15,5 @@ --> <resources xmlns:android="http://schemas.android.com/apk/res/android" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> - <string name="locale_replacement" msgid="233769627858930762">"en_gb"</string> + <string name="locale_replacement">"en_gb"</string> </resources> diff --git a/core/res/res/values-mcc234-de/strings.xml b/core/res/res/values-mcc234-de/strings.xml index bd391e1..2538b73 100644 --- a/core/res/res/values-mcc234-de/strings.xml +++ b/core/res/res/values-mcc234-de/strings.xml @@ -15,5 +15,5 @@ --> <resources xmlns:android="http://schemas.android.com/apk/res/android" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> - <string name="locale_replacement" msgid="233769627858930762">"en_gb"</string> + <string name="locale_replacement">"en_gb"</string> </resources> diff --git a/core/res/res/values-mcc234-el/strings.xml b/core/res/res/values-mcc234-el/strings.xml index bd391e1..97bfe65 100644 --- a/core/res/res/values-mcc234-el/strings.xml +++ b/core/res/res/values-mcc234-el/strings.xml @@ -15,5 +15,5 @@ --> <resources xmlns:android="http://schemas.android.com/apk/res/android" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> - <string name="locale_replacement" msgid="233769627858930762">"en_gb"</string> + <string name="locale_replacement">"el_GR"</string> </resources> diff --git a/core/res/res/values-mcc234-es-rUS/strings.xml b/core/res/res/values-mcc234-es-rUS/strings.xml index bd391e1..2538b73 100644 --- a/core/res/res/values-mcc234-es-rUS/strings.xml +++ b/core/res/res/values-mcc234-es-rUS/strings.xml @@ -15,5 +15,5 @@ --> <resources xmlns:android="http://schemas.android.com/apk/res/android" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> - <string name="locale_replacement" msgid="233769627858930762">"en_gb"</string> + <string name="locale_replacement">"en_gb"</string> </resources> diff --git a/core/res/res/values-mcc234-es/strings.xml b/core/res/res/values-mcc234-es/strings.xml index bd391e1..2538b73 100644 --- a/core/res/res/values-mcc234-es/strings.xml +++ b/core/res/res/values-mcc234-es/strings.xml @@ -15,5 +15,5 @@ --> <resources xmlns:android="http://schemas.android.com/apk/res/android" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> - <string name="locale_replacement" msgid="233769627858930762">"en_gb"</string> + <string name="locale_replacement">"en_gb"</string> </resources> diff --git a/core/res/res/values-mcc234-fr/strings.xml b/core/res/res/values-mcc234-fr/strings.xml index bd391e1..2538b73 100644 --- a/core/res/res/values-mcc234-fr/strings.xml +++ b/core/res/res/values-mcc234-fr/strings.xml @@ -15,5 +15,5 @@ --> <resources xmlns:android="http://schemas.android.com/apk/res/android" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> - <string name="locale_replacement" msgid="233769627858930762">"en_gb"</string> + <string name="locale_replacement">"en_gb"</string> </resources> diff --git a/core/res/res/values-mcc234-it/strings.xml b/core/res/res/values-mcc234-it/strings.xml index bd391e1..2538b73 100644 --- a/core/res/res/values-mcc234-it/strings.xml +++ b/core/res/res/values-mcc234-it/strings.xml @@ -15,5 +15,5 @@ --> <resources xmlns:android="http://schemas.android.com/apk/res/android" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> - <string name="locale_replacement" msgid="233769627858930762">"en_gb"</string> + <string name="locale_replacement">"en_gb"</string> </resources> diff --git a/core/res/res/values-mcc234-ja/strings.xml b/core/res/res/values-mcc234-ja/strings.xml index bd391e1..2538b73 100644 --- a/core/res/res/values-mcc234-ja/strings.xml +++ b/core/res/res/values-mcc234-ja/strings.xml @@ -15,5 +15,5 @@ --> <resources xmlns:android="http://schemas.android.com/apk/res/android" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> - <string name="locale_replacement" msgid="233769627858930762">"en_gb"</string> + <string name="locale_replacement">"en_gb"</string> </resources> diff --git a/core/res/res/values-mcc234-ko/strings.xml b/core/res/res/values-mcc234-ko/strings.xml index bd391e1..2538b73 100644 --- a/core/res/res/values-mcc234-ko/strings.xml +++ b/core/res/res/values-mcc234-ko/strings.xml @@ -15,5 +15,5 @@ --> <resources xmlns:android="http://schemas.android.com/apk/res/android" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> - <string name="locale_replacement" msgid="233769627858930762">"en_gb"</string> + <string name="locale_replacement">"en_gb"</string> </resources> diff --git a/core/res/res/values-mcc234-nb/strings.xml b/core/res/res/values-mcc234-nb/strings.xml deleted file mode 100644 index bd391e1..0000000 --- a/core/res/res/values-mcc234-nb/strings.xml +++ /dev/null @@ -1,19 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!-- Copyright (C) 2009 The Android Open Source Project - - Licensed 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. ---> -<resources xmlns:android="http://schemas.android.com/apk/res/android" - xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> - <string name="locale_replacement" msgid="233769627858930762">"en_gb"</string> -</resources> diff --git a/core/res/res/values-mcc234-nl/strings.xml b/core/res/res/values-mcc234-nl/strings.xml index bd391e1..2538b73 100644 --- a/core/res/res/values-mcc234-nl/strings.xml +++ b/core/res/res/values-mcc234-nl/strings.xml @@ -15,5 +15,5 @@ --> <resources xmlns:android="http://schemas.android.com/apk/res/android" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> - <string name="locale_replacement" msgid="233769627858930762">"en_gb"</string> + <string name="locale_replacement">"en_gb"</string> </resources> diff --git a/core/res/res/values-mcc234-pl/strings.xml b/core/res/res/values-mcc234-pl/strings.xml index bd391e1..2538b73 100644 --- a/core/res/res/values-mcc234-pl/strings.xml +++ b/core/res/res/values-mcc234-pl/strings.xml @@ -15,5 +15,5 @@ --> <resources xmlns:android="http://schemas.android.com/apk/res/android" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> - <string name="locale_replacement" msgid="233769627858930762">"en_gb"</string> + <string name="locale_replacement">"en_gb"</string> </resources> diff --git a/core/res/res/values-mcc234-pt-rPT/strings.xml b/core/res/res/values-mcc234-pt-rPT/strings.xml index bd391e1..2538b73 100644 --- a/core/res/res/values-mcc234-pt-rPT/strings.xml +++ b/core/res/res/values-mcc234-pt-rPT/strings.xml @@ -15,5 +15,5 @@ --> <resources xmlns:android="http://schemas.android.com/apk/res/android" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> - <string name="locale_replacement" msgid="233769627858930762">"en_gb"</string> + <string name="locale_replacement">"en_gb"</string> </resources> diff --git a/core/res/res/values-mcc234-pt/strings.xml b/core/res/res/values-mcc234-pt/strings.xml index bd391e1..2538b73 100644 --- a/core/res/res/values-mcc234-pt/strings.xml +++ b/core/res/res/values-mcc234-pt/strings.xml @@ -15,5 +15,5 @@ --> <resources xmlns:android="http://schemas.android.com/apk/res/android" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> - <string name="locale_replacement" msgid="233769627858930762">"en_gb"</string> + <string name="locale_replacement">"en_gb"</string> </resources> diff --git a/core/res/res/values-mcc234-ru/strings.xml b/core/res/res/values-mcc234-ru/strings.xml index bd391e1..2538b73 100644 --- a/core/res/res/values-mcc234-ru/strings.xml +++ b/core/res/res/values-mcc234-ru/strings.xml @@ -15,5 +15,5 @@ --> <resources xmlns:android="http://schemas.android.com/apk/res/android" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> - <string name="locale_replacement" msgid="233769627858930762">"en_gb"</string> + <string name="locale_replacement">"en_gb"</string> </resources> diff --git a/core/res/res/values-mcc234-sv/strings.xml b/core/res/res/values-mcc234-sv/strings.xml index bd391e1..2538b73 100644 --- a/core/res/res/values-mcc234-sv/strings.xml +++ b/core/res/res/values-mcc234-sv/strings.xml @@ -15,5 +15,5 @@ --> <resources xmlns:android="http://schemas.android.com/apk/res/android" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> - <string name="locale_replacement" msgid="233769627858930762">"en_gb"</string> + <string name="locale_replacement">"en_gb"</string> </resources> diff --git a/core/res/res/values-mcc234-tr/strings.xml b/core/res/res/values-mcc234-tr/strings.xml index bd391e1..2538b73 100644 --- a/core/res/res/values-mcc234-tr/strings.xml +++ b/core/res/res/values-mcc234-tr/strings.xml @@ -15,5 +15,5 @@ --> <resources xmlns:android="http://schemas.android.com/apk/res/android" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> - <string name="locale_replacement" msgid="233769627858930762">"en_gb"</string> + <string name="locale_replacement">"en_gb"</string> </resources> diff --git a/core/res/res/values-mcc234-zh-rCN/strings.xml b/core/res/res/values-mcc234-zh-rCN/strings.xml index bd391e1..2538b73 100644 --- a/core/res/res/values-mcc234-zh-rCN/strings.xml +++ b/core/res/res/values-mcc234-zh-rCN/strings.xml @@ -15,5 +15,5 @@ --> <resources xmlns:android="http://schemas.android.com/apk/res/android" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> - <string name="locale_replacement" msgid="233769627858930762">"en_gb"</string> + <string name="locale_replacement">"en_gb"</string> </resources> diff --git a/core/res/res/values-mcc234-zh-rTW/strings.xml b/core/res/res/values-mcc234-zh-rTW/strings.xml index bd391e1..2538b73 100644 --- a/core/res/res/values-mcc234-zh-rTW/strings.xml +++ b/core/res/res/values-mcc234-zh-rTW/strings.xml @@ -15,5 +15,5 @@ --> <resources xmlns:android="http://schemas.android.com/apk/res/android" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> - <string name="locale_replacement" msgid="233769627858930762">"en_gb"</string> + <string name="locale_replacement">"en_gb"</string> </resources> diff --git a/core/res/res/values-mcc260-cs/strings.xml b/core/res/res/values-mcc260-cs/strings.xml index 13ea1b2..1161f9a 100644 --- a/core/res/res/values-mcc260-cs/strings.xml +++ b/core/res/res/values-mcc260-cs/strings.xml @@ -15,5 +15,5 @@ --> <resources xmlns:android="http://schemas.android.com/apk/res/android" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> - <string name="locale_replacement" msgid="6306793451973344945">"pl_pl"</string> + <string name="locale_replacement">"pl_pl"</string> </resources> diff --git a/core/res/res/values-mcc260-da/strings.xml b/core/res/res/values-mcc260-da/strings.xml index 13ea1b2..1161f9a 100644 --- a/core/res/res/values-mcc260-da/strings.xml +++ b/core/res/res/values-mcc260-da/strings.xml @@ -15,5 +15,5 @@ --> <resources xmlns:android="http://schemas.android.com/apk/res/android" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> - <string name="locale_replacement" msgid="6306793451973344945">"pl_pl"</string> + <string name="locale_replacement">"pl_pl"</string> </resources> diff --git a/core/res/res/values-mcc260-de/strings.xml b/core/res/res/values-mcc260-de/strings.xml index 13ea1b2..1161f9a 100644 --- a/core/res/res/values-mcc260-de/strings.xml +++ b/core/res/res/values-mcc260-de/strings.xml @@ -15,5 +15,5 @@ --> <resources xmlns:android="http://schemas.android.com/apk/res/android" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> - <string name="locale_replacement" msgid="6306793451973344945">"pl_pl"</string> + <string name="locale_replacement">"pl_pl"</string> </resources> diff --git a/core/res/res/values-mcc260-el/strings.xml b/core/res/res/values-mcc260-el/strings.xml index 13ea1b2..97bfe65 100644 --- a/core/res/res/values-mcc260-el/strings.xml +++ b/core/res/res/values-mcc260-el/strings.xml @@ -15,5 +15,5 @@ --> <resources xmlns:android="http://schemas.android.com/apk/res/android" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> - <string name="locale_replacement" msgid="6306793451973344945">"pl_pl"</string> + <string name="locale_replacement">"el_GR"</string> </resources> diff --git a/core/res/res/values-mcc260-es-rUS/strings.xml b/core/res/res/values-mcc260-es-rUS/strings.xml index 13ea1b2..1161f9a 100644 --- a/core/res/res/values-mcc260-es-rUS/strings.xml +++ b/core/res/res/values-mcc260-es-rUS/strings.xml @@ -15,5 +15,5 @@ --> <resources xmlns:android="http://schemas.android.com/apk/res/android" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> - <string name="locale_replacement" msgid="6306793451973344945">"pl_pl"</string> + <string name="locale_replacement">"pl_pl"</string> </resources> diff --git a/core/res/res/values-mcc260-es/strings.xml b/core/res/res/values-mcc260-es/strings.xml index 13ea1b2..1161f9a 100644 --- a/core/res/res/values-mcc260-es/strings.xml +++ b/core/res/res/values-mcc260-es/strings.xml @@ -15,5 +15,5 @@ --> <resources xmlns:android="http://schemas.android.com/apk/res/android" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> - <string name="locale_replacement" msgid="6306793451973344945">"pl_pl"</string> + <string name="locale_replacement">"pl_pl"</string> </resources> diff --git a/core/res/res/values-mcc260-fr/strings.xml b/core/res/res/values-mcc260-fr/strings.xml index 13ea1b2..1161f9a 100644 --- a/core/res/res/values-mcc260-fr/strings.xml +++ b/core/res/res/values-mcc260-fr/strings.xml @@ -15,5 +15,5 @@ --> <resources xmlns:android="http://schemas.android.com/apk/res/android" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> - <string name="locale_replacement" msgid="6306793451973344945">"pl_pl"</string> + <string name="locale_replacement">"pl_pl"</string> </resources> diff --git a/core/res/res/values-mcc260-it/strings.xml b/core/res/res/values-mcc260-it/strings.xml index 13ea1b2..1161f9a 100644 --- a/core/res/res/values-mcc260-it/strings.xml +++ b/core/res/res/values-mcc260-it/strings.xml @@ -15,5 +15,5 @@ --> <resources xmlns:android="http://schemas.android.com/apk/res/android" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> - <string name="locale_replacement" msgid="6306793451973344945">"pl_pl"</string> + <string name="locale_replacement">"pl_pl"</string> </resources> diff --git a/core/res/res/values-mcc260-ja/strings.xml b/core/res/res/values-mcc260-ja/strings.xml index 13ea1b2..1161f9a 100644 --- a/core/res/res/values-mcc260-ja/strings.xml +++ b/core/res/res/values-mcc260-ja/strings.xml @@ -15,5 +15,5 @@ --> <resources xmlns:android="http://schemas.android.com/apk/res/android" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> - <string name="locale_replacement" msgid="6306793451973344945">"pl_pl"</string> + <string name="locale_replacement">"pl_pl"</string> </resources> diff --git a/core/res/res/values-mcc260-ko/strings.xml b/core/res/res/values-mcc260-ko/strings.xml index 13ea1b2..1161f9a 100644 --- a/core/res/res/values-mcc260-ko/strings.xml +++ b/core/res/res/values-mcc260-ko/strings.xml @@ -15,5 +15,5 @@ --> <resources xmlns:android="http://schemas.android.com/apk/res/android" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> - <string name="locale_replacement" msgid="6306793451973344945">"pl_pl"</string> + <string name="locale_replacement">"pl_pl"</string> </resources> diff --git a/core/res/res/values-mcc260-nb/strings.xml b/core/res/res/values-mcc260-nb/strings.xml deleted file mode 100644 index 13ea1b2..0000000 --- a/core/res/res/values-mcc260-nb/strings.xml +++ /dev/null @@ -1,19 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!-- Copyright (C) 2009 The Android Open Source Project - - Licensed 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. ---> -<resources xmlns:android="http://schemas.android.com/apk/res/android" - xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> - <string name="locale_replacement" msgid="6306793451973344945">"pl_pl"</string> -</resources> diff --git a/core/res/res/values-mcc260-nl/strings.xml b/core/res/res/values-mcc260-nl/strings.xml index 13ea1b2..1161f9a 100644 --- a/core/res/res/values-mcc260-nl/strings.xml +++ b/core/res/res/values-mcc260-nl/strings.xml @@ -15,5 +15,5 @@ --> <resources xmlns:android="http://schemas.android.com/apk/res/android" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> - <string name="locale_replacement" msgid="6306793451973344945">"pl_pl"</string> + <string name="locale_replacement">"pl_pl"</string> </resources> diff --git a/core/res/res/values-mcc260-pl/strings.xml b/core/res/res/values-mcc260-pl/strings.xml index 13ea1b2..1161f9a 100644 --- a/core/res/res/values-mcc260-pl/strings.xml +++ b/core/res/res/values-mcc260-pl/strings.xml @@ -15,5 +15,5 @@ --> <resources xmlns:android="http://schemas.android.com/apk/res/android" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> - <string name="locale_replacement" msgid="6306793451973344945">"pl_pl"</string> + <string name="locale_replacement">"pl_pl"</string> </resources> diff --git a/core/res/res/values-mcc260-pt-rPT/strings.xml b/core/res/res/values-mcc260-pt-rPT/strings.xml index 13ea1b2..1161f9a 100644 --- a/core/res/res/values-mcc260-pt-rPT/strings.xml +++ b/core/res/res/values-mcc260-pt-rPT/strings.xml @@ -15,5 +15,5 @@ --> <resources xmlns:android="http://schemas.android.com/apk/res/android" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> - <string name="locale_replacement" msgid="6306793451973344945">"pl_pl"</string> + <string name="locale_replacement">"pl_pl"</string> </resources> diff --git a/core/res/res/values-mcc260-pt/strings.xml b/core/res/res/values-mcc260-pt/strings.xml index 13ea1b2..1161f9a 100644 --- a/core/res/res/values-mcc260-pt/strings.xml +++ b/core/res/res/values-mcc260-pt/strings.xml @@ -15,5 +15,5 @@ --> <resources xmlns:android="http://schemas.android.com/apk/res/android" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> - <string name="locale_replacement" msgid="6306793451973344945">"pl_pl"</string> + <string name="locale_replacement">"pl_pl"</string> </resources> diff --git a/core/res/res/values-mcc260-ru/strings.xml b/core/res/res/values-mcc260-ru/strings.xml index 13ea1b2..1161f9a 100644 --- a/core/res/res/values-mcc260-ru/strings.xml +++ b/core/res/res/values-mcc260-ru/strings.xml @@ -15,5 +15,5 @@ --> <resources xmlns:android="http://schemas.android.com/apk/res/android" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> - <string name="locale_replacement" msgid="6306793451973344945">"pl_pl"</string> + <string name="locale_replacement">"pl_pl"</string> </resources> diff --git a/core/res/res/values-mcc260-sv/strings.xml b/core/res/res/values-mcc260-sv/strings.xml index 13ea1b2..1161f9a 100644 --- a/core/res/res/values-mcc260-sv/strings.xml +++ b/core/res/res/values-mcc260-sv/strings.xml @@ -15,5 +15,5 @@ --> <resources xmlns:android="http://schemas.android.com/apk/res/android" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> - <string name="locale_replacement" msgid="6306793451973344945">"pl_pl"</string> + <string name="locale_replacement">"pl_pl"</string> </resources> diff --git a/core/res/res/values-mcc260-tr/strings.xml b/core/res/res/values-mcc260-tr/strings.xml index 13ea1b2..1161f9a 100644 --- a/core/res/res/values-mcc260-tr/strings.xml +++ b/core/res/res/values-mcc260-tr/strings.xml @@ -15,5 +15,5 @@ --> <resources xmlns:android="http://schemas.android.com/apk/res/android" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> - <string name="locale_replacement" msgid="6306793451973344945">"pl_pl"</string> + <string name="locale_replacement">"pl_pl"</string> </resources> diff --git a/core/res/res/values-mcc260-zh-rCN/strings.xml b/core/res/res/values-mcc260-zh-rCN/strings.xml index 13ea1b2..1161f9a 100644 --- a/core/res/res/values-mcc260-zh-rCN/strings.xml +++ b/core/res/res/values-mcc260-zh-rCN/strings.xml @@ -15,5 +15,5 @@ --> <resources xmlns:android="http://schemas.android.com/apk/res/android" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> - <string name="locale_replacement" msgid="6306793451973344945">"pl_pl"</string> + <string name="locale_replacement">"pl_pl"</string> </resources> diff --git a/core/res/res/values-mcc260-zh-rTW/strings.xml b/core/res/res/values-mcc260-zh-rTW/strings.xml index 13ea1b2..1161f9a 100644 --- a/core/res/res/values-mcc260-zh-rTW/strings.xml +++ b/core/res/res/values-mcc260-zh-rTW/strings.xml @@ -15,5 +15,5 @@ --> <resources xmlns:android="http://schemas.android.com/apk/res/android" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> - <string name="locale_replacement" msgid="6306793451973344945">"pl_pl"</string> + <string name="locale_replacement">"pl_pl"</string> </resources> diff --git a/core/res/res/values-mcc262-cs/strings.xml b/core/res/res/values-mcc262-cs/strings.xml index a90e7cf..9505cf4 100644 --- a/core/res/res/values-mcc262-cs/strings.xml +++ b/core/res/res/values-mcc262-cs/strings.xml @@ -15,5 +15,5 @@ --> <resources xmlns:android="http://schemas.android.com/apk/res/android" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> - <string name="locale_replacement" msgid="273407696421660814">"de_de"</string> + <string name="locale_replacement">"de_de"</string> </resources> diff --git a/core/res/res/values-mcc262-da/strings.xml b/core/res/res/values-mcc262-da/strings.xml index a90e7cf..9505cf4 100644 --- a/core/res/res/values-mcc262-da/strings.xml +++ b/core/res/res/values-mcc262-da/strings.xml @@ -15,5 +15,5 @@ --> <resources xmlns:android="http://schemas.android.com/apk/res/android" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> - <string name="locale_replacement" msgid="273407696421660814">"de_de"</string> + <string name="locale_replacement">"de_de"</string> </resources> diff --git a/core/res/res/values-mcc262-de/strings.xml b/core/res/res/values-mcc262-de/strings.xml index a90e7cf..9505cf4 100644 --- a/core/res/res/values-mcc262-de/strings.xml +++ b/core/res/res/values-mcc262-de/strings.xml @@ -15,5 +15,5 @@ --> <resources xmlns:android="http://schemas.android.com/apk/res/android" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> - <string name="locale_replacement" msgid="273407696421660814">"de_de"</string> + <string name="locale_replacement">"de_de"</string> </resources> diff --git a/core/res/res/values-mcc262-el/strings.xml b/core/res/res/values-mcc262-el/strings.xml index a90e7cf..97bfe65 100644 --- a/core/res/res/values-mcc262-el/strings.xml +++ b/core/res/res/values-mcc262-el/strings.xml @@ -15,5 +15,5 @@ --> <resources xmlns:android="http://schemas.android.com/apk/res/android" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> - <string name="locale_replacement" msgid="273407696421660814">"de_de"</string> + <string name="locale_replacement">"el_GR"</string> </resources> diff --git a/core/res/res/values-mcc262-es-rUS/strings.xml b/core/res/res/values-mcc262-es-rUS/strings.xml index a90e7cf..9505cf4 100644 --- a/core/res/res/values-mcc262-es-rUS/strings.xml +++ b/core/res/res/values-mcc262-es-rUS/strings.xml @@ -15,5 +15,5 @@ --> <resources xmlns:android="http://schemas.android.com/apk/res/android" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> - <string name="locale_replacement" msgid="273407696421660814">"de_de"</string> + <string name="locale_replacement">"de_de"</string> </resources> diff --git a/core/res/res/values-mcc262-es/strings.xml b/core/res/res/values-mcc262-es/strings.xml index a90e7cf..9505cf4 100644 --- a/core/res/res/values-mcc262-es/strings.xml +++ b/core/res/res/values-mcc262-es/strings.xml @@ -15,5 +15,5 @@ --> <resources xmlns:android="http://schemas.android.com/apk/res/android" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> - <string name="locale_replacement" msgid="273407696421660814">"de_de"</string> + <string name="locale_replacement">"de_de"</string> </resources> diff --git a/core/res/res/values-mcc262-fr/strings.xml b/core/res/res/values-mcc262-fr/strings.xml index a90e7cf..9505cf4 100644 --- a/core/res/res/values-mcc262-fr/strings.xml +++ b/core/res/res/values-mcc262-fr/strings.xml @@ -15,5 +15,5 @@ --> <resources xmlns:android="http://schemas.android.com/apk/res/android" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> - <string name="locale_replacement" msgid="273407696421660814">"de_de"</string> + <string name="locale_replacement">"de_de"</string> </resources> diff --git a/core/res/res/values-mcc262-it/strings.xml b/core/res/res/values-mcc262-it/strings.xml index a90e7cf..9505cf4 100644 --- a/core/res/res/values-mcc262-it/strings.xml +++ b/core/res/res/values-mcc262-it/strings.xml @@ -15,5 +15,5 @@ --> <resources xmlns:android="http://schemas.android.com/apk/res/android" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> - <string name="locale_replacement" msgid="273407696421660814">"de_de"</string> + <string name="locale_replacement">"de_de"</string> </resources> diff --git a/core/res/res/values-mcc262-ja/strings.xml b/core/res/res/values-mcc262-ja/strings.xml index a90e7cf..9505cf4 100644 --- a/core/res/res/values-mcc262-ja/strings.xml +++ b/core/res/res/values-mcc262-ja/strings.xml @@ -15,5 +15,5 @@ --> <resources xmlns:android="http://schemas.android.com/apk/res/android" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> - <string name="locale_replacement" msgid="273407696421660814">"de_de"</string> + <string name="locale_replacement">"de_de"</string> </resources> diff --git a/core/res/res/values-mcc262-ko/strings.xml b/core/res/res/values-mcc262-ko/strings.xml index a90e7cf..9505cf4 100644 --- a/core/res/res/values-mcc262-ko/strings.xml +++ b/core/res/res/values-mcc262-ko/strings.xml @@ -15,5 +15,5 @@ --> <resources xmlns:android="http://schemas.android.com/apk/res/android" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> - <string name="locale_replacement" msgid="273407696421660814">"de_de"</string> + <string name="locale_replacement">"de_de"</string> </resources> diff --git a/core/res/res/values-mcc262-nb/strings.xml b/core/res/res/values-mcc262-nb/strings.xml deleted file mode 100644 index a90e7cf..0000000 --- a/core/res/res/values-mcc262-nb/strings.xml +++ /dev/null @@ -1,19 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!-- Copyright (C) 2009 The Android Open Source Project - - Licensed 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. ---> -<resources xmlns:android="http://schemas.android.com/apk/res/android" - xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> - <string name="locale_replacement" msgid="273407696421660814">"de_de"</string> -</resources> diff --git a/core/res/res/values-mcc262-nl/strings.xml b/core/res/res/values-mcc262-nl/strings.xml index a90e7cf..9505cf4 100644 --- a/core/res/res/values-mcc262-nl/strings.xml +++ b/core/res/res/values-mcc262-nl/strings.xml @@ -15,5 +15,5 @@ --> <resources xmlns:android="http://schemas.android.com/apk/res/android" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> - <string name="locale_replacement" msgid="273407696421660814">"de_de"</string> + <string name="locale_replacement">"de_de"</string> </resources> diff --git a/core/res/res/values-mcc262-pl/strings.xml b/core/res/res/values-mcc262-pl/strings.xml index a90e7cf..9505cf4 100644 --- a/core/res/res/values-mcc262-pl/strings.xml +++ b/core/res/res/values-mcc262-pl/strings.xml @@ -15,5 +15,5 @@ --> <resources xmlns:android="http://schemas.android.com/apk/res/android" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> - <string name="locale_replacement" msgid="273407696421660814">"de_de"</string> + <string name="locale_replacement">"de_de"</string> </resources> diff --git a/core/res/res/values-mcc262-pt-rPT/strings.xml b/core/res/res/values-mcc262-pt-rPT/strings.xml index a90e7cf..9505cf4 100644 --- a/core/res/res/values-mcc262-pt-rPT/strings.xml +++ b/core/res/res/values-mcc262-pt-rPT/strings.xml @@ -15,5 +15,5 @@ --> <resources xmlns:android="http://schemas.android.com/apk/res/android" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> - <string name="locale_replacement" msgid="273407696421660814">"de_de"</string> + <string name="locale_replacement">"de_de"</string> </resources> diff --git a/core/res/res/values-mcc262-pt/strings.xml b/core/res/res/values-mcc262-pt/strings.xml index a90e7cf..9505cf4 100644 --- a/core/res/res/values-mcc262-pt/strings.xml +++ b/core/res/res/values-mcc262-pt/strings.xml @@ -15,5 +15,5 @@ --> <resources xmlns:android="http://schemas.android.com/apk/res/android" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> - <string name="locale_replacement" msgid="273407696421660814">"de_de"</string> + <string name="locale_replacement">"de_de"</string> </resources> diff --git a/core/res/res/values-mcc262-ru/strings.xml b/core/res/res/values-mcc262-ru/strings.xml index a90e7cf..9505cf4 100644 --- a/core/res/res/values-mcc262-ru/strings.xml +++ b/core/res/res/values-mcc262-ru/strings.xml @@ -15,5 +15,5 @@ --> <resources xmlns:android="http://schemas.android.com/apk/res/android" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> - <string name="locale_replacement" msgid="273407696421660814">"de_de"</string> + <string name="locale_replacement">"de_de"</string> </resources> diff --git a/core/res/res/values-mcc262-sv/strings.xml b/core/res/res/values-mcc262-sv/strings.xml index a90e7cf..9505cf4 100644 --- a/core/res/res/values-mcc262-sv/strings.xml +++ b/core/res/res/values-mcc262-sv/strings.xml @@ -15,5 +15,5 @@ --> <resources xmlns:android="http://schemas.android.com/apk/res/android" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> - <string name="locale_replacement" msgid="273407696421660814">"de_de"</string> + <string name="locale_replacement">"de_de"</string> </resources> diff --git a/core/res/res/values-mcc262-tr/strings.xml b/core/res/res/values-mcc262-tr/strings.xml index a90e7cf..9505cf4 100644 --- a/core/res/res/values-mcc262-tr/strings.xml +++ b/core/res/res/values-mcc262-tr/strings.xml @@ -15,5 +15,5 @@ --> <resources xmlns:android="http://schemas.android.com/apk/res/android" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> - <string name="locale_replacement" msgid="273407696421660814">"de_de"</string> + <string name="locale_replacement">"de_de"</string> </resources> diff --git a/core/res/res/values-mcc262-zh-rCN/strings.xml b/core/res/res/values-mcc262-zh-rCN/strings.xml index a90e7cf..9505cf4 100644 --- a/core/res/res/values-mcc262-zh-rCN/strings.xml +++ b/core/res/res/values-mcc262-zh-rCN/strings.xml @@ -15,5 +15,5 @@ --> <resources xmlns:android="http://schemas.android.com/apk/res/android" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> - <string name="locale_replacement" msgid="273407696421660814">"de_de"</string> + <string name="locale_replacement">"de_de"</string> </resources> diff --git a/core/res/res/values-mcc262-zh-rTW/strings.xml b/core/res/res/values-mcc262-zh-rTW/strings.xml index a90e7cf..9505cf4 100644 --- a/core/res/res/values-mcc262-zh-rTW/strings.xml +++ b/core/res/res/values-mcc262-zh-rTW/strings.xml @@ -15,5 +15,5 @@ --> <resources xmlns:android="http://schemas.android.com/apk/res/android" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> - <string name="locale_replacement" msgid="273407696421660814">"de_de"</string> + <string name="locale_replacement">"de_de"</string> </resources> |
