merged ub-launcher3-dorval-polish2, and resolved conflicts
am: 9623a6f891
Change-Id: I0eb34275308647e8021c452d59a8c93c57b14ea4
This commit is contained in:
+57
-5
@@ -17,7 +17,7 @@
|
||||
LOCAL_PATH := $(call my-dir)
|
||||
|
||||
#
|
||||
# Build app code.
|
||||
# Build rule for Launcher3 app.
|
||||
#
|
||||
include $(CLEAR_VARS)
|
||||
|
||||
@@ -33,7 +33,8 @@ LOCAL_SRC_FILES := \
|
||||
$(call all-java-files-under, src) \
|
||||
$(call all-java-files-under, src_config) \
|
||||
$(call all-java-files-under, src_flags) \
|
||||
$(call all-proto-files-under, protos)
|
||||
$(call all-proto-files-under, protos) \
|
||||
$(call all-proto-files-under, proto_overrides)
|
||||
|
||||
LOCAL_RESOURCE_DIR := \
|
||||
$(LOCAL_PATH)/res \
|
||||
@@ -42,7 +43,7 @@ LOCAL_RESOURCE_DIR := \
|
||||
LOCAL_PROGUARD_FLAG_FILES := proguard.flags
|
||||
|
||||
LOCAL_PROTOC_OPTIMIZE_TYPE := nano
|
||||
LOCAL_PROTOC_FLAGS := --proto_path=$(LOCAL_PATH)/protos/
|
||||
LOCAL_PROTOC_FLAGS := --proto_path=$(LOCAL_PATH)/protos/ --proto_path=$(LOCAL_PATH)/proto_overrides/
|
||||
LOCAL_PROTO_JAVA_OUTPUT_PARAMS := enum_style=java
|
||||
|
||||
LOCAL_AAPT_FLAGS := \
|
||||
@@ -61,15 +62,66 @@ LOCAL_JACK_COVERAGE_INCLUDE_FILTER := com.android.launcher3.*
|
||||
|
||||
include $(BUILD_PACKAGE)
|
||||
|
||||
#
|
||||
# Build rule for Launcher3 Go app for Android Go devices.
|
||||
#
|
||||
include $(CLEAR_VARS)
|
||||
|
||||
LOCAL_MODULE_TAGS := optional
|
||||
|
||||
LOCAL_STATIC_JAVA_LIBRARIES := \
|
||||
android-support-v4 \
|
||||
android-support-v7-recyclerview \
|
||||
android-support-v7-palette \
|
||||
android-support-dynamic-animation
|
||||
|
||||
LOCAL_SRC_FILES := \
|
||||
$(call all-java-files-under, src) \
|
||||
$(call all-java-files-under, src_config) \
|
||||
$(call all-java-files-under, go/src_flags) \
|
||||
$(call all-proto-files-under, protos) \
|
||||
$(call all-proto-files-under, proto_overrides)
|
||||
|
||||
LOCAL_RESOURCE_DIR := \
|
||||
$(LOCAL_PATH)/go/res \
|
||||
$(LOCAL_PATH)/res \
|
||||
prebuilts/sdk/current/support/v7/recyclerview/res \
|
||||
|
||||
LOCAL_PROGUARD_FLAG_FILES := proguard.flags
|
||||
|
||||
LOCAL_PROTOC_OPTIMIZE_TYPE := nano
|
||||
LOCAL_PROTOC_FLAGS := --proto_path=$(LOCAL_PATH)/protos/ --proto_path=$(LOCAL_PATH)/proto_overrides/
|
||||
LOCAL_PROTO_JAVA_OUTPUT_PARAMS := enum_style=java
|
||||
|
||||
LOCAL_AAPT_FLAGS := \
|
||||
--auto-add-overlay \
|
||||
--extra-packages android.support.v7.recyclerview \
|
||||
|
||||
LOCAL_SDK_VERSION := current
|
||||
LOCAL_MIN_SDK_VERSION := 21
|
||||
LOCAL_PACKAGE_NAME := Launcher3Go
|
||||
LOCAL_PRIVILEGED_MODULE := true
|
||||
LOCAL_OVERRIDES_PACKAGES := Home Launcher2 Launcher3
|
||||
|
||||
LOCAL_FULL_LIBS_MANIFEST_FILES := \
|
||||
$(LOCAL_PATH)/AndroidManifest.xml \
|
||||
$(LOCAL_PATH)/AndroidManifest-common.xml
|
||||
|
||||
LOCAL_MANIFEST_FILE := go/AndroidManifest.xml
|
||||
|
||||
LOCAL_JACK_COVERAGE_INCLUDE_FILTER := com.android.launcher3.*
|
||||
|
||||
include $(BUILD_PACKAGE)
|
||||
|
||||
#
|
||||
# Launcher proto buffer jar used for development
|
||||
#
|
||||
include $(CLEAR_VARS)
|
||||
|
||||
LOCAL_SRC_FILES := $(call all-proto-files-under, protos)
|
||||
LOCAL_SRC_FILES := $(call all-proto-files-under, protos) $(call all-proto-files-under, proto_overrides)
|
||||
|
||||
LOCAL_PROTOC_OPTIMIZE_TYPE := nano
|
||||
LOCAL_PROTOC_FLAGS := --proto_path=$(LOCAL_PATH)/protos/
|
||||
LOCAL_PROTOC_FLAGS := --proto_path=$(LOCAL_PATH)/protos/ --proto_path=$(LOCAL_PATH)/proto_overrides/
|
||||
LOCAL_PROTO_JAVA_OUTPUT_PARAMS := enum_style=java
|
||||
|
||||
LOCAL_MODULE_TAGS := optional
|
||||
|
||||
+27
-5
@@ -35,28 +35,49 @@ android {
|
||||
applicationId 'com.android.launcher3'
|
||||
testApplicationId 'com.android.launcher3.tests'
|
||||
}
|
||||
|
||||
l3go {
|
||||
applicationId 'com.android.launcher3'
|
||||
testApplicationId 'com.android.launcher3.tests'
|
||||
}
|
||||
}
|
||||
sourceSets {
|
||||
main {
|
||||
res.srcDirs = ['res']
|
||||
java.srcDirs = ['src', 'src_flags']
|
||||
java.srcDirs = ['src']
|
||||
manifest.srcFile 'AndroidManifest-common.xml'
|
||||
proto.srcDirs 'protos/'
|
||||
proto {
|
||||
srcDir 'protos/'
|
||||
srcDir 'proto_overrides/'
|
||||
}
|
||||
}
|
||||
|
||||
androidTest {
|
||||
java.srcDirs = ['tests/src']
|
||||
res.srcDirs = ['tests/res']
|
||||
java.srcDirs = ['tests/src']
|
||||
manifest.srcFile "tests/AndroidManifest-common.xml"
|
||||
}
|
||||
|
||||
aosp {
|
||||
java.srcDirs = ['src_flags']
|
||||
manifest.srcFile "AndroidManifest.xml"
|
||||
}
|
||||
|
||||
aospAndroidTest {
|
||||
manifest.srcFile "tests/AndroidManifest.xml"
|
||||
}
|
||||
|
||||
l3go {
|
||||
res.srcDirs = ['go/res']
|
||||
java.srcDirs = ['go/src_flags']
|
||||
// Note: we are using the Launcher3 manifest here because the gradle manifest-merger uses
|
||||
// different attributes than the build system.
|
||||
manifest.srcFile "AndroidManifest.xml"
|
||||
}
|
||||
|
||||
l3goAndroidTest {
|
||||
manifest.srcFile "tests/AndroidManifest.xml"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -71,10 +92,10 @@ dependencies {
|
||||
compile "com.android.support:support-dynamic-animation:${SUPPORT_LIBS_VERSION}"
|
||||
compile "com.android.support:recyclerview-v7:${SUPPORT_LIBS_VERSION}"
|
||||
compile "com.android.support:palette-v7:${SUPPORT_LIBS_VERSION}"
|
||||
compile 'com.google.protobuf.nano:protobuf-javanano:3.0.0-alpha-2'
|
||||
compile 'com.google.protobuf.nano:protobuf-javanano:3.0.0-alpha-7'
|
||||
|
||||
testCompile 'junit:junit:4.12'
|
||||
androidTestCompile "org.mockito:mockito-core:1.+"
|
||||
androidTestCompile "org.mockito:mockito-core:1.9.5"
|
||||
androidTestCompile 'com.google.dexmaker:dexmaker:1.2'
|
||||
androidTestCompile 'com.google.dexmaker:dexmaker-mockito:1.2'
|
||||
androidTestCompile 'com.android.support.test:runner:0.5'
|
||||
@@ -92,6 +113,7 @@ protobuf {
|
||||
task.builtins {
|
||||
remove java
|
||||
javanano {
|
||||
option "java_package=launcher_log_extension.proto|com.android.launcher3.userevent.nano"
|
||||
option "java_package=launcher_log.proto|com.android.launcher3.userevent.nano"
|
||||
option "java_package=launcher_dump.proto|com.android.launcher3.model.nano"
|
||||
option "enum_style=java"
|
||||
|
||||
@@ -0,0 +1,53 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
/*
|
||||
**
|
||||
** Copyright 2017, 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.
|
||||
*/
|
||||
-->
|
||||
<manifest
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
package="com.android.launcher3" >
|
||||
|
||||
<uses-sdk android:targetSdkVersion="23" android:minSdkVersion="21"/>
|
||||
|
||||
<application
|
||||
android:backupAgent="com.android.launcher3.LauncherBackupAgent"
|
||||
android:fullBackupOnly="true"
|
||||
android:fullBackupContent="@xml/backupscheme"
|
||||
android:hardwareAccelerated="true"
|
||||
android:icon="@drawable/ic_launcher_home"
|
||||
android:label="@string/derived_app_name"
|
||||
android:theme="@style/LauncherTheme"
|
||||
android:largeHeap="@bool/config_largeHeap"
|
||||
android:restoreAnyVersion="true"
|
||||
android:supportsRtl="true" >
|
||||
|
||||
<!-- Activity for handling PinItemRequest. Only supports shortcuts -->
|
||||
<activity android:name="com.android.launcher3.dragndrop.AddItemActivity"
|
||||
android:theme="@android:style/Theme.DeviceDefault.Light.Dialog.Alert"
|
||||
android:excludeFromRecents="true"
|
||||
android:autoRemoveFromRecents="true"
|
||||
android:label="@string/action_add_to_workspace"
|
||||
tools:merge="override" >
|
||||
<intent-filter>
|
||||
<action android:name="android.content.pm.action.CONFIRM_PIN_SHORTCUT" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
|
||||
</application>
|
||||
|
||||
</manifest>
|
||||
@@ -0,0 +1,66 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2017 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.
|
||||
-->
|
||||
<merge xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content">
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:paddingTop="@dimen/widget_preview_label_vertical_padding"
|
||||
android:paddingBottom="@dimen/widget_preview_label_vertical_padding"
|
||||
android:paddingLeft="@dimen/widget_preview_label_horizontal_padding"
|
||||
android:paddingRight="@dimen/widget_preview_label_horizontal_padding"
|
||||
android:orientation="horizontal">
|
||||
|
||||
<!-- The name of the widget. -->
|
||||
<TextView
|
||||
android:id="@+id/widget_name"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_weight="1"
|
||||
android:ellipsize="end"
|
||||
android:fadingEdge="horizontal"
|
||||
android:fontFamily="sans-serif-condensed"
|
||||
android:gravity="center"
|
||||
android:singleLine="true"
|
||||
android:maxLines="1"
|
||||
android:textColor="?android:attr/textColorSecondary"
|
||||
android:textSize="14sp" />
|
||||
|
||||
<!-- The original dimensions of the widget (can't be the same text as above due to different
|
||||
style. -->
|
||||
<TextView
|
||||
android:id="@+id/widget_dims"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginStart="5dp"
|
||||
android:layout_marginLeft="5dp"
|
||||
android:visibility="gone"
|
||||
android:textColor="?android:attr/textColorSecondary"
|
||||
android:textSize="14sp"
|
||||
android:fontFamily="sans-serif-condensed"
|
||||
android:alpha="0.8" />
|
||||
</LinearLayout>
|
||||
|
||||
<!-- The image of the widget. This view does not support padding. Any placement adjustment
|
||||
should be done using margins. -->
|
||||
<com.android.launcher3.widget.WidgetImageView
|
||||
android:id="@+id/widget_preview"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="0dp"
|
||||
android:layout_weight="1" />
|
||||
</merge>
|
||||
@@ -0,0 +1,26 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!--
|
||||
/*
|
||||
* Copyright (C) 2017 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="long_press_widget_to_add" msgid="4001616142797446267">"Raak en hou om \'n kortpad op te tel."</string>
|
||||
<string name="long_accessible_way_to_add" msgid="2725225828389948328">"Dubbeltik en hou om \'n kortpad op te tel of gebruik gepasmaakte handelinge."</string>
|
||||
<string name="widget_button_text" msgid="4221900832360456858">"Kortpaaie"</string>
|
||||
<string name="widgets_bottom_sheet_title" msgid="3949835990909395998">"<xliff:g id="NAME">%1$s</xliff:g>-kortpaaie"</string>
|
||||
</resources>
|
||||
@@ -0,0 +1,26 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!--
|
||||
/*
|
||||
* Copyright (C) 2017 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="long_press_widget_to_add" msgid="4001616142797446267">"አንድ አቋራጭ ለመውሰድ ነክተው ይያዙ"</string>
|
||||
<string name="long_accessible_way_to_add" msgid="2725225828389948328">"አንድ አቋራጭ ለመውሰድ ወይም ብጁ እርምጃዎችን ለመጠቀም ሁለቴ መታ አድርገው ይያዙ።"</string>
|
||||
<string name="widget_button_text" msgid="4221900832360456858">"አቋራጮች"</string>
|
||||
<string name="widgets_bottom_sheet_title" msgid="3949835990909395998">"<xliff:g id="NAME">%1$s</xliff:g> አቋራጮች"</string>
|
||||
</resources>
|
||||
@@ -0,0 +1,26 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!--
|
||||
/*
|
||||
* Copyright (C) 2017 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="long_press_widget_to_add" msgid="4001616142797446267">"المس مع الاستمرار لاختيار اختصار."</string>
|
||||
<string name="long_accessible_way_to_add" msgid="2725225828389948328">"يمكنك النقر نقرًا مزدوجًا مع الاستمرار لاختيار اختصار أو استخدام الإجراءات المخصصة."</string>
|
||||
<string name="widget_button_text" msgid="4221900832360456858">"الاختصارات"</string>
|
||||
<string name="widgets_bottom_sheet_title" msgid="3949835990909395998">"اختصارات <xliff:g id="NAME">%1$s</xliff:g>"</string>
|
||||
</resources>
|
||||
@@ -0,0 +1,26 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!--
|
||||
/*
|
||||
* Copyright (C) 2017 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="long_press_widget_to_add" msgid="4001616142797446267">"Qısayolu seçmək üçün toxunub saxlayın."</string>
|
||||
<string name="long_accessible_way_to_add" msgid="2725225828389948328">"Qısayolu seçmək üçün iki dəfə basıb saxlayın və ya fərdi əməliyyatlardan istifadə edin."</string>
|
||||
<string name="widget_button_text" msgid="4221900832360456858">"Qısayollar"</string>
|
||||
<string name="widgets_bottom_sheet_title" msgid="3949835990909395998">"<xliff:g id="NAME">%1$s</xliff:g> qısayolları"</string>
|
||||
</resources>
|
||||
@@ -0,0 +1,26 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!--
|
||||
/*
|
||||
* Copyright (C) 2017 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="long_press_widget_to_add" msgid="4001616142797446267">"Dodirnite i zadržite da biste izabrali prečicu."</string>
|
||||
<string name="long_accessible_way_to_add" msgid="2725225828389948328">"Dvaput dodirnite i zadržite da biste izabrali prečicu ili koristite prilagođene radnje."</string>
|
||||
<string name="widget_button_text" msgid="4221900832360456858">"Prečice"</string>
|
||||
<string name="widgets_bottom_sheet_title" msgid="3949835990909395998">"Prečice za <xliff:g id="NAME">%1$s</xliff:g>"</string>
|
||||
</resources>
|
||||
@@ -0,0 +1,26 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!--
|
||||
/*
|
||||
* Copyright (C) 2017 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="long_press_widget_to_add" msgid="4001616142797446267">"Dodirnite i držite da uzmete prečicu."</string>
|
||||
<string name="long_accessible_way_to_add" msgid="2725225828389948328">"Dvaput dodirnite i držite da uzmete prečicu ili koristite prilagođene akcije."</string>
|
||||
<string name="widget_button_text" msgid="4221900832360456858">"Prečice"</string>
|
||||
<string name="widgets_bottom_sheet_title" msgid="3949835990909395998">"Prečice aplikacije <xliff:g id="NAME">%1$s</xliff:g>"</string>
|
||||
</resources>
|
||||
@@ -0,0 +1,26 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!--
|
||||
/*
|
||||
* Copyright (C) 2017 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="long_press_widget_to_add" msgid="4001616142797446267">"Hold en genvej nede for at samle den op."</string>
|
||||
<string name="long_accessible_way_to_add" msgid="2725225828389948328">"Tryk to gange, og hold en genvej nede for at samle den op og bruge tilpassede handlinger."</string>
|
||||
<string name="widget_button_text" msgid="4221900832360456858">"Genveje"</string>
|
||||
<string name="widgets_bottom_sheet_title" msgid="3949835990909395998">"<xliff:g id="NAME">%1$s</xliff:g>-genveje"</string>
|
||||
</resources>
|
||||
@@ -0,0 +1,26 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!--
|
||||
/*
|
||||
* Copyright (C) 2017 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="long_press_widget_to_add" msgid="4001616142797446267">"Touch & hold to pick up a shortcut."</string>
|
||||
<string name="long_accessible_way_to_add" msgid="2725225828389948328">"Double-tap & hold to pick up a shortcut or use custom actions."</string>
|
||||
<string name="widget_button_text" msgid="4221900832360456858">"Shortcuts"</string>
|
||||
<string name="widgets_bottom_sheet_title" msgid="3949835990909395998">"<xliff:g id="NAME">%1$s</xliff:g> shortcuts"</string>
|
||||
</resources>
|
||||
@@ -0,0 +1,26 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!--
|
||||
/*
|
||||
* Copyright (C) 2017 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="long_press_widget_to_add" msgid="4001616142797446267">"Touch & hold to pick up a shortcut."</string>
|
||||
<string name="long_accessible_way_to_add" msgid="2725225828389948328">"Double-tap & hold to pick up a shortcut or use custom actions."</string>
|
||||
<string name="widget_button_text" msgid="4221900832360456858">"Shortcuts"</string>
|
||||
<string name="widgets_bottom_sheet_title" msgid="3949835990909395998">"<xliff:g id="NAME">%1$s</xliff:g> shortcuts"</string>
|
||||
</resources>
|
||||
@@ -0,0 +1,26 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!--
|
||||
/*
|
||||
* Copyright (C) 2017 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="long_press_widget_to_add" msgid="4001616142797446267">"Touch & hold to pick up a shortcut."</string>
|
||||
<string name="long_accessible_way_to_add" msgid="2725225828389948328">"Double-tap & hold to pick up a shortcut or use custom actions."</string>
|
||||
<string name="widget_button_text" msgid="4221900832360456858">"Shortcuts"</string>
|
||||
<string name="widgets_bottom_sheet_title" msgid="3949835990909395998">"<xliff:g id="NAME">%1$s</xliff:g> shortcuts"</string>
|
||||
</resources>
|
||||
@@ -0,0 +1,26 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!--
|
||||
/*
|
||||
* Copyright (C) 2017 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="long_press_widget_to_add" msgid="4001616142797446267">"برای انتخاب یک میانبر، لمس کنید و نگهدارید."</string>
|
||||
<string name="long_accessible_way_to_add" msgid="2725225828389948328">"برای انتخاب یک میانبر، دو ضربه سریع بزنید و نگهدارید یا از اقدامهای سفارشی استفاده کنید."</string>
|
||||
<string name="widget_button_text" msgid="4221900832360456858">"میانبرها"</string>
|
||||
<string name="widgets_bottom_sheet_title" msgid="3949835990909395998">"میانبرهای <xliff:g id="NAME">%1$s</xliff:g>"</string>
|
||||
</resources>
|
||||
@@ -0,0 +1,26 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!--
|
||||
/*
|
||||
* Copyright (C) 2017 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="long_press_widget_to_add" msgid="4001616142797446267">"Dodirnite i zadržite kako biste podigli prečac."</string>
|
||||
<string name="long_accessible_way_to_add" msgid="2725225828389948328">"Dvaput dodirnite i zadržite pritisak kako biste podigli prečac ili pokušajte prilagođenim radnjama."</string>
|
||||
<string name="widget_button_text" msgid="4221900832360456858">"Prečaci"</string>
|
||||
<string name="widgets_bottom_sheet_title" msgid="3949835990909395998">"Prečaci za aplikaciju <xliff:g id="NAME">%1$s</xliff:g>"</string>
|
||||
</resources>
|
||||
@@ -0,0 +1,26 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!--
|
||||
/*
|
||||
* Copyright (C) 2017 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="long_press_widget_to_add" msgid="4001616142797446267">"Tap lama untuk memilih pintasan."</string>
|
||||
<string name="long_accessible_way_to_add" msgid="2725225828389948328">"Tap dua kali & tahan untuk memilih pintasan atau menggunakan tindakan khusus."</string>
|
||||
<string name="widget_button_text" msgid="4221900832360456858">"Pintasan"</string>
|
||||
<string name="widgets_bottom_sheet_title" msgid="3949835990909395998">"Pintasan <xliff:g id="NAME">%1$s</xliff:g>"</string>
|
||||
</resources>
|
||||
@@ -0,0 +1,26 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!--
|
||||
/*
|
||||
* Copyright (C) 2017 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="long_press_widget_to_add" msgid="4001616142797446267">"Tocca e tieni premuto per scegliere la scorciatoia"</string>
|
||||
<string name="long_accessible_way_to_add" msgid="2725225828389948328">"Tocca due volte e tieni premuto per scegliere una scorciatoia o per usare azioni personalizzate."</string>
|
||||
<string name="widget_button_text" msgid="4221900832360456858">"Scorciatoie"</string>
|
||||
<string name="widgets_bottom_sheet_title" msgid="3949835990909395998">"Scorciatoie di <xliff:g id="NAME">%1$s</xliff:g>"</string>
|
||||
</resources>
|
||||
@@ -0,0 +1,26 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!--
|
||||
/*
|
||||
* Copyright (C) 2017 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="long_press_widget_to_add" msgid="4001616142797446267">"ショートカットを追加するには押し続けます。"</string>
|
||||
<string name="long_accessible_way_to_add" msgid="2725225828389948328">"ダブルタップ後に押し続けてショートカットを選択するか、カスタム操作を使用してください。"</string>
|
||||
<string name="widget_button_text" msgid="4221900832360456858">"ショートカット"</string>
|
||||
<string name="widgets_bottom_sheet_title" msgid="3949835990909395998">"「<xliff:g id="NAME">%1$s</xliff:g>」のショートカット"</string>
|
||||
</resources>
|
||||
@@ -0,0 +1,26 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!--
|
||||
/*
|
||||
* Copyright (C) 2017 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="long_press_widget_to_add" msgid="4001616142797446267">"შეეხეთ და დააყოვნეთ მალსახმობის ასარჩევად."</string>
|
||||
<string name="long_accessible_way_to_add" msgid="2725225828389948328">"ორმაგად შეეხეთ და გეჭიროთ მალსახმობის ასარჩევად ან მორგებული მოქმედებების გამოსაყენებლად."</string>
|
||||
<string name="widget_button_text" msgid="4221900832360456858">"მალსახმობები"</string>
|
||||
<string name="widgets_bottom_sheet_title" msgid="3949835990909395998">"<xliff:g id="NAME">%1$s</xliff:g>-ის მალსახმობები"</string>
|
||||
</resources>
|
||||
@@ -0,0 +1,26 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!--
|
||||
/*
|
||||
* Copyright (C) 2017 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="long_press_widget_to_add" msgid="4001616142797446267">"Кыска жолду тандоо үчүн басып туруңуз."</string>
|
||||
<string name="long_accessible_way_to_add" msgid="2725225828389948328">"Кыска жолду тандоо үчүн эки жолу таптап, кармап туруңуз же ыңгайлаштырылган аракеттерди колдонуңуз."</string>
|
||||
<string name="widget_button_text" msgid="4221900832360456858">"Кыска жолдор"</string>
|
||||
<string name="widgets_bottom_sheet_title" msgid="3949835990909395998">"<xliff:g id="NAME">%1$s</xliff:g> кыска жол"</string>
|
||||
</resources>
|
||||
@@ -0,0 +1,26 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!--
|
||||
/*
|
||||
* Copyright (C) 2017 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="long_press_widget_to_add" msgid="4001616142797446267">"ແຕະຄ້າງໄວ້ເພື່ອຮັບປຸ່ມລັດ."</string>
|
||||
<string name="long_accessible_way_to_add" msgid="2725225828389948328">"ແຕະສອງເທື່ອຄ້າງໄວ້ເພື່ອຮັບປຸ່ມລັດ ຫຼື ໃຊ້ຄຳສັ່ງແບບກຳນົດເອງ."</string>
|
||||
<string name="widget_button_text" msgid="4221900832360456858">"ປຸ່ມລັດ"</string>
|
||||
<string name="widgets_bottom_sheet_title" msgid="3949835990909395998">"ປຸ່ມລັດ <xliff:g id="NAME">%1$s</xliff:g>"</string>
|
||||
</resources>
|
||||
@@ -0,0 +1,26 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!--
|
||||
/*
|
||||
* Copyright (C) 2017 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="long_press_widget_to_add" msgid="4001616142797446267">"Dukart pal. ir palaik., kad pasir. spart. klav."</string>
|
||||
<string name="long_accessible_way_to_add" msgid="2725225828389948328">"Dukart palieskite ir palaikykite, kad pasirinkt. spartųjį klavišą ar naudotumėte tinkintus veiksmus."</string>
|
||||
<string name="widget_button_text" msgid="4221900832360456858">"Spartieji klavišai"</string>
|
||||
<string name="widgets_bottom_sheet_title" msgid="3949835990909395998">"„<xliff:g id="NAME">%1$s</xliff:g>“ spartieji klavišai"</string>
|
||||
</resources>
|
||||
@@ -0,0 +1,26 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!--
|
||||
/*
|
||||
* Copyright (C) 2017 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="long_press_widget_to_add" msgid="4001616142797446267">"Tik en houd vast om snelkoppeling toe te voegen."</string>
|
||||
<string name="long_accessible_way_to_add" msgid="2725225828389948328">"Dubbeltik en houd vast om een snelkoppeling toe te voegen of aangepaste acties te gebruiken."</string>
|
||||
<string name="widget_button_text" msgid="4221900832360456858">"Snelkoppelingen"</string>
|
||||
<string name="widgets_bottom_sheet_title" msgid="3949835990909395998">"<xliff:g id="NAME">%1$s</xliff:g>-snelkoppelingen"</string>
|
||||
</resources>
|
||||
@@ -0,0 +1,26 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!--
|
||||
/*
|
||||
* Copyright (C) 2017 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="long_press_widget_to_add" msgid="4001616142797446267">"Kliknij i przytrzymaj, by wybrać skrót."</string>
|
||||
<string name="long_accessible_way_to_add" msgid="2725225828389948328">"Kliknij dwukrotnie i przytrzymaj, by wybrać skrót lub użyć działań niestandardowych."</string>
|
||||
<string name="widget_button_text" msgid="4221900832360456858">"Skróty"</string>
|
||||
<string name="widgets_bottom_sheet_title" msgid="3949835990909395998">"<xliff:g id="NAME">%1$s</xliff:g> – skróty"</string>
|
||||
</resources>
|
||||
@@ -0,0 +1,26 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!--
|
||||
/*
|
||||
* Copyright (C) 2017 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="long_press_widget_to_add" msgid="4001616142797446267">"Toque sem soltar para escolher um atalho."</string>
|
||||
<string name="long_accessible_way_to_add" msgid="2725225828389948328">"Toque duas vezes sem soltar para escolher um atalho ou utilize ações personalizadas."</string>
|
||||
<string name="widget_button_text" msgid="4221900832360456858">"Atalhos"</string>
|
||||
<string name="widgets_bottom_sheet_title" msgid="3949835990909395998">"Atalhos da aplicação <xliff:g id="NAME">%1$s</xliff:g>"</string>
|
||||
</resources>
|
||||
@@ -0,0 +1,26 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!--
|
||||
/*
|
||||
* Copyright (C) 2017 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="long_press_widget_to_add" msgid="4001616142797446267">"Toque e segure para selecionar um atalho."</string>
|
||||
<string name="long_accessible_way_to_add" msgid="2725225828389948328">"Toque duas vezes na tela e segure para selecionar um atalho ou usar ações personalizadas."</string>
|
||||
<string name="widget_button_text" msgid="4221900832360456858">"Atalhos"</string>
|
||||
<string name="widgets_bottom_sheet_title" msgid="3949835990909395998">"Atalhos do app <xliff:g id="NAME">%1$s</xliff:g>"</string>
|
||||
</resources>
|
||||
@@ -0,0 +1,26 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!--
|
||||
/*
|
||||
* Copyright (C) 2017 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="long_press_widget_to_add" msgid="4001616142797446267">"කෙටි මගක් තෝරා ගැනීමට ස්පර්ශ කර අල්ලාගෙන සිටින්න."</string>
|
||||
<string name="long_accessible_way_to_add" msgid="2725225828389948328">"විජට් එකක් තෝරා ගැනීමට හෝ අභිරුචි භාවිත කිරීමට දෙවරක් තට්ටු කර අල්ලා ගෙන සිටින්න."</string>
|
||||
<string name="widget_button_text" msgid="4221900832360456858">"කෙටි මං"</string>
|
||||
<string name="widgets_bottom_sheet_title" msgid="3949835990909395998">"කෙටි මං <xliff:g id="NAME">%1$s</xliff:g>"</string>
|
||||
</resources>
|
||||
@@ -0,0 +1,26 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!--
|
||||
/*
|
||||
* Copyright (C) 2017 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="long_press_widget_to_add" msgid="4001616142797446267">"Skratku pridáte pridržaním."</string>
|
||||
<string name="long_accessible_way_to_add" msgid="2725225828389948328">"Skratku pridáte dvojitým klepnutím a pridržaním alebo pomocou vlastných akcií."</string>
|
||||
<string name="widget_button_text" msgid="4221900832360456858">"Skratky"</string>
|
||||
<string name="widgets_bottom_sheet_title" msgid="3949835990909395998">"Skratky aplikácie <xliff:g id="NAME">%1$s</xliff:g>"</string>
|
||||
</resources>
|
||||
@@ -0,0 +1,26 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!--
|
||||
/*
|
||||
* Copyright (C) 2017 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="long_press_widget_to_add" msgid="4001616142797446267">"Pridržite bližnjico, da jo izberete."</string>
|
||||
<string name="long_accessible_way_to_add" msgid="2725225828389948328">"Dvakrat se dotaknite bližnjice in jo pridržite, da jo izberete, ali pa uporabite dejanja po meri."</string>
|
||||
<string name="widget_button_text" msgid="4221900832360456858">"Bližnjice"</string>
|
||||
<string name="widgets_bottom_sheet_title" msgid="3949835990909395998">"Bližnjice za <xliff:g id="NAME">%1$s</xliff:g>"</string>
|
||||
</resources>
|
||||
@@ -0,0 +1,26 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!--
|
||||
/*
|
||||
* Copyright (C) 2017 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="long_press_widget_to_add" msgid="4001616142797446267">"Додирните и задржите да бисте изабрали пречицу."</string>
|
||||
<string name="long_accessible_way_to_add" msgid="2725225828389948328">"Двапут додирните и задржите да бисте изабрали пречицу или користите прилагођене радње."</string>
|
||||
<string name="widget_button_text" msgid="4221900832360456858">"Пречице"</string>
|
||||
<string name="widgets_bottom_sheet_title" msgid="3949835990909395998">"Пречице за <xliff:g id="NAME">%1$s</xliff:g>"</string>
|
||||
</resources>
|
||||
@@ -0,0 +1,26 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!--
|
||||
/*
|
||||
* Copyright (C) 2017 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="long_press_widget_to_add" msgid="4001616142797446267">"Tryck länge om du vill ta upp en genväg."</string>
|
||||
<string name="long_accessible_way_to_add" msgid="2725225828389948328">"Tryck snabbt två gånger och håll kvar om du vill ta upp en genväg eller använda anpassade åtgärder."</string>
|
||||
<string name="widget_button_text" msgid="4221900832360456858">"Genvägar"</string>
|
||||
<string name="widgets_bottom_sheet_title" msgid="3949835990909395998">"Genvägar för <xliff:g id="NAME">%1$s</xliff:g>"</string>
|
||||
</resources>
|
||||
@@ -0,0 +1,26 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!--
|
||||
/*
|
||||
* Copyright (C) 2017 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="long_press_widget_to_add" msgid="4001616142797446267">"Gusa na ushikilie ili uchague njia ya mkato."</string>
|
||||
<string name="long_accessible_way_to_add" msgid="2725225828389948328">"Gonga mara mbili na ushikilie ile uchague njia ya mkato au utumie vitendo maalum."</string>
|
||||
<string name="widget_button_text" msgid="4221900832360456858">"Njia za mkato"</string>
|
||||
<string name="widgets_bottom_sheet_title" msgid="3949835990909395998">"Njia za mkato za <xliff:g id="NAME">%1$s</xliff:g>"</string>
|
||||
</resources>
|
||||
@@ -0,0 +1,26 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!--
|
||||
/*
|
||||
* Copyright (C) 2017 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="long_press_widget_to_add" msgid="4001616142797446267">"Kısayol seçmek için dokunun ve basılı tutun."</string>
|
||||
<string name="long_accessible_way_to_add" msgid="2725225828389948328">"Bir kısayolu seçmek veya özel işlemleri kullanmak için iki kez dokunun ve basılı tutun."</string>
|
||||
<string name="widget_button_text" msgid="4221900832360456858">"Kısayollar"</string>
|
||||
<string name="widgets_bottom_sheet_title" msgid="3949835990909395998">"<xliff:g id="NAME">%1$s</xliff:g> kısayolları"</string>
|
||||
</resources>
|
||||
@@ -0,0 +1,26 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!--
|
||||
/*
|
||||
* Copyright (C) 2017 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="long_press_widget_to_add" msgid="4001616142797446267">"Натисніть і утримуйте, щоб вибрати ярлик."</string>
|
||||
<string name="long_accessible_way_to_add" msgid="2725225828389948328">"Двічі натисніть і утримуйте, щоб вибрати ярлик, або виконайте іншу дію."</string>
|
||||
<string name="widget_button_text" msgid="4221900832360456858">"Ярлики"</string>
|
||||
<string name="widgets_bottom_sheet_title" msgid="3949835990909395998">"Ярлики додатка <xliff:g id="NAME">%1$s</xliff:g>"</string>
|
||||
</resources>
|
||||
@@ -0,0 +1,26 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!--
|
||||
/*
|
||||
* Copyright (C) 2017 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="long_press_widget_to_add" msgid="4001616142797446267">"Yorliqni tanlab olish uchun bosib turing."</string>
|
||||
<string name="long_accessible_way_to_add" msgid="2725225828389948328">"Ikki marta bosib va bosib turgan holatda yorliqni tanlang yoki maxsus amaldan foydalaning."</string>
|
||||
<string name="widget_button_text" msgid="4221900832360456858">"Yorliqlar"</string>
|
||||
<string name="widgets_bottom_sheet_title" msgid="3949835990909395998">"<xliff:g id="NAME">%1$s</xliff:g> ilovasi yorliqlari"</string>
|
||||
</resources>
|
||||
@@ -0,0 +1,26 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!--
|
||||
/*
|
||||
* Copyright (C) 2017 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="long_press_widget_to_add" msgid="4001616142797446267">"Thinta futhi ubambe ukuze ukhethe isinqamuleli."</string>
|
||||
<string name="long_accessible_way_to_add" msgid="2725225828389948328">"Thepha kabulu futhi ubambe ukuze ukhethe isinqamuleli noma usebenzise izenzo zangokwezifiso."</string>
|
||||
<string name="widget_button_text" msgid="4221900832360456858">"Izinqamuleli"</string>
|
||||
<string name="widgets_bottom_sheet_title" msgid="3949835990909395998">"<xliff:g id="NAME">%1$s</xliff:g> izinqamuleli"</string>
|
||||
</resources>
|
||||
@@ -0,0 +1,33 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
/*
|
||||
* Copyright (C) 2017 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:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
|
||||
<!-- Message to tell the user to press and hold on a shortcut to add it [CHAR_LIMIT=50] -->
|
||||
<string name="long_press_widget_to_add">Touch & hold to pick up a shortcut.</string>
|
||||
<!-- Accessibility spoken hint message in widget picker, which allows user to add a shortcut. Custom action is the label for additional accessibility actions available in this mode [CHAR_LIMIT=100] -->
|
||||
<string name="long_accessible_way_to_add">Double-tap & hold to pick up a shortcut or use custom actions.</string>
|
||||
<!-- Text for shortcut add button -->
|
||||
<string name="widget_button_text">Shortcuts</string>
|
||||
|
||||
<!-- Strings for widgets & more in the popup container/bottom sheet -->
|
||||
<!-- Title for a bottom sheet that shows shortcuts for a particular app -->
|
||||
<string name="widgets_bottom_sheet_title"><xliff:g id="name" example="Messenger">%1$s</xliff:g> shortcuts</string>
|
||||
|
||||
</resources>
|
||||
@@ -0,0 +1,28 @@
|
||||
/*
|
||||
* Copyright (C) 2017 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.
|
||||
*/
|
||||
|
||||
package com.android.launcher3.config;
|
||||
|
||||
/**
|
||||
* Defines a set of flags used to control various launcher behaviors
|
||||
*/
|
||||
public final class FeatureFlags extends BaseFlags {
|
||||
|
||||
private FeatureFlags() {}
|
||||
|
||||
// Features to control Launcher3Go behavior
|
||||
public static final boolean GO_DISABLE_WIDGETS = true;
|
||||
}
|
||||
@@ -0,0 +1,30 @@
|
||||
/*
|
||||
* Copyright (C) 2017 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.
|
||||
*/
|
||||
syntax = "proto2";
|
||||
|
||||
option java_package = "com.android.launcher3.userevent";
|
||||
option java_outer_classname = "LauncherLogExtensions";
|
||||
|
||||
package userevent;
|
||||
|
||||
//
|
||||
// Use this to add any app specific extensions to the proto.
|
||||
//
|
||||
message LauncherEventExtension {
|
||||
}
|
||||
|
||||
message TargetExtension {
|
||||
}
|
||||
@@ -15,6 +15,8 @@
|
||||
*/
|
||||
syntax = "proto2";
|
||||
|
||||
import "launcher_log_extension.proto";
|
||||
|
||||
option java_package = "com.android.launcher3.userevent";
|
||||
option java_outer_classname = "LauncherLogProto";
|
||||
|
||||
@@ -52,6 +54,7 @@ message Target {
|
||||
optional int32 span_x = 13 [default = 1];// Used for ItemType.WIDGET
|
||||
optional int32 span_y = 14 [default = 1];// Used for ItemType.WIDGET
|
||||
optional int32 predictedRank = 15;
|
||||
optional TargetExtension extension = 16;
|
||||
}
|
||||
|
||||
// Used to define what type of item a Target would represent.
|
||||
@@ -144,7 +147,6 @@ message Action {
|
||||
// Action (Touch) + Target + Target
|
||||
//
|
||||
message LauncherEvent {
|
||||
|
||||
required Action action = 1;
|
||||
|
||||
// List of targets that touch actions can be operated on.
|
||||
@@ -157,4 +159,6 @@ message LauncherEvent {
|
||||
|
||||
optional bool is_in_multi_window_mode = 7;
|
||||
optional bool is_in_landscape_mode = 8;
|
||||
|
||||
optional LauncherEventExtension extension = 9;
|
||||
}
|
||||
|
||||
Binary file not shown.
|
Before Width: | Height: | Size: 16 KiB |
@@ -0,0 +1,9 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- This "gutter" has a shadow at the top and a subtler shadow on the bottom. -->
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<gradient android:type="linear"
|
||||
android:angle="-90"
|
||||
android:startColor="#ffE0E0E0"
|
||||
android:centerColor="#ffffffff"
|
||||
android:endColor="#ffF5F5F5" />
|
||||
</shape>
|
||||
@@ -0,0 +1,27 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2017 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.
|
||||
-->
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="24dp"
|
||||
android:height="24dp"
|
||||
android:viewportWidth="24.0"
|
||||
android:viewportHeight="24.0"
|
||||
android:tint="?android:attr/textColorPrimary" >
|
||||
<path
|
||||
android:fillColor="#FFFFFFFF"
|
||||
android:pathData="M22.85,19.39L12.93,2.25c-0.41-0.71-1.44-0.71-1.85,0L1.15,19.39C0.73,20.11,1.25,21,2.07,21h19.85
|
||||
C22.75,21,23.27,20.11,22.85,19.39z M11,10c0-0.55,0.45-1,1-1s1,0.45,1,1v3c0,0.55-0.45,1-1,1s-1-0.45-1-1V10z M12,18.2
|
||||
c-0.61,0-1.1-0.49-1.1-1.1S11.39,16,12,16s1.1,0.49,1.1,1.1C13.1,17.71,12.61,18.2,12,18.2z"/>
|
||||
</vector>
|
||||
@@ -0,0 +1,24 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
/*
|
||||
** Copyright 2017, 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.
|
||||
*/
|
||||
-->
|
||||
|
||||
<pathInterpolator xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:controlX1="0.3"
|
||||
android:controlY1="0"
|
||||
android:controlX2="1"
|
||||
android:controlY2="1"/>
|
||||
+1
-1
@@ -20,5 +20,5 @@
|
||||
<pathInterpolator xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:controlX1="0"
|
||||
android:controlY1="1"
|
||||
android:controlX2="0"
|
||||
android:controlX2="0.5"
|
||||
android:controlY2="1"/>
|
||||
@@ -42,7 +42,12 @@
|
||||
android:layout_gravity="center"
|
||||
launcher:pageIndicator="@id/page_indicator" />
|
||||
|
||||
<include layout="@layout/gradient_scrim" />
|
||||
<com.android.launcher3.graphics.GradientView
|
||||
android:id="@+id/gradient_bg"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:visibility="gone"
|
||||
launcher:layout_ignoreInsets="true"/>
|
||||
|
||||
<!-- DO NOT CHANGE THE ID -->
|
||||
<include layout="@layout/hotseat"
|
||||
@@ -60,13 +65,6 @@
|
||||
android:id="@+id/overview_panel"
|
||||
android:visibility="gone" />
|
||||
|
||||
<com.android.launcher3.pageindicators.PageIndicatorCaretLandscape
|
||||
android:id="@+id/page_indicator"
|
||||
android:theme="@style/HomeScreenElementTheme"
|
||||
android:layout_width="@dimen/dynamic_grid_page_indicator_size"
|
||||
android:layout_height="@dimen/dynamic_grid_page_indicator_size"
|
||||
android:layout_gravity="bottom|left"/>
|
||||
|
||||
<include layout="@layout/widgets_view"
|
||||
android:id="@+id/widgets_view"
|
||||
android:layout_width="match_parent"
|
||||
@@ -79,6 +77,13 @@
|
||||
android:layout_height="match_parent"
|
||||
android:visibility="invisible" />
|
||||
|
||||
<com.android.launcher3.pageindicators.PageIndicatorCaretLandscape
|
||||
android:id="@+id/page_indicator"
|
||||
android:theme="@style/HomeScreenElementTheme"
|
||||
android:layout_width="@dimen/dynamic_grid_min_page_indicator_size"
|
||||
android:layout_height="@dimen/dynamic_grid_min_page_indicator_size"
|
||||
android:layout_gravity="bottom|left"/>
|
||||
|
||||
</com.android.launcher3.dragndrop.DragLayer>
|
||||
|
||||
</com.android.launcher3.LauncherRootView>
|
||||
|
||||
@@ -44,7 +44,12 @@
|
||||
launcher:pageIndicator="@+id/page_indicator">
|
||||
</com.android.launcher3.Workspace>
|
||||
|
||||
<include layout="@layout/gradient_scrim" />
|
||||
<com.android.launcher3.graphics.GradientView
|
||||
android:id="@+id/gradient_bg"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:visibility="gone"
|
||||
launcher:layout_ignoreInsets="true"/>
|
||||
|
||||
<!-- DO NOT CHANGE THE ID -->
|
||||
<include layout="@layout/hotseat"
|
||||
|
||||
@@ -43,7 +43,12 @@
|
||||
launcher:pageIndicator="@id/page_indicator">
|
||||
</com.android.launcher3.Workspace>
|
||||
|
||||
<include layout="@layout/gradient_scrim" />
|
||||
<com.android.launcher3.graphics.GradientView
|
||||
android:id="@+id/gradient_bg"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:visibility="gone"
|
||||
launcher:layout_ignoreInsets="true"/>
|
||||
|
||||
<!-- DO NOT CHANGE THE ID -->
|
||||
<include layout="@layout/hotseat"
|
||||
|
||||
@@ -49,7 +49,7 @@
|
||||
<!-- DO NOT CHANGE THE ID -->
|
||||
<com.android.launcher3.allapps.AllAppsRecyclerView
|
||||
android:id="@+id/apps_list_view"
|
||||
android:layout_below="@+id/search_container"
|
||||
android:layout_below="@id/search_container_all_apps"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:layout_gravity="center_horizontal|top"
|
||||
@@ -62,7 +62,7 @@
|
||||
platform bug, which prevents using custom attributes in <include> tag -->
|
||||
<include
|
||||
layout="?android:attr/keyboardLayout"
|
||||
android:id="@+id/search_container" />
|
||||
android:id="@id/search_container_all_apps" />
|
||||
|
||||
<include layout="@layout/all_apps_fast_scroller" />
|
||||
|
||||
|
||||
@@ -1,31 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2017 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.
|
||||
-->
|
||||
<merge xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:app="http://schemas.android.com/apk/res-auto">
|
||||
<com.android.launcher3.graphics.GradientView
|
||||
android:id="@+id/gradient_bg"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:visibility="gone"
|
||||
app:layout_ignoreInsets="true"/>
|
||||
|
||||
<com.android.launcher3.graphics.ScrimView
|
||||
android:id="@+id/scrim_bg"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:visibility="gone"
|
||||
app:layout_ignoreInsets="true"/>
|
||||
</merge>
|
||||
@@ -1,5 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<View xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="@dimen/popup_item_divider_height"
|
||||
android:background="?attr/popupColorTertiary" />
|
||||
@@ -28,6 +28,13 @@
|
||||
android:orientation="vertical"
|
||||
android:clipChildren="false">
|
||||
|
||||
<View
|
||||
android:id="@+id/gutter_top"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="4dp"
|
||||
android:theme="@style/PopupGutter"
|
||||
android:visibility="gone" />
|
||||
|
||||
<FrameLayout
|
||||
android:id="@+id/header"
|
||||
android:layout_width="match_parent"
|
||||
@@ -35,22 +42,23 @@
|
||||
android:paddingStart="@dimen/notification_padding_start"
|
||||
android:paddingEnd="@dimen/notification_padding_end"
|
||||
android:background="?attr/popupColorPrimary"
|
||||
android:elevation="@dimen/notification_elevation">
|
||||
android:elevation="@dimen/notification_elevation"
|
||||
android:layout_below="@id/gutter_top" >
|
||||
<TextView
|
||||
android:id="@+id/notification_text"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="match_parent"
|
||||
android:layout_gravity="start"
|
||||
android:gravity="center_vertical"
|
||||
android:gravity="bottom"
|
||||
android:text="@string/notifications_header"
|
||||
android:textSize="@dimen/notification_header_text_size"
|
||||
android:textColor="?android:attr/textColorSecondary" />
|
||||
android:textColor="?android:attr/textColorPrimary" />
|
||||
<TextView
|
||||
android:id="@+id/notification_count"
|
||||
android:layout_width="@dimen/notification_icon_size"
|
||||
android:layout_height="match_parent"
|
||||
android:layout_gravity="end"
|
||||
android:gravity="center"
|
||||
android:gravity="bottom|center_horizontal"
|
||||
android:textSize="@dimen/notification_header_count_text_size"
|
||||
android:fontFamily="sans-serif-medium"
|
||||
android:textColor="?android:attr/textColorPrimary" />
|
||||
@@ -76,6 +84,14 @@
|
||||
android:layout_height="@dimen/notification_footer_height"
|
||||
android:layout_below="@id/divider" />
|
||||
|
||||
<View
|
||||
android:id="@+id/gutter_bottom"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="4dp"
|
||||
android:theme="@style/PopupGutter"
|
||||
android:visibility="gone"
|
||||
android:layout_below="@id/footer" />
|
||||
|
||||
</RelativeLayout>
|
||||
|
||||
</com.android.launcher3.notification.NotificationItemView>
|
||||
|
||||
@@ -38,7 +38,7 @@
|
||||
android:layout_height="wrap_content"
|
||||
android:textAlignment="viewStart"
|
||||
android:fontFamily="sans-serif"
|
||||
android:textSize="@dimen/notification_main_text_size"
|
||||
android:textSize="@dimen/notification_main_title_size"
|
||||
android:textColor="?android:attr/textColorPrimary"
|
||||
android:lines="1"
|
||||
android:ellipsize="end" />
|
||||
|
||||
@@ -0,0 +1,24 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2017 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.
|
||||
-->
|
||||
<ImageView
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:layout_width="48dp"
|
||||
android:layout_height="match_parent"
|
||||
android:background="?android:attr/selectableItemBackgroundBorderless"
|
||||
android:contentDescription="@string/title_missing_notification_access"
|
||||
android:scaleType="center"
|
||||
android:src="@drawable/ic_warning"
|
||||
android:tint="?android:attr/textColorSecondary" />
|
||||
@@ -18,11 +18,11 @@
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:theme="@style/HomeScreenElementTheme"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="@dimen/dynamic_grid_page_indicator_size">
|
||||
android:layout_height="@dimen/dynamic_grid_min_page_indicator_size">
|
||||
<ImageView
|
||||
android:id="@+id/all_apps_handle"
|
||||
android:layout_width="48dp"
|
||||
android:layout_height="match_parent"
|
||||
android:layout_height="@dimen/dynamic_grid_min_page_indicator_size"
|
||||
android:layout_gravity="top|center"
|
||||
android:scaleType="centerInside"/>
|
||||
</com.android.launcher3.pageindicators.PageIndicatorLineCaret>
|
||||
|
||||
@@ -19,8 +19,8 @@
|
||||
android:id="@+id/deep_shortcuts_container"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:paddingTop="8dp"
|
||||
android:paddingBottom="8dp"
|
||||
android:paddingTop="4dp"
|
||||
android:paddingBottom="4dp"
|
||||
android:clipToPadding="false"
|
||||
android:clipChildren="false"
|
||||
android:elevation="@dimen/deep_shortcuts_elevation"
|
||||
|
||||
@@ -15,7 +15,7 @@
|
||||
-->
|
||||
<com.android.launcher3.allapps.search.AppsSearchContainerLayout
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:id="@+id/search_container"
|
||||
android:id="@id/search_container_all_apps"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="@dimen/all_apps_search_bar_height"
|
||||
android:layout_gravity="center|top"
|
||||
@@ -19,7 +19,7 @@
|
||||
android:orientation="vertical"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="0dp"
|
||||
android:id="@+id/qsb_container"
|
||||
android:id="@id/search_container_workspace"
|
||||
android:padding="0dp" >
|
||||
|
||||
<fragment
|
||||
@@ -29,7 +29,7 @@
|
||||
android:layout_height="match_parent"
|
||||
android:paddingLeft="8dp"
|
||||
android:paddingRight="8dp"
|
||||
android:paddingTop="6dp"
|
||||
android:paddingTop="16dp"
|
||||
launcher:pageIndicator="@+id/folder_page_indicator" />
|
||||
|
||||
<LinearLayout
|
||||
|
||||
@@ -29,7 +29,7 @@
|
||||
android:layout_height="match_parent"
|
||||
android:paddingLeft="8dp"
|
||||
android:paddingRight="8dp"
|
||||
android:paddingTop="6dp"
|
||||
android:paddingTop="16dp"
|
||||
launcher:pageIndicator="@+id/folder_page_indicator" />
|
||||
|
||||
<LinearLayout
|
||||
|
||||
@@ -35,9 +35,9 @@
|
||||
<string name="widget_accessible_dims_format" msgid="3640149169885301790">"%1$d breed by %2$d hoog"</string>
|
||||
<string name="add_item_request_drag_hint" msgid="5899764264480397019">"Raak en hou om self te plaas"</string>
|
||||
<string name="place_automatically" msgid="8064208734425456485">"Voeg outomaties by"</string>
|
||||
<string name="all_apps_search_bar_hint" msgid="7084713969757597256">"Deursoek programme"</string>
|
||||
<string name="all_apps_loading_message" msgid="7557140873644765180">"Laai tans programme …"</string>
|
||||
<string name="all_apps_no_search_results" msgid="6332185285860416787">"Geen programme gevind wat met \"<xliff:g id="QUERY">%1$s</xliff:g>\" ooreenstem nie"</string>
|
||||
<string name="all_apps_search_bar_hint" msgid="1390553134053255246">"Deursoek programme"</string>
|
||||
<string name="all_apps_loading_message" msgid="5813968043155271636">"Laai tans programme …"</string>
|
||||
<string name="all_apps_no_search_results" msgid="3200346862396363786">"Kon geen programme kry wat by \"<xliff:g id="QUERY">%1$s</xliff:g>\" pas nie"</string>
|
||||
<string name="all_apps_search_market_message" msgid="1366263386197059176">"Soek meer programme"</string>
|
||||
<string name="notifications_header" msgid="1404149926117359025">"Kennisgewings"</string>
|
||||
<string name="out_of_space" msgid="4691004494942118364">"Niks meer spasie op die tuisskerm nie."</string>
|
||||
@@ -79,17 +79,18 @@
|
||||
<string name="icon_badging_title" msgid="874121399231955394">"Kennisgewingkolle"</string>
|
||||
<string name="icon_badging_desc_on" msgid="2627952638544674079">"Aan"</string>
|
||||
<string name="icon_badging_desc_off" msgid="5503319969924580241">"Af"</string>
|
||||
<string name="title_missing_notification_access" msgid="7503287056163941064">"Kennisgewingtoegang word benodig"</string>
|
||||
<string name="msg_missing_notification_access" msgid="281113995110910548">"Skakel programkennisgewings vir <xliff:g id="NAME">%1$s</xliff:g> aan om kennisgewingkolle te sien"</string>
|
||||
<string name="title_change_settings" msgid="1376365968844349552">"Verander instellings"</string>
|
||||
<string name="auto_add_shortcuts_label" msgid="8222286205987725611">"Voeg ikoon by tuisskerm"</string>
|
||||
<string name="auto_add_shortcuts_description" msgid="7117251166066978730">"Vir nuwe programme"</string>
|
||||
<!-- no translation found for icon_shape_override_label (2977264953998281004) -->
|
||||
<skip />
|
||||
<string name="icon_shape_override_label" msgid="2977264953998281004">"Verander ikoon se vorm"</string>
|
||||
<string name="icon_shape_system_default" msgid="1709762974822753030">"Gebruik stelselverstek"</string>
|
||||
<string name="icon_shape_square" msgid="633575066111622774">"Vierkant"</string>
|
||||
<string name="icon_shape_squircle" msgid="5658049910802669495">"Sirkelvierkant"</string>
|
||||
<string name="icon_shape_circle" msgid="6550072265930144217">"Sirkel"</string>
|
||||
<string name="icon_shape_teardrop" msgid="4525869388200835463">"Traandruppel"</string>
|
||||
<!-- no translation found for icon_shape_override_progress (3461735694970239908) -->
|
||||
<skip />
|
||||
<string name="icon_shape_override_progress" msgid="3461735694970239908">"Pas ikoonvormveranderings toe"</string>
|
||||
<string name="package_state_unknown" msgid="7592128424511031410">"Onbekend"</string>
|
||||
<string name="abandoned_clean_this" msgid="7610119707847920412">"Verwyder"</string>
|
||||
<string name="abandoned_search" msgid="891119232568284442">"Soek"</string>
|
||||
|
||||
@@ -35,9 +35,9 @@
|
||||
<string name="widget_accessible_dims_format" msgid="3640149169885301790">"%1$d ስፋት በ%2$d ከፍታ"</string>
|
||||
<string name="add_item_request_drag_hint" msgid="5899764264480397019">"ራስዎ ለማስቀመጥ ነክተው ይያዙት"</string>
|
||||
<string name="place_automatically" msgid="8064208734425456485">"በራስ-ሰር አክል"</string>
|
||||
<string name="all_apps_search_bar_hint" msgid="7084713969757597256">"መተግበሪያዎችን ይፈልጉ"</string>
|
||||
<string name="all_apps_loading_message" msgid="7557140873644765180">"መተግበሪያዎችን በመጫን ላይ..."</string>
|
||||
<string name="all_apps_no_search_results" msgid="6332185285860416787">"ከ«<xliff:g id="QUERY">%1$s</xliff:g>» ጋር የሚዛመዱ ምንም መተግበሪያዎች አልተገኙም"</string>
|
||||
<string name="all_apps_search_bar_hint" msgid="1390553134053255246">"መተግበሪያዎችን ፈልግ"</string>
|
||||
<string name="all_apps_loading_message" msgid="5813968043155271636">"መተግበሪያዎችን በመጫን ላይ…"</string>
|
||||
<string name="all_apps_no_search_results" msgid="3200346862396363786">"ከ«<xliff:g id="QUERY">%1$s</xliff:g>» ጋር የሚዛመዱ ምንም መተግበሪያዎች አልተገኙም"</string>
|
||||
<string name="all_apps_search_market_message" msgid="1366263386197059176">"ተጨማሪ መተግበሪያዎች ይፈልጉ"</string>
|
||||
<string name="notifications_header" msgid="1404149926117359025">"ማሳወቂያዎች"</string>
|
||||
<string name="out_of_space" msgid="4691004494942118364">"በዚህ መነሻ ማያ ገጽ ላይ ምንም ቦታ የለም።"</string>
|
||||
@@ -79,17 +79,18 @@
|
||||
<string name="icon_badging_title" msgid="874121399231955394">"የማሳወቂያ ነጥቦች"</string>
|
||||
<string name="icon_badging_desc_on" msgid="2627952638544674079">"በርቷል"</string>
|
||||
<string name="icon_badging_desc_off" msgid="5503319969924580241">"ጠፍቷል"</string>
|
||||
<string name="title_missing_notification_access" msgid="7503287056163941064">"የማሳወቂያ መዳረሻ ያስፈልጋል"</string>
|
||||
<string name="msg_missing_notification_access" msgid="281113995110910548">"የማሳወቂያ ነጥቦችን ለማሳየት የመተግብሪያ ማሳወቂያዎችን ለ<xliff:g id="NAME">%1$s</xliff:g> ያብሩ"</string>
|
||||
<string name="title_change_settings" msgid="1376365968844349552">"ቅንብሮችን ቀይር"</string>
|
||||
<string name="auto_add_shortcuts_label" msgid="8222286205987725611">"አዶ ወደ የመነሻ ማያ ገጽ አክል"</string>
|
||||
<string name="auto_add_shortcuts_description" msgid="7117251166066978730">"ለአዲስ መተግበሪያዎች"</string>
|
||||
<!-- no translation found for icon_shape_override_label (2977264953998281004) -->
|
||||
<skip />
|
||||
<string name="icon_shape_override_label" msgid="2977264953998281004">"የአዶ ቅርፅ ለውጥ"</string>
|
||||
<string name="icon_shape_system_default" msgid="1709762974822753030">"የሥርዓቱን ነባሪ ተጠቀም"</string>
|
||||
<string name="icon_shape_square" msgid="633575066111622774">"ካሬ"</string>
|
||||
<string name="icon_shape_squircle" msgid="5658049910802669495">"Squircle"</string>
|
||||
<string name="icon_shape_circle" msgid="6550072265930144217">"ክብ"</string>
|
||||
<string name="icon_shape_teardrop" msgid="4525869388200835463">"የእንባ ጠብታ"</string>
|
||||
<!-- no translation found for icon_shape_override_progress (3461735694970239908) -->
|
||||
<skip />
|
||||
<string name="icon_shape_override_progress" msgid="3461735694970239908">"የአዶ ቅርች ለውጦች"</string>
|
||||
<string name="package_state_unknown" msgid="7592128424511031410">"የማይታወቅ"</string>
|
||||
<string name="abandoned_clean_this" msgid="7610119707847920412">"አስወግድ"</string>
|
||||
<string name="abandoned_search" msgid="891119232568284442">"ፈልግ"</string>
|
||||
|
||||
@@ -35,9 +35,9 @@
|
||||
<string name="widget_accessible_dims_format" msgid="3640149169885301790">"العرض %1$d الطول %2$d"</string>
|
||||
<string name="add_item_request_drag_hint" msgid="5899764264480397019">"المس مع الاستمرار للإضافة يدويًا"</string>
|
||||
<string name="place_automatically" msgid="8064208734425456485">"إضافة تلقائيًا"</string>
|
||||
<string name="all_apps_search_bar_hint" msgid="7084713969757597256">"البحث في التطبيقات"</string>
|
||||
<string name="all_apps_loading_message" msgid="7557140873644765180">"جارٍ تحميل التطبيقات…"</string>
|
||||
<string name="all_apps_no_search_results" msgid="6332185285860416787">"لم يتم العثور على أية تطبيقات تتطابق مع \"<xliff:g id="QUERY">%1$s</xliff:g>\""</string>
|
||||
<string name="all_apps_search_bar_hint" msgid="1390553134053255246">"بحث في التطبيقات"</string>
|
||||
<string name="all_apps_loading_message" msgid="5813968043155271636">"جارٍ تحميل التطبيقات…"</string>
|
||||
<string name="all_apps_no_search_results" msgid="3200346862396363786">"لم يتم العثور على أي تطبيقات تتطابق مع \"<xliff:g id="QUERY">%1$s</xliff:g>\""</string>
|
||||
<string name="all_apps_search_market_message" msgid="1366263386197059176">"البحث عن مزيد من التطبيقات"</string>
|
||||
<string name="notifications_header" msgid="1404149926117359025">"الإشعارات"</string>
|
||||
<string name="out_of_space" msgid="4691004494942118364">"ليس هناك مساحة أخرى في هذه الشاشة الرئيسية."</string>
|
||||
@@ -79,17 +79,18 @@
|
||||
<string name="icon_badging_title" msgid="874121399231955394">"نقاط الإشعارات"</string>
|
||||
<string name="icon_badging_desc_on" msgid="2627952638544674079">"قيد التشغيل"</string>
|
||||
<string name="icon_badging_desc_off" msgid="5503319969924580241">"قيد الإيقاف"</string>
|
||||
<string name="title_missing_notification_access" msgid="7503287056163941064">"يلزم تمكين الوصول إلى الإشعارات"</string>
|
||||
<string name="msg_missing_notification_access" msgid="281113995110910548">"لعرض نقاط الإشعارات، يجب تشغيل إشعارات التطبيق في <xliff:g id="NAME">%1$s</xliff:g>"</string>
|
||||
<string name="title_change_settings" msgid="1376365968844349552">"تغيير الإعدادات"</string>
|
||||
<string name="auto_add_shortcuts_label" msgid="8222286205987725611">"إضافة رمز إلى الشاشة الرئيسية"</string>
|
||||
<string name="auto_add_shortcuts_description" msgid="7117251166066978730">"للتطبيقات الجديدة"</string>
|
||||
<!-- no translation found for icon_shape_override_label (2977264953998281004) -->
|
||||
<skip />
|
||||
<string name="icon_shape_override_label" msgid="2977264953998281004">"تغيير شكل الرمز"</string>
|
||||
<string name="icon_shape_system_default" msgid="1709762974822753030">"استخدام الإعداد الافتراضي للنظام"</string>
|
||||
<string name="icon_shape_square" msgid="633575066111622774">"مربّع"</string>
|
||||
<string name="icon_shape_squircle" msgid="5658049910802669495">"رمز دائري مربّع"</string>
|
||||
<string name="icon_shape_circle" msgid="6550072265930144217">"دائرة"</string>
|
||||
<string name="icon_shape_teardrop" msgid="4525869388200835463">"رمز على شكل دمعة"</string>
|
||||
<!-- no translation found for icon_shape_override_progress (3461735694970239908) -->
|
||||
<skip />
|
||||
<string name="icon_shape_override_progress" msgid="3461735694970239908">"جارٍ تطبيق تغييرات شكل الرمز"</string>
|
||||
<string name="package_state_unknown" msgid="7592128424511031410">"غير معروفة"</string>
|
||||
<string name="abandoned_clean_this" msgid="7610119707847920412">"إزالة"</string>
|
||||
<string name="abandoned_search" msgid="891119232568284442">"بحث"</string>
|
||||
|
||||
@@ -35,9 +35,9 @@
|
||||
<string name="widget_accessible_dims_format" msgid="3640149169885301790">"širina od %1$d i visina od %2$d"</string>
|
||||
<string name="add_item_request_drag_hint" msgid="5899764264480397019">"Dodirnite i zadržite da biste postavili ručno"</string>
|
||||
<string name="place_automatically" msgid="8064208734425456485">"Automatski dodaj"</string>
|
||||
<string name="all_apps_search_bar_hint" msgid="7084713969757597256">"Pretražite aplikacije"</string>
|
||||
<string name="all_apps_loading_message" msgid="7557140873644765180">"Aplikacije se učitavaju..."</string>
|
||||
<string name="all_apps_no_search_results" msgid="6332185285860416787">"Nije pronađena nijedna aplikacija za „<xliff:g id="QUERY">%1$s</xliff:g>“"</string>
|
||||
<string name="all_apps_search_bar_hint" msgid="1390553134053255246">"Pretražite aplikacije"</string>
|
||||
<string name="all_apps_loading_message" msgid="5813968043155271636">"Aplikacije se učitavaju…"</string>
|
||||
<string name="all_apps_no_search_results" msgid="3200346862396363786">"Nije pronađena nijedna aplikacija za „<xliff:g id="QUERY">%1$s</xliff:g>“"</string>
|
||||
<string name="all_apps_search_market_message" msgid="1366263386197059176">"Pretraži još aplikacija"</string>
|
||||
<string name="notifications_header" msgid="1404149926117359025">"Obaveštenja"</string>
|
||||
<string name="out_of_space" msgid="4691004494942118364">"Nema više prostora na ovom početnom ekranu."</string>
|
||||
@@ -79,17 +79,18 @@
|
||||
<string name="icon_badging_title" msgid="874121399231955394">"Tačke za obaveštenja"</string>
|
||||
<string name="icon_badging_desc_on" msgid="2627952638544674079">"Uključeno"</string>
|
||||
<string name="icon_badging_desc_off" msgid="5503319969924580241">"Isključeno"</string>
|
||||
<string name="title_missing_notification_access" msgid="7503287056163941064">"Potreban je pristup za obaveštenja"</string>
|
||||
<string name="msg_missing_notification_access" msgid="281113995110910548">"Da biste prikazali tačke za obaveštenja, uključite obaveštenja za aplikaciju <xliff:g id="NAME">%1$s</xliff:g>"</string>
|
||||
<string name="title_change_settings" msgid="1376365968844349552">"Promenite podešavanja"</string>
|
||||
<string name="auto_add_shortcuts_label" msgid="8222286205987725611">"Dodaj ikonu na početni ekran"</string>
|
||||
<string name="auto_add_shortcuts_description" msgid="7117251166066978730">"Za nove aplikacije"</string>
|
||||
<!-- no translation found for icon_shape_override_label (2977264953998281004) -->
|
||||
<skip />
|
||||
<string name="icon_shape_override_label" msgid="2977264953998281004">"Promenite oblik ikona"</string>
|
||||
<string name="icon_shape_system_default" msgid="1709762974822753030">"Koristi podrazumevano sistemsko podešavanje"</string>
|
||||
<string name="icon_shape_square" msgid="633575066111622774">"Kvadrat"</string>
|
||||
<string name="icon_shape_squircle" msgid="5658049910802669495">"Zaobljeni kvadrat"</string>
|
||||
<string name="icon_shape_circle" msgid="6550072265930144217">"Krug"</string>
|
||||
<string name="icon_shape_teardrop" msgid="4525869388200835463">"Suza"</string>
|
||||
<!-- no translation found for icon_shape_override_progress (3461735694970239908) -->
|
||||
<skip />
|
||||
<string name="icon_shape_override_progress" msgid="3461735694970239908">"Primenjuju se promene oblika ikona"</string>
|
||||
<string name="package_state_unknown" msgid="7592128424511031410">"Nepoznato"</string>
|
||||
<string name="abandoned_clean_this" msgid="7610119707847920412">"Ukloni"</string>
|
||||
<string name="abandoned_search" msgid="891119232568284442">"Pretraži"</string>
|
||||
|
||||
@@ -41,7 +41,7 @@
|
||||
<string name="all_apps_home_button_label" msgid="252062713717058851">"Галоўная"</string>
|
||||
<string name="remove_drop_target_label" msgid="7812859488053230776">"Выдаліць"</string>
|
||||
<string name="uninstall_drop_target_label" msgid="4722034217958379417">"Выдаліць"</string>
|
||||
<string name="app_info_drop_target_label" msgid="692894985365717661">"Звесткі пра праграму"</string>
|
||||
<string name="app_info_drop_target_label" msgid="692894985365717661">"Звесткі пра праграмы"</string>
|
||||
<string name="permlab_install_shortcut" msgid="5632423390354674437">"усталёўваць ярлыкі"</string>
|
||||
<string name="permdesc_install_shortcut" msgid="923466509822011139">"Дазваляе праграмам дадаваць ярлыкі без умяшання карыстальніка."</string>
|
||||
<string name="permlab_read_settings" msgid="1941457408239617576">"счытваць налады і ярлыкі на Галоўнай старонцы"</string>
|
||||
@@ -65,12 +65,26 @@
|
||||
<string name="folder_name_format" msgid="6629239338071103179">"Папка: <xliff:g id="NAME">%1$s</xliff:g>"</string>
|
||||
<string name="widget_button_text" msgid="2880537293434387943">"Віджэты"</string>
|
||||
<string name="wallpaper_button_text" msgid="8404103075899945851">"Шпалеры"</string>
|
||||
<string name="settings_button_text" msgid="8119458837558863227">"Налады"</string>
|
||||
<string name="settings_button_text" msgid="8873672322605444408">"Налады галоўнага экрана"</string>
|
||||
<string name="msg_disabled_by_admin" msgid="6898038085516271325">"Адключаная адміністратарам"</string>
|
||||
<string name="accessibility_action_overview" msgid="6257665857640347026">"Агляд"</string>
|
||||
<string name="allow_rotation_title" msgid="7728578836261442095">"Дазволіць паварот галоўнага экрана"</string>
|
||||
<string name="allow_rotation_desc" msgid="8662546029078692509">"Пры павароце тэлефона"</string>
|
||||
<string name="allow_rotation_blocked_desc" msgid="3212602545192996253">"Бягучая налада дысплэя не прадугледжвае паварот"</string>
|
||||
<string name="icon_badging_title" msgid="874121399231955394">"Значкі апавяшчэнняў"</string>
|
||||
<string name="icon_badging_desc_on" msgid="2627952638544674079">"Уключана"</string>
|
||||
<string name="icon_badging_desc_off" msgid="5503319969924580241">"Выключана"</string>
|
||||
<string name="auto_add_shortcuts_label" msgid="8222286205987725611">"Дадаць значок на Галоўны экран"</string>
|
||||
<string name="auto_add_shortcuts_description" msgid="7117251166066978730">"Для новых праграм"</string>
|
||||
<!-- no translation found for icon_shape_override_label (2977264953998281004) -->
|
||||
<skip />
|
||||
<string name="icon_shape_system_default" msgid="1709762974822753030">"Выкарыстоўваць стандартныя формы"</string>
|
||||
<string name="icon_shape_square" msgid="633575066111622774">"Квадрат"</string>
|
||||
<string name="icon_shape_squircle" msgid="5658049910802669495">"Прамавугольнік са скругленымі вугламі"</string>
|
||||
<string name="icon_shape_circle" msgid="6550072265930144217">"Круг"</string>
|
||||
<string name="icon_shape_teardrop" msgid="4525869388200835463">"Сляза"</string>
|
||||
<!-- no translation found for icon_shape_override_progress (3461735694970239908) -->
|
||||
<skip />
|
||||
<string name="package_state_unknown" msgid="7592128424511031410">"Невядома"</string>
|
||||
<string name="abandoned_clean_this" msgid="7610119707847920412">"Выдаліць"</string>
|
||||
<string name="abandoned_search" msgid="891119232568284442">"Шукаць"</string>
|
||||
@@ -104,4 +118,7 @@
|
||||
<string name="widget_resized" msgid="9130327887929620">"Памеры віджэта зменены на: шырыня <xliff:g id="NUMBER_0">%1$s</xliff:g>, вышыня <xliff:g id="NUMBER_1">%2$s</xliff:g>"</string>
|
||||
<string name="action_deep_shortcut" msgid="2864038805849372848">"Ярлыкі"</string>
|
||||
<string name="shortcuts_menu_description" msgid="406159963824238648">"Ярлыкі (<xliff:g id="NUMBER_OF_SHORTCUTS">%1$d</xliff:g>) для <xliff:g id="APP_NAME">%2$s</xliff:g>"</string>
|
||||
<string name="shortcuts_menu_with_notifications_description" msgid="8985659504915468840">"Ярлыкі (<xliff:g id="NUMBER_OF_SHORTCUTS">%1$d</xliff:g>) і апавяшчэнні (<xliff:g id="NUMBER_OF_NOTIFICATIONS">%2$d</xliff:g>) для <xliff:g id="APP_NAME">%3$s</xliff:g>"</string>
|
||||
<string name="action_dismiss_notification" msgid="5909461085055959187">"Адхіліць"</string>
|
||||
<string name="notification_dismissed" msgid="6002233469409822874">"Апавяшчэнне адхілена"</string>
|
||||
</resources>
|
||||
|
||||
@@ -35,9 +35,9 @@
|
||||
<string name="widget_accessible_dims_format" msgid="3640149169885301790">"Ширина %1$d и височина %2$d"</string>
|
||||
<string name="add_item_request_drag_hint" msgid="5899764264480397019">"Докоснете и задръжте, за да поставите ръчно"</string>
|
||||
<string name="place_automatically" msgid="8064208734425456485">"Автоматично добавяне"</string>
|
||||
<string name="all_apps_search_bar_hint" msgid="7084713969757597256">"Търсене в приложенията"</string>
|
||||
<string name="all_apps_loading_message" msgid="7557140873644765180">"Приложенията се зареждат…"</string>
|
||||
<string name="all_apps_no_search_results" msgid="6332185285860416787">"Няма намерени приложения, съответстващи на „<xliff:g id="QUERY">%1$s</xliff:g>“"</string>
|
||||
<string name="all_apps_search_bar_hint" msgid="1390553134053255246">"Търсене в приложенията"</string>
|
||||
<string name="all_apps_loading_message" msgid="5813968043155271636">"Приложенията се зареждат…"</string>
|
||||
<string name="all_apps_no_search_results" msgid="3200346862396363786">"Няма намерени приложения, съответстващи на „<xliff:g id="QUERY">%1$s</xliff:g>“"</string>
|
||||
<string name="all_apps_search_market_message" msgid="1366263386197059176">"Търсене на още приложения"</string>
|
||||
<string name="notifications_header" msgid="1404149926117359025">"Известия"</string>
|
||||
<string name="out_of_space" msgid="4691004494942118364">"На този начален екран няма повече място."</string>
|
||||
@@ -79,17 +79,18 @@
|
||||
<string name="icon_badging_title" msgid="874121399231955394">"Точки за известия"</string>
|
||||
<string name="icon_badging_desc_on" msgid="2627952638544674079">"Включено"</string>
|
||||
<string name="icon_badging_desc_off" msgid="5503319969924580241">"Изключено"</string>
|
||||
<string name="title_missing_notification_access" msgid="7503287056163941064">"Необходим е достъп до известията"</string>
|
||||
<string name="msg_missing_notification_access" msgid="281113995110910548">"За да се показват точки за известия, включете известията за приложението <xliff:g id="NAME">%1$s</xliff:g>"</string>
|
||||
<string name="title_change_settings" msgid="1376365968844349552">"Промяна на настройките"</string>
|
||||
<string name="auto_add_shortcuts_label" msgid="8222286205987725611">"Добавяне на икона към началния екран"</string>
|
||||
<string name="auto_add_shortcuts_description" msgid="7117251166066978730">"За нови приложения"</string>
|
||||
<!-- no translation found for icon_shape_override_label (2977264953998281004) -->
|
||||
<skip />
|
||||
<string name="icon_shape_override_label" msgid="2977264953998281004">"Промяна на формата на иконите"</string>
|
||||
<string name="icon_shape_system_default" msgid="1709762974822753030">"Използване на стандартната системна настройка"</string>
|
||||
<string name="icon_shape_square" msgid="633575066111622774">"Квадрат"</string>
|
||||
<string name="icon_shape_squircle" msgid="5658049910802669495">"Комбинация от кръг и квадрат"</string>
|
||||
<string name="icon_shape_circle" msgid="6550072265930144217">"Кръг"</string>
|
||||
<string name="icon_shape_teardrop" msgid="4525869388200835463">"Сълза"</string>
|
||||
<!-- no translation found for icon_shape_override_progress (3461735694970239908) -->
|
||||
<skip />
|
||||
<string name="icon_shape_override_progress" msgid="3461735694970239908">"Промените във формата на иконите се прилагат"</string>
|
||||
<string name="package_state_unknown" msgid="7592128424511031410">"Няма информация"</string>
|
||||
<string name="abandoned_clean_this" msgid="7610119707847920412">"Премахване"</string>
|
||||
<string name="abandoned_search" msgid="891119232568284442">"Търсене"</string>
|
||||
|
||||
@@ -35,9 +35,9 @@
|
||||
<string name="widget_accessible_dims_format" msgid="3640149169885301790">"%1$d d\'amplada per %2$d d\'alçada"</string>
|
||||
<string name="add_item_request_drag_hint" msgid="5899764264480397019">"Toca i mantén premut l\'element per col·locar-lo manualment"</string>
|
||||
<string name="place_automatically" msgid="8064208734425456485">"Afegeix automàticament"</string>
|
||||
<string name="all_apps_search_bar_hint" msgid="7084713969757597256">"Cerca a les aplicacions"</string>
|
||||
<string name="all_apps_loading_message" msgid="7557140873644765180">"S\'estan carregant les aplicacions..."</string>
|
||||
<string name="all_apps_no_search_results" msgid="6332185285860416787">"No s\'ha trobat cap aplicació que coincideixi amb <xliff:g id="QUERY">%1$s</xliff:g>"</string>
|
||||
<string name="all_apps_search_bar_hint" msgid="1390553134053255246">"Cerca aplicacions"</string>
|
||||
<string name="all_apps_loading_message" msgid="5813968043155271636">"S\'estan carregant les aplicacions…"</string>
|
||||
<string name="all_apps_no_search_results" msgid="3200346862396363786">"No s\'ha trobat cap aplicació que coincideixi amb \"<xliff:g id="QUERY">%1$s</xliff:g>\""</string>
|
||||
<string name="all_apps_search_market_message" msgid="1366263386197059176">"Cerca més aplicacions"</string>
|
||||
<string name="notifications_header" msgid="1404149926117359025">"Notificacions"</string>
|
||||
<string name="out_of_space" msgid="4691004494942118364">"Ja no queda espai en aquesta pantalla d\'inici."</string>
|
||||
@@ -77,19 +77,20 @@
|
||||
<string name="allow_rotation_desc" msgid="8662546029078692509">"En girar el telèfon"</string>
|
||||
<string name="allow_rotation_blocked_desc" msgid="3212602545192996253">"La configuració actual de la pantalla no permet la rotació"</string>
|
||||
<string name="icon_badging_title" msgid="874121399231955394">"Punts de notificació"</string>
|
||||
<string name="icon_badging_desc_on" msgid="2627952638544674079">"Activada"</string>
|
||||
<string name="icon_badging_desc_off" msgid="5503319969924580241">"Desactivada"</string>
|
||||
<string name="icon_badging_desc_on" msgid="2627952638544674079">"Activat"</string>
|
||||
<string name="icon_badging_desc_off" msgid="5503319969924580241">"Desactivat"</string>
|
||||
<string name="title_missing_notification_access" msgid="7503287056163941064">"Cal que tingui accés a les notificacions"</string>
|
||||
<string name="msg_missing_notification_access" msgid="281113995110910548">"Per veure els punts de notificació, activa les notificacions de l\'aplicació <xliff:g id="NAME">%1$s</xliff:g>"</string>
|
||||
<string name="title_change_settings" msgid="1376365968844349552">"Canvia la configuració"</string>
|
||||
<string name="auto_add_shortcuts_label" msgid="8222286205987725611">"Afegeix la icona a la pantalla d\'inici"</string>
|
||||
<string name="auto_add_shortcuts_description" msgid="7117251166066978730">"Per a les aplicacions noves"</string>
|
||||
<!-- no translation found for icon_shape_override_label (2977264953998281004) -->
|
||||
<skip />
|
||||
<string name="icon_shape_override_label" msgid="2977264953998281004">"Canvia la forma de les icones"</string>
|
||||
<string name="icon_shape_system_default" msgid="1709762974822753030">"Utilitza l\'opció predeterminada del sistema"</string>
|
||||
<string name="icon_shape_square" msgid="633575066111622774">"Quadrat"</string>
|
||||
<string name="icon_shape_squircle" msgid="5658049910802669495">"Quadrat arrodonit"</string>
|
||||
<string name="icon_shape_circle" msgid="6550072265930144217">"Cercle"</string>
|
||||
<string name="icon_shape_teardrop" msgid="4525869388200835463">"Llàgrima"</string>
|
||||
<!-- no translation found for icon_shape_override_progress (3461735694970239908) -->
|
||||
<skip />
|
||||
<string name="icon_shape_override_progress" msgid="3461735694970239908">"S\'estan aplicant els canvis de forma de les icones"</string>
|
||||
<string name="package_state_unknown" msgid="7592128424511031410">"Desconegut"</string>
|
||||
<string name="abandoned_clean_this" msgid="7610119707847920412">"Suprimeix"</string>
|
||||
<string name="abandoned_search" msgid="891119232568284442">"Cerca"</string>
|
||||
|
||||
@@ -35,9 +35,9 @@
|
||||
<string name="widget_accessible_dims_format" msgid="3640149169885301790">"šířka %1$d, výška %2$d"</string>
|
||||
<string name="add_item_request_drag_hint" msgid="5899764264480397019">"Chcete-li položku umístit ručně, klepněte na ni a podržte ji"</string>
|
||||
<string name="place_automatically" msgid="8064208734425456485">"Přidat automaticky"</string>
|
||||
<string name="all_apps_search_bar_hint" msgid="7084713969757597256">"Hledat aplikace"</string>
|
||||
<string name="all_apps_loading_message" msgid="7557140873644765180">"Načítání aplikací…"</string>
|
||||
<string name="all_apps_no_search_results" msgid="6332185285860416787">"Dotazu „<xliff:g id="QUERY">%1$s</xliff:g>“ neodpovídají žádné aplikace"</string>
|
||||
<string name="all_apps_search_bar_hint" msgid="1390553134053255246">"Hledat v aplikacích"</string>
|
||||
<string name="all_apps_loading_message" msgid="5813968043155271636">"Načítání aplikací…"</string>
|
||||
<string name="all_apps_no_search_results" msgid="3200346862396363786">"Dotazu „<xliff:g id="QUERY">%1$s</xliff:g>“ neodpovídají žádné aplikace"</string>
|
||||
<string name="all_apps_search_market_message" msgid="1366263386197059176">"Vyhledat další aplikace"</string>
|
||||
<string name="notifications_header" msgid="1404149926117359025">"Oznámení"</string>
|
||||
<string name="out_of_space" msgid="4691004494942118364">"Na této ploše již není místo."</string>
|
||||
@@ -79,17 +79,18 @@
|
||||
<string name="icon_badging_title" msgid="874121399231955394">"Puntíky s oznámeními"</string>
|
||||
<string name="icon_badging_desc_on" msgid="2627952638544674079">"Zapnuto"</string>
|
||||
<string name="icon_badging_desc_off" msgid="5503319969924580241">"Vypnuto"</string>
|
||||
<string name="title_missing_notification_access" msgid="7503287056163941064">"Je třeba udělit přístup k oznámením"</string>
|
||||
<string name="msg_missing_notification_access" msgid="281113995110910548">"Chcete-li zobrazovat puntíky s oznámeními, zapněte oznámení z aplikace <xliff:g id="NAME">%1$s</xliff:g>"</string>
|
||||
<string name="title_change_settings" msgid="1376365968844349552">"Změnit nastavení"</string>
|
||||
<string name="auto_add_shortcuts_label" msgid="8222286205987725611">"Přidat ikonu na plochu"</string>
|
||||
<string name="auto_add_shortcuts_description" msgid="7117251166066978730">"Pro nové aplikace"</string>
|
||||
<!-- no translation found for icon_shape_override_label (2977264953998281004) -->
|
||||
<skip />
|
||||
<string name="icon_shape_override_label" msgid="2977264953998281004">"Změnit tvar ikony"</string>
|
||||
<string name="icon_shape_system_default" msgid="1709762974822753030">"Použít výchozí nastavení systému"</string>
|
||||
<string name="icon_shape_square" msgid="633575066111622774">"Čtverec"</string>
|
||||
<string name="icon_shape_squircle" msgid="5658049910802669495">"Kruh/čtverec"</string>
|
||||
<string name="icon_shape_circle" msgid="6550072265930144217">"Kruh"</string>
|
||||
<string name="icon_shape_teardrop" msgid="4525869388200835463">"Slza"</string>
|
||||
<!-- no translation found for icon_shape_override_progress (3461735694970239908) -->
|
||||
<skip />
|
||||
<string name="icon_shape_override_progress" msgid="3461735694970239908">"Tvar ikony se mění"</string>
|
||||
<string name="package_state_unknown" msgid="7592128424511031410">"Neznámé"</string>
|
||||
<string name="abandoned_clean_this" msgid="7610119707847920412">"Odstranit"</string>
|
||||
<string name="abandoned_search" msgid="891119232568284442">"Hledat"</string>
|
||||
|
||||
@@ -35,9 +35,9 @@
|
||||
<string name="widget_accessible_dims_format" msgid="3640149169885301790">"%1$d i bredden og %2$d i højden"</string>
|
||||
<string name="add_item_request_drag_hint" msgid="5899764264480397019">"Tryk, og hold fingeren nede for at placere manuelt"</string>
|
||||
<string name="place_automatically" msgid="8064208734425456485">"Tilføj automatisk"</string>
|
||||
<string name="all_apps_search_bar_hint" msgid="7084713969757597256">"Søg i Apps"</string>
|
||||
<string name="all_apps_loading_message" msgid="7557140873644765180">"Indlæser apps…"</string>
|
||||
<string name="all_apps_no_search_results" msgid="6332185285860416787">"Der blev ikke fundet nogen apps, som matcher \"<xliff:g id="QUERY">%1$s</xliff:g>\""</string>
|
||||
<string name="all_apps_search_bar_hint" msgid="1390553134053255246">"Søg efter apps"</string>
|
||||
<string name="all_apps_loading_message" msgid="5813968043155271636">"Indlæser apps…"</string>
|
||||
<string name="all_apps_no_search_results" msgid="3200346862396363786">"Der blev ikke fundet nogen apps, som matcher \"<xliff:g id="QUERY">%1$s</xliff:g>\""</string>
|
||||
<string name="all_apps_search_market_message" msgid="1366263386197059176">"Søg efter flere apps"</string>
|
||||
<string name="notifications_header" msgid="1404149926117359025">"Underretninger"</string>
|
||||
<string name="out_of_space" msgid="4691004494942118364">"Der er ikke mere plads på denne startskærm."</string>
|
||||
@@ -79,17 +79,18 @@
|
||||
<string name="icon_badging_title" msgid="874121399231955394">"Underretningscirkler"</string>
|
||||
<string name="icon_badging_desc_on" msgid="2627952638544674079">"Til"</string>
|
||||
<string name="icon_badging_desc_off" msgid="5503319969924580241">"Fra"</string>
|
||||
<string name="title_missing_notification_access" msgid="7503287056163941064">"Kræver adgang til underretninger"</string>
|
||||
<string name="msg_missing_notification_access" msgid="281113995110910548">"Hvis du vil se underretningscirkler, skal du aktivere appunderretninger for <xliff:g id="NAME">%1$s</xliff:g>"</string>
|
||||
<string name="title_change_settings" msgid="1376365968844349552">"Skift indstillinger"</string>
|
||||
<string name="auto_add_shortcuts_label" msgid="8222286205987725611">"Føj ikon til startskærmen"</string>
|
||||
<string name="auto_add_shortcuts_description" msgid="7117251166066978730">"For nye apps"</string>
|
||||
<!-- no translation found for icon_shape_override_label (2977264953998281004) -->
|
||||
<skip />
|
||||
<string name="icon_shape_override_label" msgid="2977264953998281004">"Skift ikonform"</string>
|
||||
<string name="icon_shape_system_default" msgid="1709762974822753030">"Brug systemstandarden"</string>
|
||||
<string name="icon_shape_square" msgid="633575066111622774">"Kvadrat"</string>
|
||||
<string name="icon_shape_squircle" msgid="5658049910802669495">"Kvadrat med runde hjørner"</string>
|
||||
<string name="icon_shape_circle" msgid="6550072265930144217">"Cirkel"</string>
|
||||
<string name="icon_shape_teardrop" msgid="4525869388200835463">"Dråbeform"</string>
|
||||
<!-- no translation found for icon_shape_override_progress (3461735694970239908) -->
|
||||
<skip />
|
||||
<string name="icon_shape_override_progress" msgid="3461735694970239908">"Anvender ændringer af ikonform"</string>
|
||||
<string name="package_state_unknown" msgid="7592128424511031410">"Ukendt"</string>
|
||||
<string name="abandoned_clean_this" msgid="7610119707847920412">"Fjern"</string>
|
||||
<string name="abandoned_search" msgid="891119232568284442">"Søg"</string>
|
||||
|
||||
@@ -35,9 +35,9 @@
|
||||
<string name="widget_accessible_dims_format" msgid="3640149169885301790">"%1$d breit und %2$d hoch"</string>
|
||||
<string name="add_item_request_drag_hint" msgid="5899764264480397019">"Zum manuellen Hinzufügen gedrückt halten"</string>
|
||||
<string name="place_automatically" msgid="8064208734425456485">"Automatisch hinzufügen"</string>
|
||||
<string name="all_apps_search_bar_hint" msgid="7084713969757597256">"In Apps suchen"</string>
|
||||
<string name="all_apps_loading_message" msgid="7557140873644765180">"Apps werden geladen..."</string>
|
||||
<string name="all_apps_no_search_results" msgid="6332185285860416787">"Keine Apps für \"<xliff:g id="QUERY">%1$s</xliff:g>\" gefunden"</string>
|
||||
<string name="all_apps_search_bar_hint" msgid="1390553134053255246">"Apps finden"</string>
|
||||
<string name="all_apps_loading_message" msgid="5813968043155271636">"Apps werden geladen…"</string>
|
||||
<string name="all_apps_no_search_results" msgid="3200346862396363786">"Keine Apps für \"<xliff:g id="QUERY">%1$s</xliff:g>\" gefunden"</string>
|
||||
<string name="all_apps_search_market_message" msgid="1366263386197059176">"Weitere Apps suchen"</string>
|
||||
<string name="notifications_header" msgid="1404149926117359025">"Benachrichtigungen"</string>
|
||||
<string name="out_of_space" msgid="4691004494942118364">"Auf diesem Startbildschirm ist kein Platz mehr vorhanden."</string>
|
||||
@@ -79,17 +79,18 @@
|
||||
<string name="icon_badging_title" msgid="874121399231955394">"App-Benachrichtigungspunkte"</string>
|
||||
<string name="icon_badging_desc_on" msgid="2627952638544674079">"Aktiviert"</string>
|
||||
<string name="icon_badging_desc_off" msgid="5503319969924580241">"Deaktiviert"</string>
|
||||
<string name="title_missing_notification_access" msgid="7503287056163941064">"Benachrichtigungszugriff erforderlich"</string>
|
||||
<string name="msg_missing_notification_access" msgid="281113995110910548">"Um dir Benachrichtigungspunkte anzeigen zu lassen, aktiviere die Benachrichtigungen für die App \"<xliff:g id="NAME">%1$s</xliff:g>\""</string>
|
||||
<string name="title_change_settings" msgid="1376365968844349552">"Einstellungen ändern"</string>
|
||||
<string name="auto_add_shortcuts_label" msgid="8222286205987725611">"Symbol zu Startbildschirm hinzufügen"</string>
|
||||
<string name="auto_add_shortcuts_description" msgid="7117251166066978730">"Für neue Apps"</string>
|
||||
<!-- no translation found for icon_shape_override_label (2977264953998281004) -->
|
||||
<skip />
|
||||
<string name="icon_shape_override_label" msgid="2977264953998281004">"Form des Symbols ändern"</string>
|
||||
<string name="icon_shape_system_default" msgid="1709762974822753030">"Systemstandardeinstellung verwenden"</string>
|
||||
<string name="icon_shape_square" msgid="633575066111622774">"Quadrat"</string>
|
||||
<string name="icon_shape_squircle" msgid="5658049910802669495">"Superkreis"</string>
|
||||
<string name="icon_shape_circle" msgid="6550072265930144217">"Kreis"</string>
|
||||
<string name="icon_shape_teardrop" msgid="4525869388200835463">"Träne"</string>
|
||||
<!-- no translation found for icon_shape_override_progress (3461735694970239908) -->
|
||||
<skip />
|
||||
<string name="icon_shape_override_progress" msgid="3461735694970239908">"Änderungen an der Form des Symbols werden übernommen"</string>
|
||||
<string name="package_state_unknown" msgid="7592128424511031410">"Unbekannt"</string>
|
||||
<string name="abandoned_clean_this" msgid="7610119707847920412">"Entfernen"</string>
|
||||
<string name="abandoned_search" msgid="891119232568284442">"Suchen"</string>
|
||||
|
||||
@@ -35,9 +35,9 @@
|
||||
<string name="widget_accessible_dims_format" msgid="3640149169885301790">"Πλάτος %1$d επί ύψος %2$d"</string>
|
||||
<string name="add_item_request_drag_hint" msgid="5899764264480397019">"Αγγίξτε παρατεταμένα για μη αυτόματη τοποθέτηση"</string>
|
||||
<string name="place_automatically" msgid="8064208734425456485">"Αυτόματη προσθήκη"</string>
|
||||
<string name="all_apps_search_bar_hint" msgid="7084713969757597256">"Αναζήτηση εφαρμογών"</string>
|
||||
<string name="all_apps_loading_message" msgid="7557140873644765180">"Φόρτωση εφαρμογών…"</string>
|
||||
<string name="all_apps_no_search_results" msgid="6332185285860416787">"Δεν βρέθηκαν εφαρμογές για το ερώτημα \"<xliff:g id="QUERY">%1$s</xliff:g>\""</string>
|
||||
<string name="all_apps_search_bar_hint" msgid="1390553134053255246">"Αναζήτηση εφαρμογών"</string>
|
||||
<string name="all_apps_loading_message" msgid="5813968043155271636">"Φόρτωση εφαρμογών…"</string>
|
||||
<string name="all_apps_no_search_results" msgid="3200346862396363786">"Δεν βρέθηκαν εφαρμογές αντιστοίχισης για \"<xliff:g id="QUERY">%1$s</xliff:g>\""</string>
|
||||
<string name="all_apps_search_market_message" msgid="1366263386197059176">"Αναζήτηση περισσότερων εφαρμογών"</string>
|
||||
<string name="notifications_header" msgid="1404149926117359025">"Ειδοποιήσεις"</string>
|
||||
<string name="out_of_space" msgid="4691004494942118364">"Δεν υπάρχει χώρος σε αυτήν την αρχική οθόνη."</string>
|
||||
@@ -79,17 +79,18 @@
|
||||
<string name="icon_badging_title" msgid="874121399231955394">"Κουκκίδες ειδοποίησης"</string>
|
||||
<string name="icon_badging_desc_on" msgid="2627952638544674079">"Ενεργή"</string>
|
||||
<string name="icon_badging_desc_off" msgid="5503319969924580241">"Ανενεργή"</string>
|
||||
<string name="title_missing_notification_access" msgid="7503287056163941064">"Απαιτείται πρόσβαση στις ειδοποιήσεις"</string>
|
||||
<string name="msg_missing_notification_access" msgid="281113995110910548">"Για να εμφανιστούν οι Κουκκίδες ειδοποίησης, ενεργοποιήστε τις κουκκίδες εφαρμογής για την εφαρμογή <xliff:g id="NAME">%1$s</xliff:g>"</string>
|
||||
<string name="title_change_settings" msgid="1376365968844349552">"Αλλαγή ρυθμίσεων"</string>
|
||||
<string name="auto_add_shortcuts_label" msgid="8222286205987725611">"Προσθήκη εικονιδίου στην Αρχική οθόνη"</string>
|
||||
<string name="auto_add_shortcuts_description" msgid="7117251166066978730">"Για νέες εφαρμογές"</string>
|
||||
<!-- no translation found for icon_shape_override_label (2977264953998281004) -->
|
||||
<skip />
|
||||
<string name="icon_shape_override_label" msgid="2977264953998281004">"Αλλαγή σχήματος εικονιδίου"</string>
|
||||
<string name="icon_shape_system_default" msgid="1709762974822753030">"Χρήση προεπιλογής συστήματος"</string>
|
||||
<string name="icon_shape_square" msgid="633575066111622774">"Τετράγωνο"</string>
|
||||
<string name="icon_shape_squircle" msgid="5658049910802669495">"Στρογγυλεμένο τετράγωνο"</string>
|
||||
<string name="icon_shape_circle" msgid="6550072265930144217">"Κύκλος"</string>
|
||||
<string name="icon_shape_teardrop" msgid="4525869388200835463">"Δάκρυ"</string>
|
||||
<!-- no translation found for icon_shape_override_progress (3461735694970239908) -->
|
||||
<skip />
|
||||
<string name="icon_shape_override_progress" msgid="3461735694970239908">"Εφαρμογή αλλαγών σχήματος εικονιδίων"</string>
|
||||
<string name="package_state_unknown" msgid="7592128424511031410">"Άγνωστο"</string>
|
||||
<string name="abandoned_clean_this" msgid="7610119707847920412">"Κατάργηση"</string>
|
||||
<string name="abandoned_search" msgid="891119232568284442">"Αναζήτηση"</string>
|
||||
|
||||
@@ -35,9 +35,9 @@
|
||||
<string name="widget_accessible_dims_format" msgid="3640149169885301790">"%1$d wide by %2$d high"</string>
|
||||
<string name="add_item_request_drag_hint" msgid="5899764264480397019">"Touch & hold to place manually"</string>
|
||||
<string name="place_automatically" msgid="8064208734425456485">"Add automatically"</string>
|
||||
<string name="all_apps_search_bar_hint" msgid="7084713969757597256">"Search Apps"</string>
|
||||
<string name="all_apps_loading_message" msgid="7557140873644765180">"Loading Apps…"</string>
|
||||
<string name="all_apps_no_search_results" msgid="6332185285860416787">"No Apps found matching \"<xliff:g id="QUERY">%1$s</xliff:g>\""</string>
|
||||
<string name="all_apps_search_bar_hint" msgid="1390553134053255246">"Search apps"</string>
|
||||
<string name="all_apps_loading_message" msgid="5813968043155271636">"Loading apps…"</string>
|
||||
<string name="all_apps_no_search_results" msgid="3200346862396363786">"No apps found matching \'<xliff:g id="QUERY">%1$s</xliff:g>\'"</string>
|
||||
<string name="all_apps_search_market_message" msgid="1366263386197059176">"Search for more apps"</string>
|
||||
<string name="notifications_header" msgid="1404149926117359025">"Notifications"</string>
|
||||
<string name="out_of_space" msgid="4691004494942118364">"No more room on this Home screen."</string>
|
||||
@@ -79,17 +79,18 @@
|
||||
<string name="icon_badging_title" msgid="874121399231955394">"Notification dots"</string>
|
||||
<string name="icon_badging_desc_on" msgid="2627952638544674079">"On"</string>
|
||||
<string name="icon_badging_desc_off" msgid="5503319969924580241">"Off"</string>
|
||||
<string name="title_missing_notification_access" msgid="7503287056163941064">"Notification access needed"</string>
|
||||
<string name="msg_missing_notification_access" msgid="281113995110910548">"To show Notification Dots, turn on app notifications for <xliff:g id="NAME">%1$s</xliff:g>"</string>
|
||||
<string name="title_change_settings" msgid="1376365968844349552">"Change settings"</string>
|
||||
<string name="auto_add_shortcuts_label" msgid="8222286205987725611">"Add icon to Home screen"</string>
|
||||
<string name="auto_add_shortcuts_description" msgid="7117251166066978730">"For new apps"</string>
|
||||
<!-- no translation found for icon_shape_override_label (2977264953998281004) -->
|
||||
<skip />
|
||||
<string name="icon_shape_override_label" msgid="2977264953998281004">"Change icon shape"</string>
|
||||
<string name="icon_shape_system_default" msgid="1709762974822753030">"Use system default"</string>
|
||||
<string name="icon_shape_square" msgid="633575066111622774">"Square"</string>
|
||||
<string name="icon_shape_squircle" msgid="5658049910802669495">"Squircle"</string>
|
||||
<string name="icon_shape_circle" msgid="6550072265930144217">"Circle"</string>
|
||||
<string name="icon_shape_teardrop" msgid="4525869388200835463">"Teardrop"</string>
|
||||
<!-- no translation found for icon_shape_override_progress (3461735694970239908) -->
|
||||
<skip />
|
||||
<string name="icon_shape_override_progress" msgid="3461735694970239908">"Applying icon shape changes"</string>
|
||||
<string name="package_state_unknown" msgid="7592128424511031410">"Unknown"</string>
|
||||
<string name="abandoned_clean_this" msgid="7610119707847920412">"Remove"</string>
|
||||
<string name="abandoned_search" msgid="891119232568284442">"Search"</string>
|
||||
|
||||
@@ -35,9 +35,9 @@
|
||||
<string name="widget_accessible_dims_format" msgid="3640149169885301790">"%1$d wide by %2$d high"</string>
|
||||
<string name="add_item_request_drag_hint" msgid="5899764264480397019">"Touch & hold to place manually"</string>
|
||||
<string name="place_automatically" msgid="8064208734425456485">"Add automatically"</string>
|
||||
<string name="all_apps_search_bar_hint" msgid="7084713969757597256">"Search Apps"</string>
|
||||
<string name="all_apps_loading_message" msgid="7557140873644765180">"Loading Apps…"</string>
|
||||
<string name="all_apps_no_search_results" msgid="6332185285860416787">"No Apps found matching \"<xliff:g id="QUERY">%1$s</xliff:g>\""</string>
|
||||
<string name="all_apps_search_bar_hint" msgid="1390553134053255246">"Search apps"</string>
|
||||
<string name="all_apps_loading_message" msgid="5813968043155271636">"Loading apps…"</string>
|
||||
<string name="all_apps_no_search_results" msgid="3200346862396363786">"No apps found matching \'<xliff:g id="QUERY">%1$s</xliff:g>\'"</string>
|
||||
<string name="all_apps_search_market_message" msgid="1366263386197059176">"Search for more apps"</string>
|
||||
<string name="notifications_header" msgid="1404149926117359025">"Notifications"</string>
|
||||
<string name="out_of_space" msgid="4691004494942118364">"No more room on this Home screen."</string>
|
||||
@@ -79,17 +79,18 @@
|
||||
<string name="icon_badging_title" msgid="874121399231955394">"Notification dots"</string>
|
||||
<string name="icon_badging_desc_on" msgid="2627952638544674079">"On"</string>
|
||||
<string name="icon_badging_desc_off" msgid="5503319969924580241">"Off"</string>
|
||||
<string name="title_missing_notification_access" msgid="7503287056163941064">"Notification access needed"</string>
|
||||
<string name="msg_missing_notification_access" msgid="281113995110910548">"To show Notification Dots, turn on app notifications for <xliff:g id="NAME">%1$s</xliff:g>"</string>
|
||||
<string name="title_change_settings" msgid="1376365968844349552">"Change settings"</string>
|
||||
<string name="auto_add_shortcuts_label" msgid="8222286205987725611">"Add icon to Home screen"</string>
|
||||
<string name="auto_add_shortcuts_description" msgid="7117251166066978730">"For new apps"</string>
|
||||
<!-- no translation found for icon_shape_override_label (2977264953998281004) -->
|
||||
<skip />
|
||||
<string name="icon_shape_override_label" msgid="2977264953998281004">"Change icon shape"</string>
|
||||
<string name="icon_shape_system_default" msgid="1709762974822753030">"Use system default"</string>
|
||||
<string name="icon_shape_square" msgid="633575066111622774">"Square"</string>
|
||||
<string name="icon_shape_squircle" msgid="5658049910802669495">"Squircle"</string>
|
||||
<string name="icon_shape_circle" msgid="6550072265930144217">"Circle"</string>
|
||||
<string name="icon_shape_teardrop" msgid="4525869388200835463">"Teardrop"</string>
|
||||
<!-- no translation found for icon_shape_override_progress (3461735694970239908) -->
|
||||
<skip />
|
||||
<string name="icon_shape_override_progress" msgid="3461735694970239908">"Applying icon shape changes"</string>
|
||||
<string name="package_state_unknown" msgid="7592128424511031410">"Unknown"</string>
|
||||
<string name="abandoned_clean_this" msgid="7610119707847920412">"Remove"</string>
|
||||
<string name="abandoned_search" msgid="891119232568284442">"Search"</string>
|
||||
|
||||
@@ -35,9 +35,9 @@
|
||||
<string name="widget_accessible_dims_format" msgid="3640149169885301790">"%1$d wide by %2$d high"</string>
|
||||
<string name="add_item_request_drag_hint" msgid="5899764264480397019">"Touch & hold to place manually"</string>
|
||||
<string name="place_automatically" msgid="8064208734425456485">"Add automatically"</string>
|
||||
<string name="all_apps_search_bar_hint" msgid="7084713969757597256">"Search Apps"</string>
|
||||
<string name="all_apps_loading_message" msgid="7557140873644765180">"Loading Apps…"</string>
|
||||
<string name="all_apps_no_search_results" msgid="6332185285860416787">"No Apps found matching \"<xliff:g id="QUERY">%1$s</xliff:g>\""</string>
|
||||
<string name="all_apps_search_bar_hint" msgid="1390553134053255246">"Search apps"</string>
|
||||
<string name="all_apps_loading_message" msgid="5813968043155271636">"Loading apps…"</string>
|
||||
<string name="all_apps_no_search_results" msgid="3200346862396363786">"No apps found matching \'<xliff:g id="QUERY">%1$s</xliff:g>\'"</string>
|
||||
<string name="all_apps_search_market_message" msgid="1366263386197059176">"Search for more apps"</string>
|
||||
<string name="notifications_header" msgid="1404149926117359025">"Notifications"</string>
|
||||
<string name="out_of_space" msgid="4691004494942118364">"No more room on this Home screen."</string>
|
||||
@@ -79,17 +79,18 @@
|
||||
<string name="icon_badging_title" msgid="874121399231955394">"Notification dots"</string>
|
||||
<string name="icon_badging_desc_on" msgid="2627952638544674079">"On"</string>
|
||||
<string name="icon_badging_desc_off" msgid="5503319969924580241">"Off"</string>
|
||||
<string name="title_missing_notification_access" msgid="7503287056163941064">"Notification access needed"</string>
|
||||
<string name="msg_missing_notification_access" msgid="281113995110910548">"To show Notification Dots, turn on app notifications for <xliff:g id="NAME">%1$s</xliff:g>"</string>
|
||||
<string name="title_change_settings" msgid="1376365968844349552">"Change settings"</string>
|
||||
<string name="auto_add_shortcuts_label" msgid="8222286205987725611">"Add icon to Home screen"</string>
|
||||
<string name="auto_add_shortcuts_description" msgid="7117251166066978730">"For new apps"</string>
|
||||
<!-- no translation found for icon_shape_override_label (2977264953998281004) -->
|
||||
<skip />
|
||||
<string name="icon_shape_override_label" msgid="2977264953998281004">"Change icon shape"</string>
|
||||
<string name="icon_shape_system_default" msgid="1709762974822753030">"Use system default"</string>
|
||||
<string name="icon_shape_square" msgid="633575066111622774">"Square"</string>
|
||||
<string name="icon_shape_squircle" msgid="5658049910802669495">"Squircle"</string>
|
||||
<string name="icon_shape_circle" msgid="6550072265930144217">"Circle"</string>
|
||||
<string name="icon_shape_teardrop" msgid="4525869388200835463">"Teardrop"</string>
|
||||
<!-- no translation found for icon_shape_override_progress (3461735694970239908) -->
|
||||
<skip />
|
||||
<string name="icon_shape_override_progress" msgid="3461735694970239908">"Applying icon shape changes"</string>
|
||||
<string name="package_state_unknown" msgid="7592128424511031410">"Unknown"</string>
|
||||
<string name="abandoned_clean_this" msgid="7610119707847920412">"Remove"</string>
|
||||
<string name="abandoned_search" msgid="891119232568284442">"Search"</string>
|
||||
|
||||
@@ -35,9 +35,9 @@
|
||||
<string name="widget_accessible_dims_format" msgid="3640149169885301790">"%1$d de ancho por %2$d de alto"</string>
|
||||
<string name="add_item_request_drag_hint" msgid="5899764264480397019">"Mantén presionado para ubicarlo manualmente"</string>
|
||||
<string name="place_automatically" msgid="8064208734425456485">"Agregar automáticamente"</string>
|
||||
<string name="all_apps_search_bar_hint" msgid="7084713969757597256">"Buscar aplicaciones"</string>
|
||||
<string name="all_apps_loading_message" msgid="7557140873644765180">"Cargando aplicaciones…"</string>
|
||||
<string name="all_apps_no_search_results" msgid="6332185285860416787">"No hay aplicaciones que coincidan con <xliff:g id="QUERY">%1$s</xliff:g>."</string>
|
||||
<string name="all_apps_search_bar_hint" msgid="1390553134053255246">"Buscar apps"</string>
|
||||
<string name="all_apps_loading_message" msgid="5813968043155271636">"Cargando apps…"</string>
|
||||
<string name="all_apps_no_search_results" msgid="3200346862396363786">"No hay apps que coincidan con \"<xliff:g id="QUERY">%1$s</xliff:g>\""</string>
|
||||
<string name="all_apps_search_market_message" msgid="1366263386197059176">"Buscar más apps"</string>
|
||||
<string name="notifications_header" msgid="1404149926117359025">"Notificaciones"</string>
|
||||
<string name="out_of_space" msgid="4691004494942118364">"No hay más espacio en esta pantalla principal."</string>
|
||||
@@ -79,17 +79,18 @@
|
||||
<string name="icon_badging_title" msgid="874121399231955394">"Puntos de notificación"</string>
|
||||
<string name="icon_badging_desc_on" msgid="2627952638544674079">"Activada"</string>
|
||||
<string name="icon_badging_desc_off" msgid="5503319969924580241">"Desactivada"</string>
|
||||
<string name="title_missing_notification_access" msgid="7503287056163941064">"Se necesita acceso a las notificaciones"</string>
|
||||
<string name="msg_missing_notification_access" msgid="281113995110910548">"Para mostrar los puntos de notificación, activa las notificaciones de la app para <xliff:g id="NAME">%1$s</xliff:g>"</string>
|
||||
<string name="title_change_settings" msgid="1376365968844349552">"Cambiar la configuración"</string>
|
||||
<string name="auto_add_shortcuts_label" msgid="8222286205987725611">"Agregar ícono a la pantalla principal"</string>
|
||||
<string name="auto_add_shortcuts_description" msgid="7117251166066978730">"Para nuevas apps"</string>
|
||||
<!-- no translation found for icon_shape_override_label (2977264953998281004) -->
|
||||
<skip />
|
||||
<string name="icon_shape_override_label" msgid="2977264953998281004">"Cambiar forma de los íconos"</string>
|
||||
<string name="icon_shape_system_default" msgid="1709762974822753030">"Usar el sistema predeterminado"</string>
|
||||
<string name="icon_shape_square" msgid="633575066111622774">"Cuadrado"</string>
|
||||
<string name="icon_shape_squircle" msgid="5658049910802669495">"Cuadrado con esquinas redondeadas"</string>
|
||||
<string name="icon_shape_circle" msgid="6550072265930144217">"Círculo"</string>
|
||||
<string name="icon_shape_teardrop" msgid="4525869388200835463">"Gota"</string>
|
||||
<!-- no translation found for icon_shape_override_progress (3461735694970239908) -->
|
||||
<skip />
|
||||
<string name="icon_shape_override_progress" msgid="3461735694970239908">"Aplicando cambio en la forma de los íconos"</string>
|
||||
<string name="package_state_unknown" msgid="7592128424511031410">"Desconocido"</string>
|
||||
<string name="abandoned_clean_this" msgid="7610119707847920412">"Eliminar"</string>
|
||||
<string name="abandoned_search" msgid="891119232568284442">"Buscar"</string>
|
||||
|
||||
@@ -35,9 +35,9 @@
|
||||
<string name="widget_accessible_dims_format" msgid="3640149169885301790">"%1$d de ancho por %2$d de alto"</string>
|
||||
<string name="add_item_request_drag_hint" msgid="5899764264480397019">"Mantenlo pulsado para añadirlo manualmente"</string>
|
||||
<string name="place_automatically" msgid="8064208734425456485">"Añadir automáticamente"</string>
|
||||
<string name="all_apps_search_bar_hint" msgid="7084713969757597256">"Busca aplicaciones"</string>
|
||||
<string name="all_apps_loading_message" msgid="7557140873644765180">"Cargando aplicaciones…"</string>
|
||||
<string name="all_apps_no_search_results" msgid="6332185285860416787">"No se han encontrado aplicaciones que contengan \"<xliff:g id="QUERY">%1$s</xliff:g>\""</string>
|
||||
<string name="all_apps_search_bar_hint" msgid="1390553134053255246">"Buscar aplicaciones"</string>
|
||||
<string name="all_apps_loading_message" msgid="5813968043155271636">"Cargando aplicaciones…"</string>
|
||||
<string name="all_apps_no_search_results" msgid="3200346862396363786">"No se han encontrado aplicaciones que contengan \"<xliff:g id="QUERY">%1$s</xliff:g>\""</string>
|
||||
<string name="all_apps_search_market_message" msgid="1366263386197059176">"Buscar más aplicaciones"</string>
|
||||
<string name="notifications_header" msgid="1404149926117359025">"Notificaciones"</string>
|
||||
<string name="out_of_space" msgid="4691004494942118364">"No queda espacio en la pantalla de inicio."</string>
|
||||
@@ -79,17 +79,18 @@
|
||||
<string name="icon_badging_title" msgid="874121399231955394">"Puntos de notificación"</string>
|
||||
<string name="icon_badging_desc_on" msgid="2627952638544674079">"Activada"</string>
|
||||
<string name="icon_badging_desc_off" msgid="5503319969924580241">"Desactivada"</string>
|
||||
<string name="title_missing_notification_access" msgid="7503287056163941064">"Se necesita acceso a las notificaciones"</string>
|
||||
<string name="msg_missing_notification_access" msgid="281113995110910548">"Para mostrar burbujas de notificación, activa las notificaciones de <xliff:g id="NAME">%1$s</xliff:g>"</string>
|
||||
<string name="title_change_settings" msgid="1376365968844349552">"Cambiar ajustes"</string>
|
||||
<string name="auto_add_shortcuts_label" msgid="8222286205987725611">"Añadir icono a la pantalla de inicio"</string>
|
||||
<string name="auto_add_shortcuts_description" msgid="7117251166066978730">"Para nuevas aplicaciones"</string>
|
||||
<!-- no translation found for icon_shape_override_label (2977264953998281004) -->
|
||||
<skip />
|
||||
<string name="icon_shape_override_label" msgid="2977264953998281004">"Cambiar forma de los iconos"</string>
|
||||
<string name="icon_shape_system_default" msgid="1709762974822753030">"Usar opción predeterminada del sistema"</string>
|
||||
<string name="icon_shape_square" msgid="633575066111622774">"Cuadrado"</string>
|
||||
<string name="icon_shape_squircle" msgid="5658049910802669495">"Cuadrado con esquinas redondeadas"</string>
|
||||
<string name="icon_shape_circle" msgid="6550072265930144217">"Círculo"</string>
|
||||
<string name="icon_shape_teardrop" msgid="4525869388200835463">"Lágrima"</string>
|
||||
<!-- no translation found for icon_shape_override_progress (3461735694970239908) -->
|
||||
<skip />
|
||||
<string name="icon_shape_override_progress" msgid="3461735694970239908">"Aplicando cambios en la forma de los iconos"</string>
|
||||
<string name="package_state_unknown" msgid="7592128424511031410">"Desconocido"</string>
|
||||
<string name="abandoned_clean_this" msgid="7610119707847920412">"Quitar"</string>
|
||||
<string name="abandoned_search" msgid="891119232568284442">"Buscar"</string>
|
||||
|
||||
@@ -65,12 +65,26 @@
|
||||
<string name="folder_name_format" msgid="6629239338071103179">"Kaust: <xliff:g id="NAME">%1$s</xliff:g>"</string>
|
||||
<string name="widget_button_text" msgid="2880537293434387943">"Vidinad"</string>
|
||||
<string name="wallpaper_button_text" msgid="8404103075899945851">"Taustapildid"</string>
|
||||
<string name="settings_button_text" msgid="8119458837558863227">"Seaded"</string>
|
||||
<string name="settings_button_text" msgid="8873672322605444408">"Avalehe seaded"</string>
|
||||
<string name="msg_disabled_by_admin" msgid="6898038085516271325">"Keelas administraator"</string>
|
||||
<string name="accessibility_action_overview" msgid="6257665857640347026">"Ülevaade"</string>
|
||||
<string name="allow_rotation_title" msgid="7728578836261442095">"Luba avaekraani pööramine"</string>
|
||||
<string name="allow_rotation_desc" msgid="8662546029078692509">"Kui telefoni pööratakse"</string>
|
||||
<string name="allow_rotation_blocked_desc" msgid="3212602545192996253">"Praegune kuvaseade ei luba pööramist"</string>
|
||||
<string name="icon_badging_title" msgid="874121399231955394">"Märguandetäpid"</string>
|
||||
<string name="icon_badging_desc_on" msgid="2627952638544674079">"Sees"</string>
|
||||
<string name="icon_badging_desc_off" msgid="5503319969924580241">"Väljas"</string>
|
||||
<string name="auto_add_shortcuts_label" msgid="8222286205987725611">"Lisa ikoon avaekraanile"</string>
|
||||
<string name="auto_add_shortcuts_description" msgid="7117251166066978730">"Uute rakenduste puhul"</string>
|
||||
<!-- no translation found for icon_shape_override_label (2977264953998281004) -->
|
||||
<skip />
|
||||
<string name="icon_shape_system_default" msgid="1709762974822753030">"Kasuta süsteemi vaikeseadet"</string>
|
||||
<string name="icon_shape_square" msgid="633575066111622774">"Ruut"</string>
|
||||
<string name="icon_shape_squircle" msgid="5658049910802669495">"Ümarate nurkadega ruut"</string>
|
||||
<string name="icon_shape_circle" msgid="6550072265930144217">"Ring"</string>
|
||||
<string name="icon_shape_teardrop" msgid="4525869388200835463">"Tilk"</string>
|
||||
<!-- no translation found for icon_shape_override_progress (3461735694970239908) -->
|
||||
<skip />
|
||||
<string name="package_state_unknown" msgid="7592128424511031410">"Teadmata"</string>
|
||||
<string name="abandoned_clean_this" msgid="7610119707847920412">"Eemalda"</string>
|
||||
<string name="abandoned_search" msgid="891119232568284442">"Otsing"</string>
|
||||
@@ -104,4 +118,7 @@
|
||||
<string name="widget_resized" msgid="9130327887929620">"Vidina suurust muudeti. Laius: <xliff:g id="NUMBER_0">%1$s</xliff:g>. Kõrgus: <xliff:g id="NUMBER_1">%2$s</xliff:g>"</string>
|
||||
<string name="action_deep_shortcut" msgid="2864038805849372848">"Otseteed"</string>
|
||||
<string name="shortcuts_menu_description" msgid="406159963824238648">"<xliff:g id="NUMBER_OF_SHORTCUTS">%1$d</xliff:g> otseteed rakenduse <xliff:g id="APP_NAME">%2$s</xliff:g> jaoks"</string>
|
||||
<string name="shortcuts_menu_with_notifications_description" msgid="8985659504915468840">"<xliff:g id="NUMBER_OF_SHORTCUTS">%1$d</xliff:g> otseteed ja <xliff:g id="NUMBER_OF_NOTIFICATIONS">%2$d</xliff:g> märguannet rakendusele <xliff:g id="APP_NAME">%3$s</xliff:g>"</string>
|
||||
<string name="action_dismiss_notification" msgid="5909461085055959187">"Loobu"</string>
|
||||
<string name="notification_dismissed" msgid="6002233469409822874">"Märguandest loobuti"</string>
|
||||
</resources>
|
||||
|
||||
@@ -35,9 +35,9 @@
|
||||
<string name="widget_accessible_dims_format" msgid="3640149169885301790">"%1$d عرض در %2$d طول"</string>
|
||||
<string name="add_item_request_drag_hint" msgid="5899764264480397019">"برای قرار دادن بهصورت دستی لمس کنید و بکشید"</string>
|
||||
<string name="place_automatically" msgid="8064208734425456485">"افزودن خودکار"</string>
|
||||
<string name="all_apps_search_bar_hint" msgid="7084713969757597256">"جستجوی برنامهها"</string>
|
||||
<string name="all_apps_loading_message" msgid="7557140873644765180">"در حال بارگیری برنامهها..."</string>
|
||||
<string name="all_apps_no_search_results" msgid="6332185285860416787">"هیچ برنامهای مطابق با «<xliff:g id="QUERY">%1$s</xliff:g>» پیدا نشد"</string>
|
||||
<string name="all_apps_search_bar_hint" msgid="1390553134053255246">"جستجوی برنامهها"</string>
|
||||
<string name="all_apps_loading_message" msgid="5813968043155271636">"درحال بارگیری برنامهها…"</string>
|
||||
<string name="all_apps_no_search_results" msgid="3200346862396363786">"هیچ برنامهای در مطابقت با «<xliff:g id="QUERY">%1$s</xliff:g>» پیدا نشد"</string>
|
||||
<string name="all_apps_search_market_message" msgid="1366263386197059176">"جستجوی برنامههای بیشتر"</string>
|
||||
<string name="notifications_header" msgid="1404149926117359025">"اعلانها"</string>
|
||||
<string name="out_of_space" msgid="4691004494942118364">"فضای بیشتری در این صفحه اصلی موجود نیست."</string>
|
||||
@@ -79,17 +79,18 @@
|
||||
<string name="icon_badging_title" msgid="874121399231955394">"نقطههای اعلان"</string>
|
||||
<string name="icon_badging_desc_on" msgid="2627952638544674079">"روشن"</string>
|
||||
<string name="icon_badging_desc_off" msgid="5503319969924580241">"خاموش"</string>
|
||||
<string name="title_missing_notification_access" msgid="7503287056163941064">"دسترسی به اعلان نیاز است"</string>
|
||||
<string name="msg_missing_notification_access" msgid="281113995110910548">"برای نمایش «نقطههای اعلان»، اعلانهای برنامه را برای <xliff:g id="NAME">%1$s</xliff:g> روشن کنید"</string>
|
||||
<string name="title_change_settings" msgid="1376365968844349552">"تغییر تنظیمات"</string>
|
||||
<string name="auto_add_shortcuts_label" msgid="8222286205987725611">"افزودن نماد به صفحه اصلی"</string>
|
||||
<string name="auto_add_shortcuts_description" msgid="7117251166066978730">"برای برنامههای جدید"</string>
|
||||
<!-- no translation found for icon_shape_override_label (2977264953998281004) -->
|
||||
<skip />
|
||||
<string name="icon_shape_override_label" msgid="2977264953998281004">"تغییر شکل نماد"</string>
|
||||
<string name="icon_shape_system_default" msgid="1709762974822753030">"استفاده از پیشفرض سیستم"</string>
|
||||
<string name="icon_shape_square" msgid="633575066111622774">"مربع"</string>
|
||||
<string name="icon_shape_squircle" msgid="5658049910802669495">"مربع با گوشههای گرد"</string>
|
||||
<string name="icon_shape_circle" msgid="6550072265930144217">"دایره"</string>
|
||||
<string name="icon_shape_teardrop" msgid="4525869388200835463">"قطره اشک"</string>
|
||||
<!-- no translation found for icon_shape_override_progress (3461735694970239908) -->
|
||||
<skip />
|
||||
<string name="icon_shape_override_progress" msgid="3461735694970239908">"درحال اعمال کردن تغییرات شکل نماد"</string>
|
||||
<string name="package_state_unknown" msgid="7592128424511031410">"نامشخص"</string>
|
||||
<string name="abandoned_clean_this" msgid="7610119707847920412">"حذف"</string>
|
||||
<string name="abandoned_search" msgid="891119232568284442">"جستجو"</string>
|
||||
|
||||
@@ -35,9 +35,9 @@
|
||||
<string name="widget_accessible_dims_format" msgid="3640149169885301790">"Leveys: %1$d, korkeus: %2$d"</string>
|
||||
<string name="add_item_request_drag_hint" msgid="5899764264480397019">"Sijoita manuaalisesti koskettamalla pitkään."</string>
|
||||
<string name="place_automatically" msgid="8064208734425456485">"Lisää automaattisesti"</string>
|
||||
<string name="all_apps_search_bar_hint" msgid="7084713969757597256">"Sovellushaku"</string>
|
||||
<string name="all_apps_loading_message" msgid="7557140873644765180">"Ladataan sovelluksia…"</string>
|
||||
<string name="all_apps_no_search_results" msgid="6332185285860416787">"”<xliff:g id="QUERY">%1$s</xliff:g>” ei palauttanut sovelluksia."</string>
|
||||
<string name="all_apps_search_bar_hint" msgid="1390553134053255246">"Hae sovelluksia"</string>
|
||||
<string name="all_apps_loading_message" msgid="5813968043155271636">"Ladataan sovelluksia…"</string>
|
||||
<string name="all_apps_no_search_results" msgid="3200346862396363786">"<xliff:g id="QUERY">%1$s</xliff:g> ei palauttanut sovelluksia."</string>
|
||||
<string name="all_apps_search_market_message" msgid="1366263386197059176">"Hae lisää sovelluksia"</string>
|
||||
<string name="notifications_header" msgid="1404149926117359025">"Ilmoitukset"</string>
|
||||
<string name="out_of_space" msgid="4691004494942118364">"Tässä aloitusruudussa ei ole enää tilaa."</string>
|
||||
@@ -79,17 +79,18 @@
|
||||
<string name="icon_badging_title" msgid="874121399231955394">"Pistemerkit"</string>
|
||||
<string name="icon_badging_desc_on" msgid="2627952638544674079">"Käytössä"</string>
|
||||
<string name="icon_badging_desc_off" msgid="5503319969924580241">"Pois käytöstä"</string>
|
||||
<string name="title_missing_notification_access" msgid="7503287056163941064">"Ilmoituksien käyttöoikeus tarvitaan"</string>
|
||||
<string name="msg_missing_notification_access" msgid="281113995110910548">"<xliff:g id="NAME">%1$s</xliff:g> tarvitsee ilmoitusten käyttöoikeuden, jotta pistemerkkejä voidaan näyttää."</string>
|
||||
<string name="title_change_settings" msgid="1376365968844349552">"Muuta asetuksia"</string>
|
||||
<string name="auto_add_shortcuts_label" msgid="8222286205987725611">"Lisää kuvake aloitusruutuun"</string>
|
||||
<string name="auto_add_shortcuts_description" msgid="7117251166066978730">"Uusille sovelluksille"</string>
|
||||
<!-- no translation found for icon_shape_override_label (2977264953998281004) -->
|
||||
<skip />
|
||||
<string name="icon_shape_override_label" msgid="2977264953998281004">"Muuta kuvakkeen muotoa"</string>
|
||||
<string name="icon_shape_system_default" msgid="1709762974822753030">"Käytä järjestelmän oletusarvoa"</string>
|
||||
<string name="icon_shape_square" msgid="633575066111622774">"Neliö"</string>
|
||||
<string name="icon_shape_squircle" msgid="5658049910802669495">"Ympyräneliö"</string>
|
||||
<string name="icon_shape_circle" msgid="6550072265930144217">"Ympyrä"</string>
|
||||
<string name="icon_shape_teardrop" msgid="4525869388200835463">"Pisara"</string>
|
||||
<!-- no translation found for icon_shape_override_progress (3461735694970239908) -->
|
||||
<skip />
|
||||
<string name="icon_shape_override_progress" msgid="3461735694970239908">"Sovelletaan kuvakkeiden muotojen muutoksia"</string>
|
||||
<string name="package_state_unknown" msgid="7592128424511031410">"Tuntematon"</string>
|
||||
<string name="abandoned_clean_this" msgid="7610119707847920412">"Poista"</string>
|
||||
<string name="abandoned_search" msgid="891119232568284442">"Haku"</string>
|
||||
|
||||
@@ -35,9 +35,9 @@
|
||||
<string name="widget_accessible_dims_format" msgid="3640149169885301790">"%1$d de largeur sur %2$d de hauteur"</string>
|
||||
<string name="add_item_request_drag_hint" msgid="5899764264480397019">"Maintenez le doigt sur l\'élément pour le placer manuellement"</string>
|
||||
<string name="place_automatically" msgid="8064208734425456485">"Ajouter automatiquement"</string>
|
||||
<string name="all_apps_search_bar_hint" msgid="7084713969757597256">"Rechercher des applications"</string>
|
||||
<string name="all_apps_loading_message" msgid="7557140873644765180">"Chargement des applications en cours..."</string>
|
||||
<string name="all_apps_no_search_results" msgid="6332185285860416787">"Aucune application trouvée correspondant à « <xliff:g id="QUERY">%1$s</xliff:g> »"</string>
|
||||
<string name="all_apps_search_bar_hint" msgid="1390553134053255246">"Rechercher dans les applications"</string>
|
||||
<string name="all_apps_loading_message" msgid="5813968043155271636">"Chargement des applications en cours…"</string>
|
||||
<string name="all_apps_no_search_results" msgid="3200346862396363786">"Aucune application trouvée correspondant à « <xliff:g id="QUERY">%1$s</xliff:g> »"</string>
|
||||
<string name="all_apps_search_market_message" msgid="1366263386197059176">"Rechercher plus d\'applications"</string>
|
||||
<string name="notifications_header" msgid="1404149926117359025">"Notifications"</string>
|
||||
<string name="out_of_space" msgid="4691004494942118364">"Pas d\'espace libre sur l\'écran d\'accueil."</string>
|
||||
@@ -79,17 +79,18 @@
|
||||
<string name="icon_badging_title" msgid="874121399231955394">"Points de notification"</string>
|
||||
<string name="icon_badging_desc_on" msgid="2627952638544674079">"Activé"</string>
|
||||
<string name="icon_badging_desc_off" msgid="5503319969924580241">"Désactivé"</string>
|
||||
<string name="title_missing_notification_access" msgid="7503287056163941064">"L\'accès aux notifications est requis"</string>
|
||||
<string name="msg_missing_notification_access" msgid="281113995110910548">"Pour afficher les points de notification, activez les notifications d\'application pour <xliff:g id="NAME">%1$s</xliff:g>"</string>
|
||||
<string name="title_change_settings" msgid="1376365968844349552">"Modifier les paramètres"</string>
|
||||
<string name="auto_add_shortcuts_label" msgid="8222286205987725611">"Ajouter l\'icône à l\'écran d\'accueil"</string>
|
||||
<string name="auto_add_shortcuts_description" msgid="7117251166066978730">"Pour les nouvelles applications"</string>
|
||||
<!-- no translation found for icon_shape_override_label (2977264953998281004) -->
|
||||
<skip />
|
||||
<string name="icon_shape_override_label" msgid="2977264953998281004">"Modifier la forme de l\'icône"</string>
|
||||
<string name="icon_shape_system_default" msgid="1709762974822753030">"Utiliser les valeurs système par défaut"</string>
|
||||
<string name="icon_shape_square" msgid="633575066111622774">"Carré"</string>
|
||||
<string name="icon_shape_squircle" msgid="5658049910802669495">"Carré aux coins ronds"</string>
|
||||
<string name="icon_shape_circle" msgid="6550072265930144217">"Cercle"</string>
|
||||
<string name="icon_shape_teardrop" msgid="4525869388200835463">"Goutte"</string>
|
||||
<!-- no translation found for icon_shape_override_progress (3461735694970239908) -->
|
||||
<skip />
|
||||
<string name="icon_shape_override_progress" msgid="3461735694970239908">"Application des changements à la forme de l\'icône en cours…"</string>
|
||||
<string name="package_state_unknown" msgid="7592128424511031410">"Inconnu"</string>
|
||||
<string name="abandoned_clean_this" msgid="7610119707847920412">"Supprimer"</string>
|
||||
<string name="abandoned_search" msgid="891119232568284442">"Rechercher"</string>
|
||||
|
||||
@@ -35,9 +35,9 @@
|
||||
<string name="widget_accessible_dims_format" msgid="3640149169885301790">"%1$d de largeur et %2$d de hauteur"</string>
|
||||
<string name="add_item_request_drag_hint" msgid="5899764264480397019">"Appuyez de manière prolongée pour placer l\'élément manuellement"</string>
|
||||
<string name="place_automatically" msgid="8064208734425456485">"Ajouter automatiquement"</string>
|
||||
<string name="all_apps_search_bar_hint" msgid="7084713969757597256">"Rechercher dans les applications"</string>
|
||||
<string name="all_apps_loading_message" msgid="7557140873644765180">"Chargement des applications en cours…"</string>
|
||||
<string name="all_apps_no_search_results" msgid="6332185285860416787">"Aucune application ne correspond à la requête \"<xliff:g id="QUERY">%1$s</xliff:g>\"."</string>
|
||||
<string name="all_apps_search_bar_hint" msgid="1390553134053255246">"Rechercher dans les applications"</string>
|
||||
<string name="all_apps_loading_message" msgid="5813968043155271636">"Chargement des applications…"</string>
|
||||
<string name="all_apps_no_search_results" msgid="3200346862396363786">"Aucune application ne correspond à la requête \"<xliff:g id="QUERY">%1$s</xliff:g>\""</string>
|
||||
<string name="all_apps_search_market_message" msgid="1366263386197059176">"Rechercher plus d\'applications"</string>
|
||||
<string name="notifications_header" msgid="1404149926117359025">"Notifications"</string>
|
||||
<string name="out_of_space" msgid="4691004494942118364">"Pas d\'espace libre sur cet écran d\'accueil."</string>
|
||||
@@ -70,7 +70,7 @@
|
||||
<string name="folder_name_format" msgid="6629239338071103179">"Dossier \"<xliff:g id="NAME">%1$s</xliff:g>\""</string>
|
||||
<string name="widget_button_text" msgid="2880537293434387943">"Widgets"</string>
|
||||
<string name="wallpaper_button_text" msgid="8404103075899945851">"Fonds d\'écran"</string>
|
||||
<string name="settings_button_text" msgid="8873672322605444408">"Paramètres du domicile"</string>
|
||||
<string name="settings_button_text" msgid="8873672322605444408">"Paramètres de l\'écran d\'accueil"</string>
|
||||
<string name="msg_disabled_by_admin" msgid="6898038085516271325">"Désactivé par votre administrateur"</string>
|
||||
<string name="accessibility_action_overview" msgid="6257665857640347026">"Vue d\'ensemble"</string>
|
||||
<string name="allow_rotation_title" msgid="7728578836261442095">"Autoriser la rotation de l\'écran d\'accueil"</string>
|
||||
@@ -79,17 +79,18 @@
|
||||
<string name="icon_badging_title" msgid="874121399231955394">"Pastilles de notification"</string>
|
||||
<string name="icon_badging_desc_on" msgid="2627952638544674079">"Activé"</string>
|
||||
<string name="icon_badging_desc_off" msgid="5503319969924580241">"Désactivé"</string>
|
||||
<string name="title_missing_notification_access" msgid="7503287056163941064">"Accès aux notifications requis"</string>
|
||||
<string name="msg_missing_notification_access" msgid="281113995110910548">"Pour afficher les pastilles de notification, activez les notifications de l\'application <xliff:g id="NAME">%1$s</xliff:g>"</string>
|
||||
<string name="title_change_settings" msgid="1376365968844349552">"Modifier les paramètres"</string>
|
||||
<string name="auto_add_shortcuts_label" msgid="8222286205987725611">"Ajouter l\'icône à l\'écran d\'accueil"</string>
|
||||
<string name="auto_add_shortcuts_description" msgid="7117251166066978730">"Pour les nouvelles applications"</string>
|
||||
<!-- no translation found for icon_shape_override_label (2977264953998281004) -->
|
||||
<skip />
|
||||
<string name="icon_shape_override_label" msgid="2977264953998281004">"Modifier la forme des icônes"</string>
|
||||
<string name="icon_shape_system_default" msgid="1709762974822753030">"Utiliser la valeur système par défaut"</string>
|
||||
<string name="icon_shape_square" msgid="633575066111622774">"Carré"</string>
|
||||
<string name="icon_shape_squircle" msgid="5658049910802669495">"Squircle"</string>
|
||||
<string name="icon_shape_circle" msgid="6550072265930144217">"Cercle"</string>
|
||||
<string name="icon_shape_teardrop" msgid="4525869388200835463">"Goutte"</string>
|
||||
<!-- no translation found for icon_shape_override_progress (3461735694970239908) -->
|
||||
<skip />
|
||||
<string name="icon_shape_override_progress" msgid="3461735694970239908">"Application des modifications de forme des icônes…"</string>
|
||||
<string name="package_state_unknown" msgid="7592128424511031410">"Inconnu"</string>
|
||||
<string name="abandoned_clean_this" msgid="7610119707847920412">"Supprimer"</string>
|
||||
<string name="abandoned_search" msgid="891119232568284442">"Rechercher"</string>
|
||||
|
||||
@@ -35,9 +35,9 @@
|
||||
<string name="widget_accessible_dims_format" msgid="3640149169885301790">"%1$d चौड़ाई गुणा %2$d ऊंचाई"</string>
|
||||
<string name="add_item_request_drag_hint" msgid="5899764264480397019">"मैन्युअल रूप से जोड़ने के लिए स्पर्श करके रखें"</string>
|
||||
<string name="place_automatically" msgid="8064208734425456485">"अपने आप जोड़ें"</string>
|
||||
<string name="all_apps_search_bar_hint" msgid="7084713969757597256">"ऐप्स खोजें"</string>
|
||||
<string name="all_apps_loading_message" msgid="7557140873644765180">"ऐप्स लोड हो रहे हैं..."</string>
|
||||
<string name="all_apps_no_search_results" msgid="6332185285860416787">"\"<xliff:g id="QUERY">%1$s</xliff:g>\" से मिलान करने वाला कोई ऐप नहीं मिला"</string>
|
||||
<string name="all_apps_search_bar_hint" msgid="1390553134053255246">"ऐप्लिकेशन खोजें"</string>
|
||||
<string name="all_apps_loading_message" msgid="5813968043155271636">"ऐप्लिकेशन लोड हो रहे हैं…"</string>
|
||||
<string name="all_apps_no_search_results" msgid="3200346862396363786">"\"<xliff:g id="QUERY">%1$s</xliff:g>\" से मिलता-जुलता कोई ऐप्लिकेशन नहीं मिला"</string>
|
||||
<string name="all_apps_search_market_message" msgid="1366263386197059176">"अधिक ऐप्लिकेशन खोजें"</string>
|
||||
<string name="notifications_header" msgid="1404149926117359025">"नोटिफ़िकेशन"</string>
|
||||
<string name="out_of_space" msgid="4691004494942118364">"इस होम स्क्रीन पर स्थान शेष नहीं है."</string>
|
||||
@@ -79,17 +79,18 @@
|
||||
<string name="icon_badging_title" msgid="874121399231955394">"नोटिफ़िकेशन बिंदु"</string>
|
||||
<string name="icon_badging_desc_on" msgid="2627952638544674079">"चालू"</string>
|
||||
<string name="icon_badging_desc_off" msgid="5503319969924580241">"बंद"</string>
|
||||
<string name="title_missing_notification_access" msgid="7503287056163941064">"नोटिफ़िकेशन एक्सेस ज़रूरी है"</string>
|
||||
<string name="msg_missing_notification_access" msgid="281113995110910548">"नोटिफ़िकेशन बिंदु दिखाने के लिए, <xliff:g id="NAME">%1$s</xliff:g> के ऐप्लिकेशन नोटिफ़िकेशन चालू करें"</string>
|
||||
<string name="title_change_settings" msgid="1376365968844349552">"सेटिंग बदलें"</string>
|
||||
<string name="auto_add_shortcuts_label" msgid="8222286205987725611">"होम स्क्रीन में आइकन जोड़ें"</string>
|
||||
<string name="auto_add_shortcuts_description" msgid="7117251166066978730">"नए ऐप्लिकेशन के लिए"</string>
|
||||
<!-- no translation found for icon_shape_override_label (2977264953998281004) -->
|
||||
<skip />
|
||||
<string name="icon_shape_override_label" msgid="2977264953998281004">"आइकन का आकार बदलें"</string>
|
||||
<string name="icon_shape_system_default" msgid="1709762974822753030">"सिस्टम डिफ़ॉल्ट का उपयोग करें"</string>
|
||||
<string name="icon_shape_square" msgid="633575066111622774">"वर्ग"</string>
|
||||
<string name="icon_shape_squircle" msgid="5658049910802669495">"गोल कोनों वाला वर्ग"</string>
|
||||
<string name="icon_shape_circle" msgid="6550072265930144217">"मंडली"</string>
|
||||
<string name="icon_shape_teardrop" msgid="4525869388200835463">"आंसू की बूंद"</string>
|
||||
<!-- no translation found for icon_shape_override_progress (3461735694970239908) -->
|
||||
<skip />
|
||||
<string name="icon_shape_override_progress" msgid="3461735694970239908">"आइकन के आकार में बदलाव लागू किए जा रहे हैं"</string>
|
||||
<string name="package_state_unknown" msgid="7592128424511031410">"अज्ञात"</string>
|
||||
<string name="abandoned_clean_this" msgid="7610119707847920412">"निकालें"</string>
|
||||
<string name="abandoned_search" msgid="891119232568284442">"खोजें"</string>
|
||||
|
||||
@@ -35,9 +35,9 @@
|
||||
<string name="widget_accessible_dims_format" msgid="3640149169885301790">"%1$d širine i %2$d visine"</string>
|
||||
<string name="add_item_request_drag_hint" msgid="5899764264480397019">"Dodirnite i zadržite stavku da biste je postavili ručno"</string>
|
||||
<string name="place_automatically" msgid="8064208734425456485">"Dodaj automatski"</string>
|
||||
<string name="all_apps_search_bar_hint" msgid="7084713969757597256">"Pretraži aplikacije"</string>
|
||||
<string name="all_apps_loading_message" msgid="7557140873644765180">"Učitavanje aplikacija…"</string>
|
||||
<string name="all_apps_no_search_results" msgid="6332185285860416787">"Nema aplikacija podudarnih s upitom \"<xliff:g id="QUERY">%1$s</xliff:g>\""</string>
|
||||
<string name="all_apps_search_bar_hint" msgid="1390553134053255246">"Pretraži aplikacije"</string>
|
||||
<string name="all_apps_loading_message" msgid="5813968043155271636">"Učitavanje aplikacija…"</string>
|
||||
<string name="all_apps_no_search_results" msgid="3200346862396363786">"Nema aplikacija podudarnih s upitom \"<xliff:g id="QUERY">%1$s</xliff:g>\""</string>
|
||||
<string name="all_apps_search_market_message" msgid="1366263386197059176">"Traži više aplikacija"</string>
|
||||
<string name="notifications_header" msgid="1404149926117359025">"Obavijesti"</string>
|
||||
<string name="out_of_space" msgid="4691004494942118364">"Na ovom početnom zaslonu više nema mjesta."</string>
|
||||
@@ -79,17 +79,18 @@
|
||||
<string name="icon_badging_title" msgid="874121399231955394">"Točke obavijesti"</string>
|
||||
<string name="icon_badging_desc_on" msgid="2627952638544674079">"Uključeno"</string>
|
||||
<string name="icon_badging_desc_off" msgid="5503319969924580241">"Isključeno"</string>
|
||||
<string name="title_missing_notification_access" msgid="7503287056163941064">"Potreban je pristup obavijestima"</string>
|
||||
<string name="msg_missing_notification_access" msgid="281113995110910548">"Za prikaz točaka obavijesti uključite obavijesti aplikacije <xliff:g id="NAME">%1$s</xliff:g>"</string>
|
||||
<string name="title_change_settings" msgid="1376365968844349552">"Promjena postavki"</string>
|
||||
<string name="auto_add_shortcuts_label" msgid="8222286205987725611">"Dodaj ikonu na početni zaslon"</string>
|
||||
<string name="auto_add_shortcuts_description" msgid="7117251166066978730">"Za nove aplikacije"</string>
|
||||
<!-- no translation found for icon_shape_override_label (2977264953998281004) -->
|
||||
<skip />
|
||||
<string name="icon_shape_override_label" msgid="2977264953998281004">"Promijeni oblik ikona"</string>
|
||||
<string name="icon_shape_system_default" msgid="1709762974822753030">"Upotrijebi zadane postavke sustava"</string>
|
||||
<string name="icon_shape_square" msgid="633575066111622774">"Kvadrat"</string>
|
||||
<string name="icon_shape_squircle" msgid="5658049910802669495">"Zaobljeni kvadrat"</string>
|
||||
<string name="icon_shape_circle" msgid="6550072265930144217">"Krug"</string>
|
||||
<string name="icon_shape_teardrop" msgid="4525869388200835463">"Suza"</string>
|
||||
<!-- no translation found for icon_shape_override_progress (3461735694970239908) -->
|
||||
<skip />
|
||||
<string name="icon_shape_override_progress" msgid="3461735694970239908">"Primjena promjena oblika ikona"</string>
|
||||
<string name="package_state_unknown" msgid="7592128424511031410">"Nepoznato"</string>
|
||||
<string name="abandoned_clean_this" msgid="7610119707847920412">"Ukloni"</string>
|
||||
<string name="abandoned_search" msgid="891119232568284442">"Traži"</string>
|
||||
|
||||
@@ -35,9 +35,9 @@
|
||||
<string name="widget_accessible_dims_format" msgid="3640149169885301790">"%1$d széles és %2$d magas"</string>
|
||||
<string name="add_item_request_drag_hint" msgid="5899764264480397019">"Tartsa lenyomva a manuális hozzáadáshoz"</string>
|
||||
<string name="place_automatically" msgid="8064208734425456485">"Automatikus hozzáadás"</string>
|
||||
<string name="all_apps_search_bar_hint" msgid="7084713969757597256">"Alkalmazások keresése"</string>
|
||||
<string name="all_apps_loading_message" msgid="7557140873644765180">"Alkalmazások betöltése…"</string>
|
||||
<string name="all_apps_no_search_results" msgid="6332185285860416787">"Egy alkalmazás sem található a(z) „<xliff:g id="QUERY">%1$s</xliff:g>” lekérdezésre."</string>
|
||||
<string name="all_apps_search_bar_hint" msgid="1390553134053255246">"Alkalmazások keresése"</string>
|
||||
<string name="all_apps_loading_message" msgid="5813968043155271636">"Alkalmazások betöltése…"</string>
|
||||
<string name="all_apps_no_search_results" msgid="3200346862396363786">"Nem található alkalmazás a(z) „<xliff:g id="QUERY">%1$s</xliff:g>” lekérdezésre"</string>
|
||||
<string name="all_apps_search_market_message" msgid="1366263386197059176">"További alkalmazások keresése"</string>
|
||||
<string name="notifications_header" msgid="1404149926117359025">"Értesítések"</string>
|
||||
<string name="out_of_space" msgid="4691004494942118364">"Nincs több hely ezen a kezdőképernyőn."</string>
|
||||
@@ -79,17 +79,18 @@
|
||||
<string name="icon_badging_title" msgid="874121399231955394">"Értesítési pöttyök"</string>
|
||||
<string name="icon_badging_desc_on" msgid="2627952638544674079">"Bekapcsolva"</string>
|
||||
<string name="icon_badging_desc_off" msgid="5503319969924580241">"Kikapcsolva"</string>
|
||||
<string name="title_missing_notification_access" msgid="7503287056163941064">"Értesítésekhez való hozzáférésre van szükség"</string>
|
||||
<string name="msg_missing_notification_access" msgid="281113995110910548">"Az értesítési pöttyök megjelenítéséhez kapcsolja be a(z) <xliff:g id="NAME">%1$s</xliff:g> alkalmazás értesítéseit"</string>
|
||||
<string name="title_change_settings" msgid="1376365968844349552">"Beállítások módosítása"</string>
|
||||
<string name="auto_add_shortcuts_label" msgid="8222286205987725611">"Ikon hozzáadása a kezdőképernyőhöz"</string>
|
||||
<string name="auto_add_shortcuts_description" msgid="7117251166066978730">"Új alkalmazásoknál"</string>
|
||||
<!-- no translation found for icon_shape_override_label (2977264953998281004) -->
|
||||
<skip />
|
||||
<string name="icon_shape_override_label" msgid="2977264953998281004">"Ikon formájának módosítása"</string>
|
||||
<string name="icon_shape_system_default" msgid="1709762974822753030">"Alapértelmezett érték használata"</string>
|
||||
<string name="icon_shape_square" msgid="633575066111622774">"Négyzet"</string>
|
||||
<string name="icon_shape_squircle" msgid="5658049910802669495">"Squircle"</string>
|
||||
<string name="icon_shape_circle" msgid="6550072265930144217">"Kör"</string>
|
||||
<string name="icon_shape_teardrop" msgid="4525869388200835463">"Könnycsepp"</string>
|
||||
<!-- no translation found for icon_shape_override_progress (3461735694970239908) -->
|
||||
<skip />
|
||||
<string name="icon_shape_override_progress" msgid="3461735694970239908">"Ikonforma módosításainak alkalmazása…"</string>
|
||||
<string name="package_state_unknown" msgid="7592128424511031410">"Ismeretlen"</string>
|
||||
<string name="abandoned_clean_this" msgid="7610119707847920412">"Eltávolítás"</string>
|
||||
<string name="abandoned_search" msgid="891119232568284442">"Keresés"</string>
|
||||
|
||||
@@ -35,9 +35,9 @@
|
||||
<string name="widget_accessible_dims_format" msgid="3640149169885301790">"lebar %1$d x tinggi %2$d"</string>
|
||||
<string name="add_item_request_drag_hint" msgid="5899764264480397019">"Sentuh & tahan untuk menempatkan secara manual"</string>
|
||||
<string name="place_automatically" msgid="8064208734425456485">"Tambahkan otomatis"</string>
|
||||
<string name="all_apps_search_bar_hint" msgid="7084713969757597256">"Telusuri Apps"</string>
|
||||
<string name="all_apps_loading_message" msgid="7557140873644765180">"Memuat Aplikasi..."</string>
|
||||
<string name="all_apps_no_search_results" msgid="6332185285860416787">"Tidak ditemukan Aplikasi yang cocok dengan \"<xliff:g id="QUERY">%1$s</xliff:g>\""</string>
|
||||
<string name="all_apps_search_bar_hint" msgid="1390553134053255246">"Telusuri aplikasi"</string>
|
||||
<string name="all_apps_loading_message" msgid="5813968043155271636">"Memuat aplikasi…"</string>
|
||||
<string name="all_apps_no_search_results" msgid="3200346862396363786">"Tidak ditemukan aplikasi yang cocok dengan \"<xliff:g id="QUERY">%1$s</xliff:g>\""</string>
|
||||
<string name="all_apps_search_market_message" msgid="1366263386197059176">"Telusuri aplikasi lainnya"</string>
|
||||
<string name="notifications_header" msgid="1404149926117359025">"Notifikasi"</string>
|
||||
<string name="out_of_space" msgid="4691004494942118364">"Tidak ada ruang lagi pada layar Utama ini."</string>
|
||||
@@ -79,17 +79,18 @@
|
||||
<string name="icon_badging_title" msgid="874121399231955394">"Titik notifikasi"</string>
|
||||
<string name="icon_badging_desc_on" msgid="2627952638544674079">"Aktif"</string>
|
||||
<string name="icon_badging_desc_off" msgid="5503319969924580241">"Nonaktif"</string>
|
||||
<string name="title_missing_notification_access" msgid="7503287056163941064">"Perlu akses notifikasi"</string>
|
||||
<string name="msg_missing_notification_access" msgid="281113995110910548">"Guna menampilkan Titik Notifikasi, aktifkan notifikasi aplikasi untuk <xliff:g id="NAME">%1$s</xliff:g>"</string>
|
||||
<string name="title_change_settings" msgid="1376365968844349552">"Ubah setelan"</string>
|
||||
<string name="auto_add_shortcuts_label" msgid="8222286205987725611">"Tambahkan ikon ke layar Utama"</string>
|
||||
<string name="auto_add_shortcuts_description" msgid="7117251166066978730">"Untuk aplikasi baru"</string>
|
||||
<!-- no translation found for icon_shape_override_label (2977264953998281004) -->
|
||||
<skip />
|
||||
<string name="icon_shape_override_label" msgid="2977264953998281004">"Ubah bentuk ikon"</string>
|
||||
<string name="icon_shape_system_default" msgid="1709762974822753030">"Gunakan default sistem"</string>
|
||||
<string name="icon_shape_square" msgid="633575066111622774">"Persegi"</string>
|
||||
<string name="icon_shape_squircle" msgid="5658049910802669495">"Persegi bundar"</string>
|
||||
<string name="icon_shape_circle" msgid="6550072265930144217">"Lingkaran"</string>
|
||||
<string name="icon_shape_teardrop" msgid="4525869388200835463">"Butiran Air"</string>
|
||||
<!-- no translation found for icon_shape_override_progress (3461735694970239908) -->
|
||||
<skip />
|
||||
<string name="icon_shape_override_progress" msgid="3461735694970239908">"Menerapkan perubahan bentuk ikon"</string>
|
||||
<string name="package_state_unknown" msgid="7592128424511031410">"Tidak dikenal"</string>
|
||||
<string name="abandoned_clean_this" msgid="7610119707847920412">"Buang"</string>
|
||||
<string name="abandoned_search" msgid="891119232568284442">"Telusuri"</string>
|
||||
|
||||
@@ -35,9 +35,9 @@
|
||||
<string name="widget_accessible_dims_format" msgid="3640149169885301790">"%1$d di larghezza per %2$d di altezza"</string>
|
||||
<string name="add_item_request_drag_hint" msgid="5899764264480397019">"Tieni premuto per posizionare l\'elemento manualmente"</string>
|
||||
<string name="place_automatically" msgid="8064208734425456485">"Aggiungi automaticamente"</string>
|
||||
<string name="all_apps_search_bar_hint" msgid="7084713969757597256">"Cerca app"</string>
|
||||
<string name="all_apps_loading_message" msgid="7557140873644765180">"Caricamento di app…"</string>
|
||||
<string name="all_apps_no_search_results" msgid="6332185285860416787">"Nessuna app trovata corrispondente a \"<xliff:g id="QUERY">%1$s</xliff:g>\""</string>
|
||||
<string name="all_apps_search_bar_hint" msgid="1390553134053255246">"Cerca nelle app"</string>
|
||||
<string name="all_apps_loading_message" msgid="5813968043155271636">"Caricamento delle app…"</string>
|
||||
<string name="all_apps_no_search_results" msgid="3200346862396363786">"Nessuna app trovata corrispondente a \"<xliff:g id="QUERY">%1$s</xliff:g>\""</string>
|
||||
<string name="all_apps_search_market_message" msgid="1366263386197059176">"Cerca altre app"</string>
|
||||
<string name="notifications_header" msgid="1404149926117359025">"Notifiche"</string>
|
||||
<string name="out_of_space" msgid="4691004494942118364">"Spazio nella schermata Home esaurito."</string>
|
||||
@@ -79,17 +79,18 @@
|
||||
<string name="icon_badging_title" msgid="874121399231955394">"Indicatori notifica"</string>
|
||||
<string name="icon_badging_desc_on" msgid="2627952638544674079">"Attiva"</string>
|
||||
<string name="icon_badging_desc_off" msgid="5503319969924580241">"Non attiva"</string>
|
||||
<string name="title_missing_notification_access" msgid="7503287056163941064">"Accesso alle notifiche necessario"</string>
|
||||
<string name="msg_missing_notification_access" msgid="281113995110910548">"Per mostrare gli indicatori di notifica, attiva le notifiche per l\'app <xliff:g id="NAME">%1$s</xliff:g>"</string>
|
||||
<string name="title_change_settings" msgid="1376365968844349552">"Modifica impostazioni"</string>
|
||||
<string name="auto_add_shortcuts_label" msgid="8222286205987725611">"Aggiungi icone alla schermata Home"</string>
|
||||
<string name="auto_add_shortcuts_description" msgid="7117251166066978730">"Per le nuove app"</string>
|
||||
<!-- no translation found for icon_shape_override_label (2977264953998281004) -->
|
||||
<skip />
|
||||
<string name="icon_shape_override_label" msgid="2977264953998281004">"Cambia la forma delle icone"</string>
|
||||
<string name="icon_shape_system_default" msgid="1709762974822753030">"Usa impostazione predefinita di sistema"</string>
|
||||
<string name="icon_shape_square" msgid="633575066111622774">"Quadrato"</string>
|
||||
<string name="icon_shape_squircle" msgid="5658049910802669495">"Supercerchio"</string>
|
||||
<string name="icon_shape_circle" msgid="6550072265930144217">"Cerchio"</string>
|
||||
<string name="icon_shape_teardrop" msgid="4525869388200835463">"Goccia"</string>
|
||||
<!-- no translation found for icon_shape_override_progress (3461735694970239908) -->
|
||||
<skip />
|
||||
<string name="icon_shape_override_progress" msgid="3461735694970239908">"Applicazione delle modifiche alla forma delle icone"</string>
|
||||
<string name="package_state_unknown" msgid="7592128424511031410">"Sconosciuto"</string>
|
||||
<string name="abandoned_clean_this" msgid="7610119707847920412">"Rimuovi"</string>
|
||||
<string name="abandoned_search" msgid="891119232568284442">"Cerca"</string>
|
||||
|
||||
@@ -35,9 +35,9 @@
|
||||
<string name="widget_accessible_dims_format" msgid="3640149169885301790">"רוחב %1$d על גובה %2$d"</string>
|
||||
<string name="add_item_request_drag_hint" msgid="5899764264480397019">"גע והחזק כדי להוסיף ידנית"</string>
|
||||
<string name="place_automatically" msgid="8064208734425456485">"הוסף באופן אוטומטי"</string>
|
||||
<string name="all_apps_search_bar_hint" msgid="7084713969757597256">"חפש אפליקציות"</string>
|
||||
<string name="all_apps_loading_message" msgid="7557140873644765180">"טוען אפליקציות…"</string>
|
||||
<string name="all_apps_no_search_results" msgid="6332185285860416787">"לא נמצאו אפליקציות התואמות ל-\"<xliff:g id="QUERY">%1$s</xliff:g>\""</string>
|
||||
<string name="all_apps_search_bar_hint" msgid="1390553134053255246">"חיפוש אפליקציות"</string>
|
||||
<string name="all_apps_loading_message" msgid="5813968043155271636">"טוען אפליקציות…"</string>
|
||||
<string name="all_apps_no_search_results" msgid="3200346862396363786">"לא נמצאו אפליקציות התואמות ל-\"<xliff:g id="QUERY">%1$s</xliff:g>\""</string>
|
||||
<string name="all_apps_search_market_message" msgid="1366263386197059176">"חפש אפליקציות נוספות"</string>
|
||||
<string name="notifications_header" msgid="1404149926117359025">"הודעות"</string>
|
||||
<string name="out_of_space" msgid="4691004494942118364">"אין עוד מקום במסך דף הבית הזה."</string>
|
||||
@@ -79,17 +79,18 @@
|
||||
<string name="icon_badging_title" msgid="874121399231955394">"סימני הודעות"</string>
|
||||
<string name="icon_badging_desc_on" msgid="2627952638544674079">"מופעלת"</string>
|
||||
<string name="icon_badging_desc_off" msgid="5503319969924580241">"כבויה"</string>
|
||||
<string name="title_missing_notification_access" msgid="7503287056163941064">"נדרשת גישה להודעות"</string>
|
||||
<string name="msg_missing_notification_access" msgid="281113995110910548">"כדי להציג את סימני ההודעות, יש להפעיל הודעות מהאפליקציה <xliff:g id="NAME">%1$s</xliff:g>"</string>
|
||||
<string name="title_change_settings" msgid="1376365968844349552">"שנה את ההגדרות"</string>
|
||||
<string name="auto_add_shortcuts_label" msgid="8222286205987725611">"הוספת סמל במסך דף הבית"</string>
|
||||
<string name="auto_add_shortcuts_description" msgid="7117251166066978730">"לאפליקציות חדשות"</string>
|
||||
<!-- no translation found for icon_shape_override_label (2977264953998281004) -->
|
||||
<skip />
|
||||
<string name="icon_shape_override_label" msgid="2977264953998281004">"שינוי הצורה של הסמלים"</string>
|
||||
<string name="icon_shape_system_default" msgid="1709762974822753030">"השתמש בברירת המחדל של המערכת"</string>
|
||||
<string name="icon_shape_square" msgid="633575066111622774">"ריבוע"</string>
|
||||
<string name="icon_shape_squircle" msgid="5658049910802669495">"ריבוע בעל פינות מעוגלות"</string>
|
||||
<string name="icon_shape_circle" msgid="6550072265930144217">"מעגל"</string>
|
||||
<string name="icon_shape_teardrop" msgid="4525869388200835463">"טיפה"</string>
|
||||
<!-- no translation found for icon_shape_override_progress (3461735694970239908) -->
|
||||
<skip />
|
||||
<string name="icon_shape_override_progress" msgid="3461735694970239908">"משנה את הצורה של הסמלים"</string>
|
||||
<string name="package_state_unknown" msgid="7592128424511031410">"לא ידוע"</string>
|
||||
<string name="abandoned_clean_this" msgid="7610119707847920412">"הסר"</string>
|
||||
<string name="abandoned_search" msgid="891119232568284442">"חפש"</string>
|
||||
|
||||
@@ -35,9 +35,9 @@
|
||||
<string name="widget_accessible_dims_format" msgid="3640149169885301790">"幅 %1$d、高さ %2$d"</string>
|
||||
<string name="add_item_request_drag_hint" msgid="5899764264480397019">"押し続けると、手動で追加できます"</string>
|
||||
<string name="place_automatically" msgid="8064208734425456485">"自動的に追加"</string>
|
||||
<string name="all_apps_search_bar_hint" msgid="7084713969757597256">"アプリを検索"</string>
|
||||
<string name="all_apps_loading_message" msgid="7557140873644765180">"アプリを読み込んでいます…"</string>
|
||||
<string name="all_apps_no_search_results" msgid="6332185285860416787">"「<xliff:g id="QUERY">%1$s</xliff:g>」に一致するアプリは見つかりませんでした"</string>
|
||||
<string name="all_apps_search_bar_hint" msgid="1390553134053255246">"アプリを検索"</string>
|
||||
<string name="all_apps_loading_message" msgid="5813968043155271636">"アプリを読み込んでいます…"</string>
|
||||
<string name="all_apps_no_search_results" msgid="3200346862396363786">"「<xliff:g id="QUERY">%1$s</xliff:g>」に一致するアプリは見つかりませんでした"</string>
|
||||
<string name="all_apps_search_market_message" msgid="1366263386197059176">"他のアプリを検索"</string>
|
||||
<string name="notifications_header" msgid="1404149926117359025">"通知"</string>
|
||||
<string name="out_of_space" msgid="4691004494942118364">"このホーム画面に空きスペースがありません。"</string>
|
||||
@@ -79,17 +79,18 @@
|
||||
<string name="icon_badging_title" msgid="874121399231955394">"通知ドット"</string>
|
||||
<string name="icon_badging_desc_on" msgid="2627952638544674079">"ON"</string>
|
||||
<string name="icon_badging_desc_off" msgid="5503319969924580241">"OFF"</string>
|
||||
<string name="title_missing_notification_access" msgid="7503287056163941064">"通知へのアクセス権限が必要"</string>
|
||||
<string name="msg_missing_notification_access" msgid="281113995110910548">"通知ドットを表示するには、「<xliff:g id="NAME">%1$s</xliff:g>」のアプリ通知を ON にしてください"</string>
|
||||
<string name="title_change_settings" msgid="1376365968844349552">"設定を変更"</string>
|
||||
<string name="auto_add_shortcuts_label" msgid="8222286205987725611">"ホーム画面にアイコンを追加"</string>
|
||||
<string name="auto_add_shortcuts_description" msgid="7117251166066978730">"新しいアプリをダウンロードしたときに"</string>
|
||||
<!-- no translation found for icon_shape_override_label (2977264953998281004) -->
|
||||
<skip />
|
||||
<string name="icon_shape_override_label" msgid="2977264953998281004">"アイコンの形の変更"</string>
|
||||
<string name="icon_shape_system_default" msgid="1709762974822753030">"システムのデフォルトを使用"</string>
|
||||
<string name="icon_shape_square" msgid="633575066111622774">"スクエア"</string>
|
||||
<string name="icon_shape_squircle" msgid="5658049910802669495">"スクワークル"</string>
|
||||
<string name="icon_shape_circle" msgid="6550072265930144217">"サークル"</string>
|
||||
<string name="icon_shape_teardrop" msgid="4525869388200835463">"ティアドロップ"</string>
|
||||
<!-- no translation found for icon_shape_override_progress (3461735694970239908) -->
|
||||
<skip />
|
||||
<string name="icon_shape_override_progress" msgid="3461735694970239908">"アイコンの形の変更を適用しています"</string>
|
||||
<string name="package_state_unknown" msgid="7592128424511031410">"不明"</string>
|
||||
<string name="abandoned_clean_this" msgid="7610119707847920412">"削除"</string>
|
||||
<string name="abandoned_search" msgid="891119232568284442">"検索"</string>
|
||||
|
||||
@@ -35,9 +35,9 @@
|
||||
<string name="widget_accessible_dims_format" msgid="3640149169885301790">"너비 %1$d, 높이 %2$d"</string>
|
||||
<string name="add_item_request_drag_hint" msgid="5899764264480397019">"길게 터치하여 직접 장소 추가"</string>
|
||||
<string name="place_automatically" msgid="8064208734425456485">"자동으로 추가"</string>
|
||||
<string name="all_apps_search_bar_hint" msgid="7084713969757597256">"앱 검색"</string>
|
||||
<string name="all_apps_loading_message" msgid="7557140873644765180">"앱 로드 중..."</string>
|
||||
<string name="all_apps_no_search_results" msgid="6332185285860416787">"\'<xliff:g id="QUERY">%1$s</xliff:g>\'와(과) 일치하는 앱이 없습니다."</string>
|
||||
<string name="all_apps_search_bar_hint" msgid="1390553134053255246">"앱 검색"</string>
|
||||
<string name="all_apps_loading_message" msgid="5813968043155271636">"앱 로드 중…"</string>
|
||||
<string name="all_apps_no_search_results" msgid="3200346862396363786">"\'<xliff:g id="QUERY">%1$s</xliff:g>\'과(와) 일치하는 앱이 없습니다."</string>
|
||||
<string name="all_apps_search_market_message" msgid="1366263386197059176">"더 많은 앱 검색"</string>
|
||||
<string name="notifications_header" msgid="1404149926117359025">"알림"</string>
|
||||
<string name="out_of_space" msgid="4691004494942118364">"홈 화면에 더 이상 공간이 없습니다."</string>
|
||||
@@ -79,17 +79,18 @@
|
||||
<string name="icon_badging_title" msgid="874121399231955394">"알림 표시 점"</string>
|
||||
<string name="icon_badging_desc_on" msgid="2627952638544674079">"사용"</string>
|
||||
<string name="icon_badging_desc_off" msgid="5503319969924580241">"사용 안함"</string>
|
||||
<string name="title_missing_notification_access" msgid="7503287056163941064">"알림 액세스 권한 필요"</string>
|
||||
<string name="msg_missing_notification_access" msgid="281113995110910548">"알림 표시점을 표시하려면 <xliff:g id="NAME">%1$s</xliff:g>의 앱 알림을 사용 설정하세요."</string>
|
||||
<string name="title_change_settings" msgid="1376365968844349552">"설정 변경"</string>
|
||||
<string name="auto_add_shortcuts_label" msgid="8222286205987725611">"홈 화면에 아이콘 추가"</string>
|
||||
<string name="auto_add_shortcuts_description" msgid="7117251166066978730">"새로 설치한 앱에 적용"</string>
|
||||
<!-- no translation found for icon_shape_override_label (2977264953998281004) -->
|
||||
<skip />
|
||||
<string name="icon_shape_override_label" msgid="2977264953998281004">"아이콘 모양 변경"</string>
|
||||
<string name="icon_shape_system_default" msgid="1709762974822753030">"시스템 기본값 사용"</string>
|
||||
<string name="icon_shape_square" msgid="633575066111622774">"정사각형"</string>
|
||||
<string name="icon_shape_squircle" msgid="5658049910802669495">"모서리가 둥근 정사각형"</string>
|
||||
<string name="icon_shape_circle" msgid="6550072265930144217">"원"</string>
|
||||
<string name="icon_shape_teardrop" msgid="4525869388200835463">"눈물방울"</string>
|
||||
<!-- no translation found for icon_shape_override_progress (3461735694970239908) -->
|
||||
<skip />
|
||||
<string name="icon_shape_override_progress" msgid="3461735694970239908">"아이콘 모양 변경사항을 적용하는 중입니다."</string>
|
||||
<string name="package_state_unknown" msgid="7592128424511031410">"알 수 없음"</string>
|
||||
<string name="abandoned_clean_this" msgid="7610119707847920412">"삭제"</string>
|
||||
<string name="abandoned_search" msgid="891119232568284442">"검색"</string>
|
||||
|
||||
@@ -26,9 +26,12 @@
|
||||
|
||||
<!-- Dynamic grid -->
|
||||
<dimen name="dynamic_grid_overview_bar_item_width">120dp</dimen>
|
||||
<dimen name="dynamic_grid_page_indicator_size">24dp</dimen>
|
||||
<dimen name="dynamic_grid_icon_drawable_padding">8dp</dimen>
|
||||
<dimen name="dynamic_grid_cell_padding_x">8dp</dimen>
|
||||
<dimen name="dynamic_grid_min_page_indicator_size">48dp</dimen>
|
||||
<dimen name="dynamic_grid_icon_drawable_padding">4dp</dimen>
|
||||
|
||||
<dimen name="dynamic_grid_cell_layout_padding">0dp</dimen>
|
||||
|
||||
<dimen name="folder_preview_padding">2dp</dimen>
|
||||
|
||||
<!-- Hotseat -->
|
||||
<dimen name="dynamic_grid_hotseat_land_left_nav_bar_right_padding">18dp</dimen>
|
||||
|
||||
@@ -35,9 +35,9 @@
|
||||
<string name="widget_accessible_dims_format" msgid="3640149169885301790">"%1$d plotis ir %2$d aukštis"</string>
|
||||
<string name="add_item_request_drag_hint" msgid="5899764264480397019">"Palieskite ir palaikykite, kad padėtumėte patys"</string>
|
||||
<string name="place_automatically" msgid="8064208734425456485">"Pridėti automatiškai"</string>
|
||||
<string name="all_apps_search_bar_hint" msgid="7084713969757597256">"Ieškoti programų"</string>
|
||||
<string name="all_apps_loading_message" msgid="7557140873644765180">"Įkeliamos programos..."</string>
|
||||
<string name="all_apps_no_search_results" msgid="6332185285860416787">"Nerasta jokių užklausą „<xliff:g id="QUERY">%1$s</xliff:g>“ atitinkančių programų"</string>
|
||||
<string name="all_apps_search_bar_hint" msgid="1390553134053255246">"Paieškos programos"</string>
|
||||
<string name="all_apps_loading_message" msgid="5813968043155271636">"Įkeliamos programos…"</string>
|
||||
<string name="all_apps_no_search_results" msgid="3200346862396363786">"Nerasta jokių užklausą „<xliff:g id="QUERY">%1$s</xliff:g>“ atitinkančių programų"</string>
|
||||
<string name="all_apps_search_market_message" msgid="1366263386197059176">"Ieškoti daugiau programų"</string>
|
||||
<string name="notifications_header" msgid="1404149926117359025">"Pranešimai"</string>
|
||||
<string name="out_of_space" msgid="4691004494942118364">"Šiame pagrindiniame ekrane vietos nebėra."</string>
|
||||
@@ -79,17 +79,18 @@
|
||||
<string name="icon_badging_title" msgid="874121399231955394">"Pranešimų taškai"</string>
|
||||
<string name="icon_badging_desc_on" msgid="2627952638544674079">"Įjungta"</string>
|
||||
<string name="icon_badging_desc_off" msgid="5503319969924580241">"Išjungta"</string>
|
||||
<string name="title_missing_notification_access" msgid="7503287056163941064">"Reikalinga prieiga prie pranešimų"</string>
|
||||
<string name="msg_missing_notification_access" msgid="281113995110910548">"Kad būtų rodomi pranešimų taškai, įjunkite programos „<xliff:g id="NAME">%1$s</xliff:g>“ pranešimus."</string>
|
||||
<string name="title_change_settings" msgid="1376365968844349552">"Keisti nustatymus"</string>
|
||||
<string name="auto_add_shortcuts_label" msgid="8222286205987725611">"Pridėti piktogr. prie pagrindinio ekrano"</string>
|
||||
<string name="auto_add_shortcuts_description" msgid="7117251166066978730">"Skirta naujoms programoms"</string>
|
||||
<!-- no translation found for icon_shape_override_label (2977264953998281004) -->
|
||||
<skip />
|
||||
<string name="icon_shape_override_label" msgid="2977264953998281004">"Pakeisti piktogramos formą"</string>
|
||||
<string name="icon_shape_system_default" msgid="1709762974822753030">"Naudoti numatytuosius sistemos nustatymus"</string>
|
||||
<string name="icon_shape_square" msgid="633575066111622774">"Kvadratas"</string>
|
||||
<string name="icon_shape_squircle" msgid="5658049910802669495">"Kvadratais suapvalintais kampais"</string>
|
||||
<string name="icon_shape_circle" msgid="6550072265930144217">"Apskritimas"</string>
|
||||
<string name="icon_shape_teardrop" msgid="4525869388200835463">"Ašara"</string>
|
||||
<!-- no translation found for icon_shape_override_progress (3461735694970239908) -->
|
||||
<skip />
|
||||
<string name="icon_shape_override_progress" msgid="3461735694970239908">"Taikomi piktogramos formos pakeitimai"</string>
|
||||
<string name="package_state_unknown" msgid="7592128424511031410">"Nežinoma"</string>
|
||||
<string name="abandoned_clean_this" msgid="7610119707847920412">"Pašalinti"</string>
|
||||
<string name="abandoned_search" msgid="891119232568284442">"Ieškoti"</string>
|
||||
|
||||
@@ -35,9 +35,9 @@
|
||||
<string name="widget_accessible_dims_format" msgid="3640149169885301790">"%1$d plats un %2$d augsts"</string>
|
||||
<string name="add_item_request_drag_hint" msgid="5899764264480397019">"Pieskarieties un turiet, lai manuāli pievienotu"</string>
|
||||
<string name="place_automatically" msgid="8064208734425456485">"Pievienot automātiski"</string>
|
||||
<string name="all_apps_search_bar_hint" msgid="7084713969757597256">"Meklēt lietotnes"</string>
|
||||
<string name="all_apps_loading_message" msgid="7557140873644765180">"Notiek lietotņu ielāde…"</string>
|
||||
<string name="all_apps_no_search_results" msgid="6332185285860416787">"Vaicājumam “<xliff:g id="QUERY">%1$s</xliff:g>” neatbilda neviena lietotne."</string>
|
||||
<string name="all_apps_search_bar_hint" msgid="1390553134053255246">"Meklēt lietotnes"</string>
|
||||
<string name="all_apps_loading_message" msgid="5813968043155271636">"Notiek lietotņu ielāde…"</string>
|
||||
<string name="all_apps_no_search_results" msgid="3200346862396363786">"Vaicājumam “<xliff:g id="QUERY">%1$s</xliff:g>” neatbilda neviena lietotne"</string>
|
||||
<string name="all_apps_search_market_message" msgid="1366263386197059176">"Meklēt citas lietotnes"</string>
|
||||
<string name="notifications_header" msgid="1404149926117359025">"Paziņojumi"</string>
|
||||
<string name="out_of_space" msgid="4691004494942118364">"Šajā sākuma ekrānā vairs nav vietas."</string>
|
||||
@@ -79,17 +79,18 @@
|
||||
<string name="icon_badging_title" msgid="874121399231955394">"Paziņojumu punkti"</string>
|
||||
<string name="icon_badging_desc_on" msgid="2627952638544674079">"Ieslēgts"</string>
|
||||
<string name="icon_badging_desc_off" msgid="5503319969924580241">"Izslēgts"</string>
|
||||
<string name="title_missing_notification_access" msgid="7503287056163941064">"Nepieciešama piekļuve paziņojumiem"</string>
|
||||
<string name="msg_missing_notification_access" msgid="281113995110910548">"Lai tiktu rādīti paziņojumu punkti, ieslēdziet paziņojumus lietotnei <xliff:g id="NAME">%1$s</xliff:g>."</string>
|
||||
<string name="title_change_settings" msgid="1376365968844349552">"Mainīt iestatījumus"</string>
|
||||
<string name="auto_add_shortcuts_label" msgid="8222286205987725611">"Pievienot ikonu sākuma ekrānā"</string>
|
||||
<string name="auto_add_shortcuts_description" msgid="7117251166066978730">"Jaunām lietotnēm"</string>
|
||||
<!-- no translation found for icon_shape_override_label (2977264953998281004) -->
|
||||
<skip />
|
||||
<string name="icon_shape_override_label" msgid="2977264953998281004">"Mainīt ikonu formu"</string>
|
||||
<string name="icon_shape_system_default" msgid="1709762974822753030">"Izmantot sistēmas noklusējumu"</string>
|
||||
<string name="icon_shape_square" msgid="633575066111622774">"Kvadrāts"</string>
|
||||
<string name="icon_shape_squircle" msgid="5658049910802669495">"Kvadrāts ar noapaļotiem stūriem"</string>
|
||||
<string name="icon_shape_circle" msgid="6550072265930144217">"Aplis"</string>
|
||||
<string name="icon_shape_teardrop" msgid="4525869388200835463">"Lāse"</string>
|
||||
<!-- no translation found for icon_shape_override_progress (3461735694970239908) -->
|
||||
<skip />
|
||||
<string name="icon_shape_override_progress" msgid="3461735694970239908">"Tiek piemērotas ikonu formas izmaiņas"</string>
|
||||
<string name="package_state_unknown" msgid="7592128424511031410">"Nezināma"</string>
|
||||
<string name="abandoned_clean_this" msgid="7610119707847920412">"Noņemt"</string>
|
||||
<string name="abandoned_search" msgid="891119232568284442">"Meklēt"</string>
|
||||
|
||||
@@ -65,12 +65,26 @@
|
||||
<string name="folder_name_format" msgid="6629239338071103179">"Folder: <xliff:g id="NAME">%1$s</xliff:g>"</string>
|
||||
<string name="widget_button_text" msgid="2880537293434387943">"Widget"</string>
|
||||
<string name="wallpaper_button_text" msgid="8404103075899945851">"Kertas dinding"</string>
|
||||
<string name="settings_button_text" msgid="8119458837558863227">"Tetapan"</string>
|
||||
<string name="settings_button_text" msgid="8873672322605444408">"Tetapan laman utama"</string>
|
||||
<string name="msg_disabled_by_admin" msgid="6898038085516271325">"Dilumpuhkan oleh pentadbir anda"</string>
|
||||
<string name="accessibility_action_overview" msgid="6257665857640347026">"Ikhtisar"</string>
|
||||
<string name="allow_rotation_title" msgid="7728578836261442095">"Benarkan putaran Skrin Utama"</string>
|
||||
<string name="allow_rotation_desc" msgid="8662546029078692509">"Apabila telefon diputar"</string>
|
||||
<string name="allow_rotation_blocked_desc" msgid="3212602545192996253">"Tetapan Paparan semasa tidak membenarkan putaran"</string>
|
||||
<string name="icon_badging_title" msgid="874121399231955394">"Titik pemberitahuan"</string>
|
||||
<string name="icon_badging_desc_on" msgid="2627952638544674079">"Hidup"</string>
|
||||
<string name="icon_badging_desc_off" msgid="5503319969924580241">"Mati"</string>
|
||||
<string name="auto_add_shortcuts_label" msgid="8222286205987725611">"Tambahkan ikon pada Skrin Utama"</string>
|
||||
<string name="auto_add_shortcuts_description" msgid="7117251166066978730">"Untuk apl baharu"</string>
|
||||
<!-- no translation found for icon_shape_override_label (2977264953998281004) -->
|
||||
<skip />
|
||||
<string name="icon_shape_system_default" msgid="1709762974822753030">"Gunakan lalai sistem"</string>
|
||||
<string name="icon_shape_square" msgid="633575066111622774">"Segi empat sama"</string>
|
||||
<string name="icon_shape_squircle" msgid="5658049910802669495">"Segi empat berbucu bulat"</string>
|
||||
<string name="icon_shape_circle" msgid="6550072265930144217">"Bulatan"</string>
|
||||
<string name="icon_shape_teardrop" msgid="4525869388200835463">"Titisan air mata"</string>
|
||||
<!-- no translation found for icon_shape_override_progress (3461735694970239908) -->
|
||||
<skip />
|
||||
<string name="package_state_unknown" msgid="7592128424511031410">"Tidak diketahui"</string>
|
||||
<string name="abandoned_clean_this" msgid="7610119707847920412">"Alih keluar"</string>
|
||||
<string name="abandoned_search" msgid="891119232568284442">"Carian"</string>
|
||||
@@ -104,4 +118,7 @@
|
||||
<string name="widget_resized" msgid="9130327887929620">"Saiz widget diubah menjadi <xliff:g id="NUMBER_0">%1$s</xliff:g> lebar <xliff:g id="NUMBER_1">%2$s</xliff:g> tinggi"</string>
|
||||
<string name="action_deep_shortcut" msgid="2864038805849372848">"Pintasan"</string>
|
||||
<string name="shortcuts_menu_description" msgid="406159963824238648">"<xliff:g id="NUMBER_OF_SHORTCUTS">%1$d</xliff:g> pintasan untuk <xliff:g id="APP_NAME">%2$s</xliff:g>"</string>
|
||||
<string name="shortcuts_menu_with_notifications_description" msgid="8985659504915468840">"<xliff:g id="NUMBER_OF_SHORTCUTS">%1$d</xliff:g> pintasan dan <xliff:g id="NUMBER_OF_NOTIFICATIONS">%2$d</xliff:g> pemberitahuan untuk <xliff:g id="APP_NAME">%3$s</xliff:g>"</string>
|
||||
<string name="action_dismiss_notification" msgid="5909461085055959187">"Ketepikan"</string>
|
||||
<string name="notification_dismissed" msgid="6002233469409822874">"Pemberitahuan diketepikan"</string>
|
||||
</resources>
|
||||
|
||||
@@ -35,9 +35,9 @@
|
||||
<string name="widget_accessible_dims_format" msgid="3640149169885301790">"%1$d bredde x %2$d høyde"</string>
|
||||
<string name="add_item_request_drag_hint" msgid="5899764264480397019">"Trykk og hold for å plassere manuelt"</string>
|
||||
<string name="place_automatically" msgid="8064208734425456485">"Legg til automatisk"</string>
|
||||
<string name="all_apps_search_bar_hint" msgid="7084713969757597256">"Søk i apper"</string>
|
||||
<string name="all_apps_loading_message" msgid="7557140873644765180">"Laster inn apper …"</string>
|
||||
<string name="all_apps_no_search_results" msgid="6332185285860416787">"Fant ingen apper som samsvarer med «<xliff:g id="QUERY">%1$s</xliff:g>»"</string>
|
||||
<string name="all_apps_search_bar_hint" msgid="1390553134053255246">"Søk etter apper"</string>
|
||||
<string name="all_apps_loading_message" msgid="5813968043155271636">"Laster inn appene …"</string>
|
||||
<string name="all_apps_no_search_results" msgid="3200346862396363786">"Fant ingen apper som samsvarer med «<xliff:g id="QUERY">%1$s</xliff:g>»"</string>
|
||||
<string name="all_apps_search_market_message" msgid="1366263386197059176">"Søk etter flere apper"</string>
|
||||
<string name="notifications_header" msgid="1404149926117359025">"Varsler"</string>
|
||||
<string name="out_of_space" msgid="4691004494942118364">"Denne startsiden er full."</string>
|
||||
@@ -79,17 +79,18 @@
|
||||
<string name="icon_badging_title" msgid="874121399231955394">"Varselsprikker"</string>
|
||||
<string name="icon_badging_desc_on" msgid="2627952638544674079">"På"</string>
|
||||
<string name="icon_badging_desc_off" msgid="5503319969924580241">"Av"</string>
|
||||
<string name="title_missing_notification_access" msgid="7503287056163941064">"Tilgang til varsler er nødvendig"</string>
|
||||
<string name="msg_missing_notification_access" msgid="281113995110910548">"Slå på appvarsler for <xliff:g id="NAME">%1$s</xliff:g> for å vise varselsprikker"</string>
|
||||
<string name="title_change_settings" msgid="1376365968844349552">"Endre innstillingene"</string>
|
||||
<string name="auto_add_shortcuts_label" msgid="8222286205987725611">"Legg til ikon på startsiden"</string>
|
||||
<string name="auto_add_shortcuts_description" msgid="7117251166066978730">"For nye apper"</string>
|
||||
<!-- no translation found for icon_shape_override_label (2977264953998281004) -->
|
||||
<skip />
|
||||
<string name="icon_shape_override_label" msgid="2977264953998281004">"Endre ikonets form"</string>
|
||||
<string name="icon_shape_system_default" msgid="1709762974822753030">"Bruk systemstandard"</string>
|
||||
<string name="icon_shape_square" msgid="633575066111622774">"Kvadrat"</string>
|
||||
<string name="icon_shape_squircle" msgid="5658049910802669495">"Superellipse"</string>
|
||||
<string name="icon_shape_circle" msgid="6550072265930144217">"Sirkel"</string>
|
||||
<string name="icon_shape_teardrop" msgid="4525869388200835463">"Dråpe"</string>
|
||||
<!-- no translation found for icon_shape_override_progress (3461735694970239908) -->
|
||||
<skip />
|
||||
<string name="icon_shape_override_progress" msgid="3461735694970239908">"Aktiverer endringer av ikonets form"</string>
|
||||
<string name="package_state_unknown" msgid="7592128424511031410">"Ukjent"</string>
|
||||
<string name="abandoned_clean_this" msgid="7610119707847920412">"Fjern"</string>
|
||||
<string name="abandoned_search" msgid="891119232568284442">"Søk"</string>
|
||||
|
||||
@@ -35,9 +35,9 @@
|
||||
<string name="widget_accessible_dims_format" msgid="3640149169885301790">"%1$d breed en %2$d hoog"</string>
|
||||
<string name="add_item_request_drag_hint" msgid="5899764264480397019">"Tik op een item en houd dit vast om het handmatig te plaatsen"</string>
|
||||
<string name="place_automatically" msgid="8064208734425456485">"Automatisch toevoegen"</string>
|
||||
<string name="all_apps_search_bar_hint" msgid="7084713969757597256">"Apps zoeken"</string>
|
||||
<string name="all_apps_loading_message" msgid="7557140873644765180">"Apps laden…"</string>
|
||||
<string name="all_apps_no_search_results" msgid="6332185285860416787">"Er zijn geen apps gevonden die overeenkomen met \'<xliff:g id="QUERY">%1$s</xliff:g>\'"</string>
|
||||
<string name="all_apps_search_bar_hint" msgid="1390553134053255246">"Apps zoeken"</string>
|
||||
<string name="all_apps_loading_message" msgid="5813968043155271636">"Apps laden…"</string>
|
||||
<string name="all_apps_no_search_results" msgid="3200346862396363786">"Er zijn geen apps gevonden die overeenkomen met \'<xliff:g id="QUERY">%1$s</xliff:g>\'"</string>
|
||||
<string name="all_apps_search_market_message" msgid="1366263386197059176">"Zoeken naar meer apps"</string>
|
||||
<string name="notifications_header" msgid="1404149926117359025">"Meldingen"</string>
|
||||
<string name="out_of_space" msgid="4691004494942118364">"Er is geen ruimte meer op dit startscherm."</string>
|
||||
@@ -79,17 +79,18 @@
|
||||
<string name="icon_badging_title" msgid="874121399231955394">"Meldingsstipjes"</string>
|
||||
<string name="icon_badging_desc_on" msgid="2627952638544674079">"Aan"</string>
|
||||
<string name="icon_badging_desc_off" msgid="5503319969924580241">"Uit"</string>
|
||||
<string name="title_missing_notification_access" msgid="7503287056163941064">"Toegang tot meldingen vereist"</string>
|
||||
<string name="msg_missing_notification_access" msgid="281113995110910548">"Als je meldingsstipjes wilt weergeven, schakel je app-meldingen in voor <xliff:g id="NAME">%1$s</xliff:g>"</string>
|
||||
<string name="title_change_settings" msgid="1376365968844349552">"Instellingen wijzigen"</string>
|
||||
<string name="auto_add_shortcuts_label" msgid="8222286205987725611">"Pictogram toevoegen aan startscherm"</string>
|
||||
<string name="auto_add_shortcuts_description" msgid="7117251166066978730">"Voor nieuwe apps"</string>
|
||||
<!-- no translation found for icon_shape_override_label (2977264953998281004) -->
|
||||
<skip />
|
||||
<string name="icon_shape_override_label" msgid="2977264953998281004">"Vorm van pictogram wijzigen"</string>
|
||||
<string name="icon_shape_system_default" msgid="1709762974822753030">"Systeemstandaard gebruiken"</string>
|
||||
<string name="icon_shape_square" msgid="633575066111622774">"Vierkant"</string>
|
||||
<string name="icon_shape_squircle" msgid="5658049910802669495">"Squircle"</string>
|
||||
<string name="icon_shape_circle" msgid="6550072265930144217">"Cirkel"</string>
|
||||
<string name="icon_shape_teardrop" msgid="4525869388200835463">"Traan"</string>
|
||||
<!-- no translation found for icon_shape_override_progress (3461735694970239908) -->
|
||||
<skip />
|
||||
<string name="icon_shape_override_progress" msgid="3461735694970239908">"Wijzigingen in vorm van pictogram toepassen"</string>
|
||||
<string name="package_state_unknown" msgid="7592128424511031410">"Onbekend"</string>
|
||||
<string name="abandoned_clean_this" msgid="7610119707847920412">"Verwijderen"</string>
|
||||
<string name="abandoned_search" msgid="891119232568284442">"Zoeken"</string>
|
||||
|
||||
@@ -35,9 +35,9 @@
|
||||
<string name="widget_accessible_dims_format" msgid="3640149169885301790">"Szerokość %1$d, wysokość %2$d"</string>
|
||||
<string name="add_item_request_drag_hint" msgid="5899764264480397019">"Kliknij i przytrzymaj, by umieścić ręcznie"</string>
|
||||
<string name="place_automatically" msgid="8064208734425456485">"Dodaj automatycznie"</string>
|
||||
<string name="all_apps_search_bar_hint" msgid="7084713969757597256">"Szukaj w aplikacjach"</string>
|
||||
<string name="all_apps_loading_message" msgid="7557140873644765180">"Wczytuję aplikacje…"</string>
|
||||
<string name="all_apps_no_search_results" msgid="6332185285860416787">"Nie znaleziono aplikacji pasujących do zapytania „<xliff:g id="QUERY">%1$s</xliff:g>”"</string>
|
||||
<string name="all_apps_search_bar_hint" msgid="1390553134053255246">"Wyszukaj aplikacje"</string>
|
||||
<string name="all_apps_loading_message" msgid="5813968043155271636">"Ładuję aplikacje…"</string>
|
||||
<string name="all_apps_no_search_results" msgid="3200346862396363786">"Nie znaleziono aplikacji pasujących do zapytania „<xliff:g id="QUERY">%1$s</xliff:g>”"</string>
|
||||
<string name="all_apps_search_market_message" msgid="1366263386197059176">"Wyszukaj więcej aplikacji"</string>
|
||||
<string name="notifications_header" msgid="1404149926117359025">"Powiadomienia"</string>
|
||||
<string name="out_of_space" msgid="4691004494942118364">"Brak miejsca na tym ekranie głównym."</string>
|
||||
@@ -79,17 +79,18 @@
|
||||
<string name="icon_badging_title" msgid="874121399231955394">"Plakietki z powiadomieniami"</string>
|
||||
<string name="icon_badging_desc_on" msgid="2627952638544674079">"Włączono"</string>
|
||||
<string name="icon_badging_desc_off" msgid="5503319969924580241">"Wyłączono"</string>
|
||||
<string name="title_missing_notification_access" msgid="7503287056163941064">"Wymagany jest dostęp do powiadomień"</string>
|
||||
<string name="msg_missing_notification_access" msgid="281113995110910548">"Aby pokazać plakietki z powiadomieniami, włącz powiadomienia aplikacji <xliff:g id="NAME">%1$s</xliff:g>"</string>
|
||||
<string name="title_change_settings" msgid="1376365968844349552">"Zmień ustawienia"</string>
|
||||
<string name="auto_add_shortcuts_label" msgid="8222286205987725611">"Dodaj ikonę do ekranu głównego"</string>
|
||||
<string name="auto_add_shortcuts_description" msgid="7117251166066978730">"W przypadku nowych aplikacji"</string>
|
||||
<!-- no translation found for icon_shape_override_label (2977264953998281004) -->
|
||||
<skip />
|
||||
<string name="icon_shape_override_label" msgid="2977264953998281004">"Zmień kształt ikon"</string>
|
||||
<string name="icon_shape_system_default" msgid="1709762974822753030">"Użyj ustawienia domyślnego"</string>
|
||||
<string name="icon_shape_square" msgid="633575066111622774">"Kwadrat"</string>
|
||||
<string name="icon_shape_squircle" msgid="5658049910802669495">"Zaokrąglony kwadrat"</string>
|
||||
<string name="icon_shape_circle" msgid="6550072265930144217">"Okrąg"</string>
|
||||
<string name="icon_shape_teardrop" msgid="4525869388200835463">"Łza"</string>
|
||||
<!-- no translation found for icon_shape_override_progress (3461735694970239908) -->
|
||||
<skip />
|
||||
<string name="icon_shape_override_progress" msgid="3461735694970239908">"Zmieniam kształt ikon"</string>
|
||||
<string name="package_state_unknown" msgid="7592128424511031410">"Brak informacji"</string>
|
||||
<string name="abandoned_clean_this" msgid="7610119707847920412">"Usuń"</string>
|
||||
<string name="abandoned_search" msgid="891119232568284442">"Szukaj"</string>
|
||||
|
||||
@@ -35,9 +35,9 @@
|
||||
<string name="widget_accessible_dims_format" msgid="3640149169885301790">"%1$d de largura por %2$d de altura"</string>
|
||||
<string name="add_item_request_drag_hint" msgid="5899764264480397019">"Toque sem soltar para colocar manualmente"</string>
|
||||
<string name="place_automatically" msgid="8064208734425456485">"Adicionar automaticamente"</string>
|
||||
<string name="all_apps_search_bar_hint" msgid="7084713969757597256">"Pesquisar aplicações"</string>
|
||||
<string name="all_apps_loading_message" msgid="7557140873644765180">"A carregar aplicações..."</string>
|
||||
<string name="all_apps_no_search_results" msgid="6332185285860416787">"Não foram encontradas aplic. que correspondam a \"<xliff:g id="QUERY">%1$s</xliff:g>\""</string>
|
||||
<string name="all_apps_search_bar_hint" msgid="1390553134053255246">"Pesquisar aplicações"</string>
|
||||
<string name="all_apps_loading_message" msgid="5813968043155271636">"A carregar aplicações…"</string>
|
||||
<string name="all_apps_no_search_results" msgid="3200346862396363786">"Nenhuma aplicação correspondente a \"<xliff:g id="QUERY">%1$s</xliff:g>\""</string>
|
||||
<string name="all_apps_search_market_message" msgid="1366263386197059176">"Pesquisar mais aplicações"</string>
|
||||
<string name="notifications_header" msgid="1404149926117359025">"Notificações"</string>
|
||||
<string name="out_of_space" msgid="4691004494942118364">"Sem espaço suficiente neste Ecrã principal."</string>
|
||||
@@ -79,17 +79,18 @@
|
||||
<string name="icon_badging_title" msgid="874121399231955394">"Pontos de notificação"</string>
|
||||
<string name="icon_badging_desc_on" msgid="2627952638544674079">"Ativada"</string>
|
||||
<string name="icon_badging_desc_off" msgid="5503319969924580241">"Desativada"</string>
|
||||
<string name="title_missing_notification_access" msgid="7503287056163941064">"Acesso a notificações necessário"</string>
|
||||
<string name="msg_missing_notification_access" msgid="281113995110910548">"Para mostrar os Pontos de notificação, ative as notificações de aplicações para o <xliff:g id="NAME">%1$s</xliff:g>"</string>
|
||||
<string name="title_change_settings" msgid="1376365968844349552">"Alterar definições"</string>
|
||||
<string name="auto_add_shortcuts_label" msgid="8222286205987725611">"Adicionar ícone ao ecrã principal"</string>
|
||||
<string name="auto_add_shortcuts_description" msgid="7117251166066978730">"Para novas aplicações"</string>
|
||||
<!-- no translation found for icon_shape_override_label (2977264953998281004) -->
|
||||
<skip />
|
||||
<string name="icon_shape_override_label" msgid="2977264953998281004">"Alterar forma do ícone"</string>
|
||||
<string name="icon_shape_system_default" msgid="1709762974822753030">"Utilizar a predefinição do sistema"</string>
|
||||
<string name="icon_shape_square" msgid="633575066111622774">"Quadrado"</string>
|
||||
<string name="icon_shape_squircle" msgid="5658049910802669495">"Quadrado e círculo"</string>
|
||||
<string name="icon_shape_circle" msgid="6550072265930144217">"Círculo"</string>
|
||||
<string name="icon_shape_teardrop" msgid="4525869388200835463">"Lágrima"</string>
|
||||
<!-- no translation found for icon_shape_override_progress (3461735694970239908) -->
|
||||
<skip />
|
||||
<string name="icon_shape_override_progress" msgid="3461735694970239908">"A aplicar alterações à forma do ícone..."</string>
|
||||
<string name="package_state_unknown" msgid="7592128424511031410">"Desconhecido"</string>
|
||||
<string name="abandoned_clean_this" msgid="7610119707847920412">"Remover"</string>
|
||||
<string name="abandoned_search" msgid="891119232568284442">"Pesquisar"</string>
|
||||
|
||||
@@ -35,9 +35,9 @@
|
||||
<string name="widget_accessible_dims_format" msgid="3640149169885301790">"%1$d de largura por %2$d de altura"</string>
|
||||
<string name="add_item_request_drag_hint" msgid="5899764264480397019">"Toque e mantenha pressionado para posicionar manualmente"</string>
|
||||
<string name="place_automatically" msgid="8064208734425456485">"Adicionar automaticamente"</string>
|
||||
<string name="all_apps_search_bar_hint" msgid="7084713969757597256">"Pesquisar apps"</string>
|
||||
<string name="all_apps_loading_message" msgid="7557140873644765180">"Carregando apps…"</string>
|
||||
<string name="all_apps_no_search_results" msgid="6332185285860416787">"Nenhum app encontrado que corresponda a \"<xliff:g id="QUERY">%1$s</xliff:g>\""</string>
|
||||
<string name="all_apps_search_bar_hint" msgid="1390553134053255246">"Apps de pesquisa"</string>
|
||||
<string name="all_apps_loading_message" msgid="5813968043155271636">"Carregando apps…"</string>
|
||||
<string name="all_apps_no_search_results" msgid="3200346862396363786">"Nenhum app encontrado que corresponda a \"<xliff:g id="QUERY">%1$s</xliff:g>\""</string>
|
||||
<string name="all_apps_search_market_message" msgid="1366263386197059176">"Pesquisar mais apps"</string>
|
||||
<string name="notifications_header" msgid="1404149926117359025">"Notificações"</string>
|
||||
<string name="out_of_space" msgid="4691004494942118364">"Não há mais espaço na tela inicial."</string>
|
||||
@@ -79,17 +79,18 @@
|
||||
<string name="icon_badging_title" msgid="874121399231955394">"Pontos de notificação"</string>
|
||||
<string name="icon_badging_desc_on" msgid="2627952638544674079">"Ativado"</string>
|
||||
<string name="icon_badging_desc_off" msgid="5503319969924580241">"Desativado"</string>
|
||||
<string name="title_missing_notification_access" msgid="7503287056163941064">"Acesso a notificações necessário"</string>
|
||||
<string name="msg_missing_notification_access" msgid="281113995110910548">"Para mostrar pontos de notificação, ative as notificações de app para <xliff:g id="NAME">%1$s</xliff:g>"</string>
|
||||
<string name="title_change_settings" msgid="1376365968844349552">"Alterar configurações"</string>
|
||||
<string name="auto_add_shortcuts_label" msgid="8222286205987725611">"Adicionar ícone à tela inicial"</string>
|
||||
<string name="auto_add_shortcuts_description" msgid="7117251166066978730">"Para novos apps"</string>
|
||||
<!-- no translation found for icon_shape_override_label (2977264953998281004) -->
|
||||
<skip />
|
||||
<string name="icon_shape_override_label" msgid="2977264953998281004">"Alterar forma de ícones"</string>
|
||||
<string name="icon_shape_system_default" msgid="1709762974822753030">"Usar padrão do sistema"</string>
|
||||
<string name="icon_shape_square" msgid="633575066111622774">"Quadrado"</string>
|
||||
<string name="icon_shape_squircle" msgid="5658049910802669495">"Quadrado arredondado"</string>
|
||||
<string name="icon_shape_circle" msgid="6550072265930144217">"Círculo"</string>
|
||||
<string name="icon_shape_teardrop" msgid="4525869388200835463">"Lágrima"</string>
|
||||
<!-- no translation found for icon_shape_override_progress (3461735694970239908) -->
|
||||
<skip />
|
||||
<string name="icon_shape_override_progress" msgid="3461735694970239908">"Aplicando alterações na forma dos ícones"</string>
|
||||
<string name="package_state_unknown" msgid="7592128424511031410">"Desconhecido"</string>
|
||||
<string name="abandoned_clean_this" msgid="7610119707847920412">"Remover"</string>
|
||||
<string name="abandoned_search" msgid="891119232568284442">"Pesquisar"</string>
|
||||
|
||||
@@ -35,9 +35,9 @@
|
||||
<string name="widget_accessible_dims_format" msgid="3640149169885301790">"%1$d lățime și %2$d înălțime"</string>
|
||||
<string name="add_item_request_drag_hint" msgid="5899764264480397019">"Atingeți lung pentru a plasa manual"</string>
|
||||
<string name="place_automatically" msgid="8064208734425456485">"Adăugați automat"</string>
|
||||
<string name="all_apps_search_bar_hint" msgid="7084713969757597256">"Căutați aplicații"</string>
|
||||
<string name="all_apps_loading_message" msgid="7557140873644765180">"Se încarcă aplicațiile..."</string>
|
||||
<string name="all_apps_no_search_results" msgid="6332185285860416787">"Nu s-a găsit nicio aplicație pentru „<xliff:g id="QUERY">%1$s</xliff:g>”"</string>
|
||||
<string name="all_apps_search_bar_hint" msgid="1390553134053255246">"Căutați aplicații"</string>
|
||||
<string name="all_apps_loading_message" msgid="5813968043155271636">"Se încarcă aplicații…"</string>
|
||||
<string name="all_apps_no_search_results" msgid="3200346862396363786">"Nu s-a găsit nicio aplicație pentru „<xliff:g id="QUERY">%1$s</xliff:g>\""</string>
|
||||
<string name="all_apps_search_market_message" msgid="1366263386197059176">"Căutați mai multe aplicații"</string>
|
||||
<string name="notifications_header" msgid="1404149926117359025">"Notificări"</string>
|
||||
<string name="out_of_space" msgid="4691004494942118364">"Nu mai este loc pe acest Ecran de pornire."</string>
|
||||
@@ -79,17 +79,18 @@
|
||||
<string name="icon_badging_title" msgid="874121399231955394">"Puncte de notificare"</string>
|
||||
<string name="icon_badging_desc_on" msgid="2627952638544674079">"Activat"</string>
|
||||
<string name="icon_badging_desc_off" msgid="5503319969924580241">"Dezactivat"</string>
|
||||
<string name="title_missing_notification_access" msgid="7503287056163941064">"Este necesar accesul la notificări"</string>
|
||||
<string name="msg_missing_notification_access" msgid="281113995110910548">"Pentru a afișa punctele de notificare, activați notificările din aplicație pentru <xliff:g id="NAME">%1$s</xliff:g>"</string>
|
||||
<string name="title_change_settings" msgid="1376365968844349552">"Modificați setările"</string>
|
||||
<string name="auto_add_shortcuts_label" msgid="8222286205987725611">"Adaugă pictograme în ecranul de pornire"</string>
|
||||
<string name="auto_add_shortcuts_description" msgid="7117251166066978730">"Pentru aplicații noi"</string>
|
||||
<!-- no translation found for icon_shape_override_label (2977264953998281004) -->
|
||||
<skip />
|
||||
<string name="icon_shape_override_label" msgid="2977264953998281004">"Schimbați forma pictogramei"</string>
|
||||
<string name="icon_shape_system_default" msgid="1709762974822753030">"Folosiți setarea prestabilită a sistemului"</string>
|
||||
<string name="icon_shape_square" msgid="633575066111622774">"Pătrat"</string>
|
||||
<string name="icon_shape_squircle" msgid="5658049910802669495">"Pătrat cu colțuri rotunjite"</string>
|
||||
<string name="icon_shape_circle" msgid="6550072265930144217">"Cerc"</string>
|
||||
<string name="icon_shape_teardrop" msgid="4525869388200835463">"Lacrimă"</string>
|
||||
<!-- no translation found for icon_shape_override_progress (3461735694970239908) -->
|
||||
<skip />
|
||||
<string name="icon_shape_override_progress" msgid="3461735694970239908">"Se aplică modificările aduse formei pictogramei"</string>
|
||||
<string name="package_state_unknown" msgid="7592128424511031410">"Necunoscut"</string>
|
||||
<string name="abandoned_clean_this" msgid="7610119707847920412">"Eliminați"</string>
|
||||
<string name="abandoned_search" msgid="891119232568284442">"Căutați"</string>
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user