donut snapshot

This commit is contained in:
Jean-Baptiste Queru
2009-08-11 13:12:34 -07:00
parent 5c1207be90
commit ac1e59d887
343 changed files with 52130 additions and 12962 deletions

View File

@@ -326,7 +326,13 @@ framework_docs_LOCAL_JAVA_LIBRARIES := \
framework_docs_LOCAL_MODULE_CLASS := JAVA_LIBRARIES
framework_docs_LOCAL_DROIDDOC_HTML_DIR := docs/html
# The since flag (-since N.xml API_LEVEL) is used to add API Level information
# to the reference documentation. Must be in order of oldest to newest.
framework_docs_LOCAL_DROIDDOC_OPTIONS := \
-since ./frameworks/base/api/1.xml 1 \
-since ./frameworks/base/api/2.xml 2 \
-since ./frameworks/base/api/3.xml 3 \
-since ./frameworks/base/api/current.xml Donut \
-error 1 -error 2 -warning 3 -error 4 -error 6 -error 8 \
-overview $(LOCAL_PATH)/core/java/overview.html
@@ -343,14 +349,15 @@ web_docs_sample_code_flags := \
-samplecode $(sample_dir)/NotePad \
guide/samples/NotePad "Note Pad"
# SDK version identifiers used in the published docs.
# major[.minor] version for SDK. Typically identical to the
# most current Android platform version included in the SDK package.
framework_docs_SDK_VERSION := 1.5
# release version for SDK (ie "Release x")
framework_docs_SDK_REL_ID := 3
framework_docs_SDK_CURRENT_DIR := $(framework_docs_SDK_VERSION)_r$(framework_docs_SDK_REL_ID)
## SDK version identifiers used in the published docs
# major[.minor] version for current SDK. (full releases only)
framework_docs_SDK_VERSION:=1.5
# release version (ie "Release x") (full releases only)
framework_docs_SDK_REL_ID:=3
# name of current SDK directory (full releases only)
framework_docs_SDK_CURRENT_DIR:=$(framework_docs_SDK_VERSION)_r$(framework_docs_SDK_REL_ID)
# flag to build offline docs for a preview release
framework_docs_SDK_PREVIEW:=true
framework_docs_LOCAL_DROIDDOC_OPTIONS += \
-hdf sdk.version $(framework_docs_SDK_VERSION) \
@@ -379,7 +386,11 @@ LOCAL_DROIDDOC_OPTIONS:=\
-apixml $(INTERNAL_PLATFORM_API_FILE) \
-sdkvalues $(OUT_DOCS) \
-warning 3 \
-hdf android.whichdoc offline
-hdf android.whichdoc offline
ifeq ($(framework_docs_SDK_PREVIEW),true)
LOCAL_DROIDDOC_OPTIONS += -hdf sdk.current preview
endif
LOCAL_DROIDDOC_CUSTOM_TEMPLATE_DIR:=build/tools/droiddoc/templates-sdk
LOCAL_DROIDDOC_CUSTOM_ASSET_DIR:=assets-sdk

View File

@@ -37,6 +37,7 @@
#include "netkeystore.h"
#include "keymgmt.h"
#define DBG 1
#define CMD_PUT_WITH_FILE "putfile"
typedef void CMD_FUNC(LPC_MARSHAL *cmd, LPC_MARSHAL *reply);
@@ -397,12 +398,12 @@ int main(const int argc, const char *argv[])
// read the command, execute and send the result back.
if(read_marshal(s, &cmd)) goto err;
LOGI("new connection\n");
if (DBG) LOGD("new connection\n");
execute(&cmd, &reply);
write_marshal(s, &reply);
err:
memset(&reply, 0, sizeof(LPC_MARSHAL));
LOGI("closing connection\n");
if (DBG) LOGD("closing connection\n");
close(s);
}

View File

@@ -693,39 +693,6 @@ public class SearchDialog extends Dialog implements OnItemClickListener, OnItemS
return mLaunchComponent.flattenToShortString().startsWith("com.android.browser/");
}
/*
* Menu.
*/
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Show search settings menu item if anyone handles the intent for it
Intent settingsIntent = new Intent(SearchManager.INTENT_ACTION_SEARCH_SETTINGS);
settingsIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
PackageManager pm = getContext().getPackageManager();
ActivityInfo activityInfo = settingsIntent.resolveActivityInfo(pm, 0);
if (activityInfo != null) {
settingsIntent.setClassName(activityInfo.applicationInfo.packageName,
activityInfo.name);
CharSequence label = activityInfo.loadLabel(getContext().getPackageManager());
menu.add(Menu.NONE, Menu.NONE, Menu.NONE, label)
.setIcon(android.R.drawable.ic_menu_preferences)
.setAlphabeticShortcut('P')
.setIntent(settingsIntent);
return true;
}
return super.onCreateOptionsMenu(menu);
}
@Override
public boolean onMenuOpened(int featureId, Menu menu) {
// The menu shows up above the IME, regardless of whether it is in front
// of the drop-down or not. This looks weird when there is no IME, so
// we make sure it is visible.
mSearchAutoComplete.ensureImeVisible();
return super.onMenuOpened(featureId, menu);
}
/**
* Listeners of various types
*/
@@ -899,16 +866,15 @@ public class SearchDialog extends Dialog implements OnItemClickListener, OnItemS
return;
}
try {
// First stop the existing search before starting voice search, or else we'll end
// up showing the search dialog again once we return to the app.
((SearchManager) getContext().getSystemService(Context.SEARCH_SERVICE)).
stopSearch();
if (mSearchable.getVoiceSearchLaunchWebSearch()) {
getContext().startActivity(mVoiceWebSearchIntent);
} else if (mSearchable.getVoiceSearchLaunchRecognizer()) {
Intent appSearchIntent = createVoiceAppSearchIntent(mVoiceAppSearchIntent);
// Stop the existing search before starting voice search, or else we'll end
// up showing the search dialog again once we return to the app.
((SearchManager) getContext().getSystemService(Context.SEARCH_SERVICE)).
stopSearch();
Intent appSearchIntent = createVoiceAppSearchIntent(mVoiceAppSearchIntent);
getContext().startActivity(appSearchIntent);
}
} catch (ActivityNotFoundException e) {

View File

@@ -658,7 +658,14 @@ class SuggestionsAdapter extends ResourceCursorAdapter {
if (col == NONE) {
return null;
}
return cursor.getString(col);
try {
return cursor.getString(col);
} catch (Exception e) {
Log.e(LOG_TAG,
"unexpected error retrieving valid column from cursor, "
+ "did the remote process die?", e);
return null;
}
}
}

View File

@@ -141,7 +141,10 @@ public interface EventHandler {
* SSL certificate error callback. Handles SSL error(s) on the way
* up to the user. The callback has to make sure that restartConnection() is called,
* otherwise the connection will be suspended indefinitely.
* @return True if the callback can handle the error, which means it will
* call restartConnection() to unblock the thread later,
* otherwise return false.
*/
public void handleSslErrorRequest(SslError error);
public boolean handleSslErrorRequest(SslError error);
}

View File

@@ -323,7 +323,10 @@ public class HttpsConnection extends Connection {
mSuspended = true;
}
// don't hold the lock while calling out to the event handler
eventHandler.handleSslErrorRequest(error);
boolean canHandle = eventHandler.handleSslErrorRequest(error);
if(!canHandle) {
throw new IOException("failed to handle "+ error);
}
synchronized (mSuspendLock) {
if (mSuspended) {
try {

View File

@@ -82,9 +82,11 @@ public class LoggingEventHandler implements EventHandler {
}
}
public void handleSslErrorRequest(SslError error) {
public boolean handleSslErrorRequest(SslError error) {
if (HttpLog.LOGV) {
HttpLog.v("LoggingEventHandler: handleSslErrorRequest():" + error);
}
// return false so that the caller thread won't wait forever
return false;
}
}

View File

@@ -109,6 +109,11 @@ public final class Checkin {
SYSTEM_TOMBSTONE,
TEST,
BATTERY_DISCHARGE_INFO,
MARKET_DOWNLOAD,
MARKET_INSTALL,
MARKET_REMOVE,
MARKET_REFUND,
MARKET_UNINSTALL,
}
}
@@ -147,43 +152,6 @@ public final class Checkin {
TEST,
NETWORK_RX_MOBILE,
NETWORK_TX_MOBILE,
MARKET_DOWNLOAD_REQUESTED,
MARKET_DOWNLOAD_SCHEDULED,
MARKET_DOWNLOAD_CANCELLED_PENDING,
MARKET_DOWNLOAD_CANCELLED,
MARKET_DOWNLOAD_OK,
MARKET_DOWNLOAD_FAILED,
MARKET_DOWNLOAD_DECLINED,
MARKET_INSTALL_SCHEDULED,
MARKET_INSTALL_FAILED,
MARKET_INSTALL_OK,
MARKET_REMOVE_SCHEDULED,
MARKET_REMOVE_MALICIOUS_SCHEDULED,
MARKET_REMOVE_ABORTED,
MARKET_REMOVE_FAILED,
MARKET_REMOVE_OK,
MARKET_UNINSTALL_SCHEDULED,
MARKET_REFUND_REQUESTED,
MARKET_REFUND_OK,
MARKET_REFUND_FAILED,
MARKET_REASON_ALREADY_EXISTS,
MARKET_REASON_INVALID_APK,
MARKET_REASON_INSUFFICIENT_STORAGE,
MARKET_REASON_DUPLICATE_PACKAGE,
MARKET_REASON_UPDATE_INCOMPATIBLE,
MARKET_REASON_MISSING_SHARED_LIBRARY,
MARKET_REASON_REPLACE_COULDNT_DELETE,
MARKET_REASON_PARSE_NOT_APK,
MARKET_REASON_PARSE_BAD_MANIFEST,
MARKET_REASON_PARSE_NO_CERTIFICATES,
MARKET_REASON_PARSE_INCONSISTENT_CERTIFICATES,
MARKET_REASON_PARSE_CERTIFICATE_ENCODING,
MARKET_REASON_PARSE_BAD_PACKAGE_NAME,
MARKET_REASON_PARSE_BAD_SHARED_USER_ID,
MARKET_REASON_PARSE_MANIFEST_MALFORMED,
MARKET_REASON_PARSE_MANIFEST_EMPTY,
MARKET_REASON_UNKNOWN,
MARKET_STALE_INSTALL_ATTEMPT,
PHONE_CDMA_REGISTERED,
PHONE_CDMA_DATA_ATTEMPTED,
PHONE_CDMA_DATA_CONNECTED,

View File

@@ -139,7 +139,13 @@ class GearsPermissionsManager {
file = new File(file.getAbsolutePath() + File.separator
+ GEARS_DATABASE_DIR + File.separator + GEARS_DATABASE_FILE);
// Remember whether or not we need to create the LocationAccess table.
boolean needToCreateTables = !file.exists();
boolean needToCreateTables = false;
if (!file.exists()) {
needToCreateTables = true;
// Create the path or else SQLiteDatabase.openOrCreateDatabase()
// may throw on the device.
file.getParentFile().mkdirs();
}
// If the database file does not yet exist and the system location
// setting says that the Gears origins need to be removed from the
// location permission table, it means that we don't actually need

View File

@@ -106,6 +106,7 @@ class LoadListener extends Handler implements EventHandler {
private String mErrorDescription;
private SslError mSslError;
private RequestHandle mRequestHandle;
private RequestHandle mSslErrorRequestHandle;
// Request data. It is only valid when we are doing a load from the
// cache. It is needed if the cache returns a redirect
@@ -693,7 +694,7 @@ class LoadListener extends Handler implements EventHandler {
* IMPORTANT: as this is called from network thread, can't call native
* directly
*/
public void handleSslErrorRequest(SslError error) {
public boolean handleSslErrorRequest(SslError error) {
if (WebView.LOGV_ENABLED) {
Log.v(LOGTAG,
"LoadListener.handleSslErrorRequest(): url:" + url() +
@@ -701,6 +702,15 @@ class LoadListener extends Handler implements EventHandler {
" certificate: " + error.getCertificate());
}
sendMessageInternal(obtainMessage(MSG_SSL_ERROR, error));
// if it has been canceled, return false so that the network thread
// won't be blocked. If it is not canceled, save the mRequestHandle
// so that if it is canceled when MSG_SSL_ERROR is handled, we can
// still call handleSslErrorResponse which will call restartConnection
// to unblock the network thread.
if (!mCancelled) {
mSslErrorRequestHandle = mRequestHandle;
}
return !mCancelled;
}
// Handle the ssl error on the WebCore thread.
@@ -708,7 +718,10 @@ class LoadListener extends Handler implements EventHandler {
if (!mCancelled) {
mSslError = error;
Network.getInstance(mContext).handleSslErrorRequest(this);
} else if (mSslErrorRequestHandle != null) {
mSslErrorRequestHandle.handleSslErrorResponse(true);
}
mSslErrorRequestHandle = null;
}
/**

View File

@@ -199,6 +199,7 @@ public class WebSettings {
switch (msg.what) {
case SYNC:
synchronized (WebSettings.this) {
checkGearsPermissions();
if (mBrowserFrame.mNativeFrame != 0) {
nativeSync(mBrowserFrame.mNativeFrame);
}

View File

@@ -581,14 +581,14 @@ public class LockPatternView extends View {
mInProgressX = x;
mInProgressY = y;
if (mPatternInProgress) {
if (mPatternInProgress && patternSize > 0) {
final ArrayList<Cell> pattern = mPattern;
final float radius = mSquareWidth * mDiameterFactor * 0.5f;
Cell cell = pattern.get(patternSize - 1);
final Cell lastCell = pattern.get(patternSize - 1);
float startX = getCenterXForColumn(cell.column);
float startY = getCenterYForRow(cell.row);
float startX = getCenterXForColumn(lastCell.column);
float startY = getCenterYForRow(lastCell.row);
float left;
float top;

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -101,16 +101,16 @@
<string name="numeric_date_template">"%s. %s. %s."</string>
<string name="month_day_year">%Y년 %-m월 %-e일</string>
<string name="time_of_day">%p %-l:%M:%S</string>
<string name="date_and_time">%Y. %-m. %-e. %p %-l:%M:%S</string>
<string name="date_and_time">%Y %-m %-e %p %-l:%M:%S</string>
<string name="date_time">%1$s %2$s</string>
<string name="time_date">%3$s %1$s</string>
<string name="abbrev_month_day_year">%Y. %-m. %-e.</string>
<string name="abbrev_month_day_year">%Y %-m %-e</string>
<string name="month_day">%B %-e일</string>
<string name="month">%-B</string>
<string name="month_year">%Y년 %B</string>
<string name="abbrev_month_day">%-m. %-e.</string>
<string name="abbrev_month_day">%-m %-e</string>
<string name="abbrev_month">%-m월</string>
<string name="abbrev_month_year">%Y. %-m.</string>
<string name="abbrev_month_year">%Y %-m</string>
<string name="time1_time2">%1$s ~ %2$s</string>
<string name="date1_date2">%2$s ~ %5$s</string>
<string name="numeric_md1_md2">%2$s. %3$s ~ %7$s. %8$s</string>

File diff suppressed because it is too large Load Diff

View File

@@ -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">"nl_nl"</string>
<string name="locale_replacement" msgid="2972154133076909542">"nl_nl"</string>
</resources>

View File

@@ -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">"nl_nl"</string>
<string name="locale_replacement" msgid="2972154133076909542">"nl_nl"</string>
</resources>

View File

@@ -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">"nl_nl"</string>
<string name="locale_replacement" msgid="2972154133076909542">"nl_nl"</string>
</resources>

View File

@@ -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">"el_GR"</string>
<string name="locale_replacement" msgid="2972154133076909542">"el_GR"</string>
</resources>

View File

@@ -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">"nl_nl"</string>
<string name="locale_replacement" msgid="2972154133076909542">"nl_nl"</string>
</resources>

View File

@@ -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">"nl_nl"</string>
<string name="locale_replacement" msgid="2972154133076909542">"nl_nl"</string>
</resources>

View File

@@ -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">"nl_nl"</string>
<string name="locale_replacement" msgid="2972154133076909542">"nl_nl"</string>
</resources>

View File

@@ -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">"nl_nl"</string>
<string name="locale_replacement" msgid="2972154133076909542">"nl_nl"</string>
</resources>

View File

@@ -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">"nl_nl"</string>
<string name="locale_replacement" msgid="2972154133076909542">"nl_nl"</string>
</resources>

View File

@@ -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">"nl_nl"</string>
<string name="locale_replacement" msgid="2972154133076909542">"nl_nl"</string>
</resources>

View File

@@ -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">"nl_nl"</string>
<string name="locale_replacement" msgid="2972154133076909542">"nl_nl"</string>
</resources>

View File

@@ -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">"nl_nl"</string>
<string name="locale_replacement" msgid="2972154133076909542">"nl_nl"</string>
</resources>

View File

@@ -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">"nl_nl"</string>
<string name="locale_replacement" msgid="2972154133076909542">"nl_nl"</string>
</resources>

View File

@@ -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">"nl_nl"</string>
<string name="locale_replacement" msgid="2972154133076909542">"nl_nl"</string>
</resources>

View File

@@ -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">"nl_nl"</string>
<string name="locale_replacement" msgid="2972154133076909542">"nl_nl"</string>
</resources>

View File

@@ -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">"nl_nl"</string>
<string name="locale_replacement" msgid="2972154133076909542">"nl_nl"</string>
</resources>

View File

@@ -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">"nl_nl"</string>
<string name="locale_replacement" msgid="2972154133076909542">"nl_nl"</string>
</resources>

View File

@@ -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">"nl_nl"</string>
<string name="locale_replacement" msgid="2972154133076909542">"nl_nl"</string>
</resources>

View File

@@ -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">"nl_nl"</string>
<string name="locale_replacement" msgid="2972154133076909542">"nl_nl"</string>
</resources>

View File

@@ -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">"cs_cz"</string>
<string name="locale_replacement" msgid="9011721823833053909">"cs_cz"</string>
</resources>

View File

@@ -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">"cs_cz"</string>
<string name="locale_replacement" msgid="9011721823833053909">"cs_cz"</string>
</resources>

View File

@@ -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">"cs_cz"</string>
<string name="locale_replacement" msgid="9011721823833053909">"cs_cz"</string>
</resources>

View File

@@ -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">"el_GR"</string>
<string name="locale_replacement" msgid="9011721823833053909">"el_GR"</string>
</resources>

View File

@@ -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">"cs_cz"</string>
<string name="locale_replacement" msgid="9011721823833053909">"cs_cz"</string>
</resources>

View File

@@ -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">"cs_cz"</string>
<string name="locale_replacement" msgid="9011721823833053909">"cs_cz"</string>
</resources>

View File

@@ -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">"cs_cz"</string>
<string name="locale_replacement" msgid="9011721823833053909">"cs_cz"</string>
</resources>

View File

@@ -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">"cs_cz"</string>
<string name="locale_replacement" msgid="9011721823833053909">"cs_cz"</string>
</resources>

View File

@@ -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">"cs_cz"</string>
<string name="locale_replacement" msgid="9011721823833053909">"cs_cz"</string>
</resources>

View File

@@ -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">"cs_cz"</string>
<string name="locale_replacement" msgid="9011721823833053909">"cs_cz"</string>
</resources>

View File

@@ -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">"cs_cz"</string>
<string name="locale_replacement" msgid="9011721823833053909">"cs_cz"</string>
</resources>

View File

@@ -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">"cs_cz"</string>
<string name="locale_replacement" msgid="9011721823833053909">"cs_cz"</string>
</resources>

View File

@@ -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">"cs_cz"</string>
<string name="locale_replacement" msgid="9011721823833053909">"cs_cz"</string>
</resources>

View File

@@ -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">"cs_cz"</string>
<string name="locale_replacement" msgid="9011721823833053909">"cs_cz"</string>
</resources>

View File

@@ -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">"cs_cz"</string>
<string name="locale_replacement" msgid="9011721823833053909">"cs_cz"</string>
</resources>

View File

@@ -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">"cs_cz"</string>
<string name="locale_replacement" msgid="9011721823833053909">"cs_cz"</string>
</resources>

View File

@@ -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">"cs_cz"</string>
<string name="locale_replacement" msgid="9011721823833053909">"cs_cz"</string>
</resources>

View File

@@ -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">"cs_cz"</string>
<string name="locale_replacement" msgid="9011721823833053909">"cs_cz"</string>
</resources>

View File

@@ -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">"cs_cz"</string>
<string name="locale_replacement" msgid="9011721823833053909">"cs_cz"</string>
</resources>

View File

@@ -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">"de_at"</string>
<string name="locale_replacement" msgid="166900303893651370">"de_at"</string>
</resources>

View File

@@ -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">"de_at"</string>
<string name="locale_replacement" msgid="166900303893651370">"de_at"</string>
</resources>

View File

@@ -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">"de_at"</string>
<string name="locale_replacement" msgid="166900303893651370">"de_at"</string>
</resources>

View File

@@ -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">"el_GR"</string>
<string name="locale_replacement" msgid="166900303893651370">"el_GR"</string>
</resources>

View File

@@ -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">"de_at"</string>
<string name="locale_replacement" msgid="166900303893651370">"de_at"</string>
</resources>

View File

@@ -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">"de_at"</string>
<string name="locale_replacement" msgid="166900303893651370">"de_at"</string>
</resources>

View File

@@ -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">"de_at"</string>
<string name="locale_replacement" msgid="166900303893651370">"de_at"</string>
</resources>

View File

@@ -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">"de_at"</string>
<string name="locale_replacement" msgid="166900303893651370">"de_at"</string>
</resources>

View File

@@ -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">"de_at"</string>
<string name="locale_replacement" msgid="166900303893651370">"de_at"</string>
</resources>

View File

@@ -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">"de_at"</string>
<string name="locale_replacement" msgid="166900303893651370">"de_at"</string>
</resources>

View File

@@ -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">"de_at"</string>
<string name="locale_replacement" msgid="166900303893651370">"de_at"</string>
</resources>

View File

@@ -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">"de_at"</string>
<string name="locale_replacement" msgid="166900303893651370">"de_at"</string>
</resources>

View File

@@ -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">"de_at"</string>
<string name="locale_replacement" msgid="166900303893651370">"de_at"</string>
</resources>

View File

@@ -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">"de_at"</string>
<string name="locale_replacement" msgid="166900303893651370">"de_at"</string>
</resources>

View File

@@ -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">"de_at"</string>
<string name="locale_replacement" msgid="166900303893651370">"de_at"</string>
</resources>

View File

@@ -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">"de_at"</string>
<string name="locale_replacement" msgid="166900303893651370">"de_at"</string>
</resources>

View File

@@ -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">"de_at"</string>
<string name="locale_replacement" msgid="166900303893651370">"de_at"</string>
</resources>

View File

@@ -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">"de_at"</string>
<string name="locale_replacement" msgid="166900303893651370">"de_at"</string>
</resources>

View File

@@ -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">"de_at"</string>
<string name="locale_replacement" msgid="166900303893651370">"de_at"</string>
</resources>

View File

@@ -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">"en_gb"</string>
<string name="locale_replacement" msgid="233769627858930762">"en_gb"</string>
</resources>

View File

@@ -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">"en_gb"</string>
<string name="locale_replacement" msgid="233769627858930762">"en_gb"</string>
</resources>

View File

@@ -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">"en_gb"</string>
<string name="locale_replacement" msgid="233769627858930762">"en_gb"</string>
</resources>

View File

@@ -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">"el_GR"</string>
<string name="locale_replacement" msgid="233769627858930762">"el_GR"</string>
</resources>

View File

@@ -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">"en_gb"</string>
<string name="locale_replacement" msgid="233769627858930762">"en_gb"</string>
</resources>

View File

@@ -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">"en_gb"</string>
<string name="locale_replacement" msgid="233769627858930762">"en_gb"</string>
</resources>

View File

@@ -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">"en_gb"</string>
<string name="locale_replacement" msgid="233769627858930762">"en_gb"</string>
</resources>

View File

@@ -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">"en_gb"</string>
<string name="locale_replacement" msgid="233769627858930762">"en_gb"</string>
</resources>

View File

@@ -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">"en_gb"</string>
<string name="locale_replacement" msgid="233769627858930762">"en_gb"</string>
</resources>

View File

@@ -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">"en_gb"</string>
<string name="locale_replacement" msgid="233769627858930762">"en_gb"</string>
</resources>

View File

@@ -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">"en_gb"</string>
<string name="locale_replacement" msgid="233769627858930762">"en_gb"</string>
</resources>

View File

@@ -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">"en_gb"</string>
<string name="locale_replacement" msgid="233769627858930762">"en_gb"</string>
</resources>

View File

@@ -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">"en_gb"</string>
<string name="locale_replacement" msgid="233769627858930762">"en_gb"</string>
</resources>

View File

@@ -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">"en_gb"</string>
<string name="locale_replacement" msgid="233769627858930762">"en_gb"</string>
</resources>

View File

@@ -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">"en_gb"</string>
<string name="locale_replacement" msgid="233769627858930762">"en_gb"</string>
</resources>

View File

@@ -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">"en_gb"</string>
<string name="locale_replacement" msgid="233769627858930762">"en_gb"</string>
</resources>

View File

@@ -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">"en_gb"</string>
<string name="locale_replacement" msgid="233769627858930762">"en_gb"</string>
</resources>

View File

@@ -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">"en_gb"</string>
<string name="locale_replacement" msgid="233769627858930762">"en_gb"</string>
</resources>

View File

@@ -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">"en_gb"</string>
<string name="locale_replacement" msgid="233769627858930762">"en_gb"</string>
</resources>

View File

@@ -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">"pl_pl"</string>
<string name="locale_replacement" msgid="6306793451973344945">"pl_pl"</string>
</resources>

Some files were not shown because too many files have changed in this diff Show More