am 00e827c7: am 5fcaab43: am ea9ad5ce: Merge remote-tracking branch \'origin/ub-launcher3-burnaby\' into mnc-dev
* commit '00e827c70cb4213ee05140157006a37d12662448': (76 commits) Restoring provider behavior for reloading app on old devices > For older devices, launcher will only reload in case of inserts with specific query parameters > For older devices, launcehr will notify content observers of any internal inserts > Chaning TAG for Launcher provider as max logging tag is only 23 characters Removing items which are on invalid screen Preventing null pointer crash when opening a folder Revert workaround for move to default screen on home intent. Fixing NPE in recycler view scroll bar. Adding workaround for regression caused by ag/752175 Adding gradle script for Android Studio Override the overscroll color for the widget rows. Adding graphic for all apps empty search screen. Using GET_UNINSTALLED_PACKAGES flag when getting packageInfo for a managed profile app Revert "Adding viewId for the QSB" Adding viewId for the QSB Fixing issue with missing scroll bar after fast-scrolling and searching. Fixing an issue where you would inadvertently start fastscrolling. Pending bind callbacks should be cleared before starting the loader, similar to startBinding Fixing widgets container inactive scroll bar color. Making the detached scrollbar catch up faster to the actual scroll position. Updating theme to use the light theme by default, instead of wallpaper theme > This allows us to use all the goodness of material theme > Cursor in folder edit text is no longer 1px wide Updating the target sdk to launcher Using the usermanager api to get creation time ...
@@ -8,3 +8,9 @@ tests/stress/gen/
|
||||
WallpaperPicker/gen/
|
||||
WallpaperPicker/.project.properties
|
||||
bin/
|
||||
.idea/
|
||||
.gradle/
|
||||
local.properties
|
||||
gradle/
|
||||
build/
|
||||
gradlew*
|
||||
@@ -23,16 +23,25 @@ include $(CLEAR_VARS)
|
||||
|
||||
LOCAL_MODULE_TAGS := optional
|
||||
|
||||
LOCAL_STATIC_JAVA_LIBRARIES := \
|
||||
android-support-v4 \
|
||||
android-support-v7-recyclerview
|
||||
|
||||
LOCAL_SRC_FILES := $(call all-java-files-under, src) \
|
||||
$(call all-java-files-under, WallpaperPicker/src) \
|
||||
$(call all-proto-files-under, protos)
|
||||
LOCAL_RESOURCE_DIR := $(LOCAL_PATH)/WallpaperPicker/res $(LOCAL_PATH)/res
|
||||
|
||||
LOCAL_RESOURCE_DIR := $(LOCAL_PATH)/WallpaperPicker/res \
|
||||
$(LOCAL_PATH)/res \
|
||||
$(LOCAL_PATH)/../../../prebuilts/sdk/current/support/v7/recyclerview/res
|
||||
|
||||
LOCAL_PROGUARD_FLAG_FILES := proguard.flags
|
||||
LOCAL_STATIC_JAVA_LIBRARIES := android-support-v4 android-support-v7-recyclerview
|
||||
|
||||
LOCAL_PROTOC_OPTIMIZE_TYPE := nano
|
||||
LOCAL_PROTOC_FLAGS := --proto_path=$(LOCAL_PATH)/protos/
|
||||
LOCAL_AAPT_FLAGS := --auto-add-overlay
|
||||
LOCAL_AAPT_FLAGS := \
|
||||
--auto-add-overlay \
|
||||
--extra-packages android.support.v7.recyclerview
|
||||
|
||||
LOCAL_SDK_VERSION := current
|
||||
LOCAL_PACKAGE_NAME := Launcher3
|
||||
|
||||
@@ -20,7 +20,7 @@
|
||||
<manifest
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
package="com.android.launcher3">
|
||||
<uses-sdk android:targetSdkVersion="21" android:minSdkVersion="16"/>
|
||||
<uses-sdk android:targetSdkVersion="23" android:minSdkVersion="16"/>
|
||||
|
||||
<permission
|
||||
android:name="com.android.launcher.permission.INSTALL_SHORTCUT"
|
||||
@@ -53,7 +53,6 @@
|
||||
<uses-permission android:name="android.permission.SET_WALLPAPER_HINTS" />
|
||||
<uses-permission android:name="android.permission.VIBRATE" />
|
||||
<uses-permission android:name="android.permission.BIND_APPWIDGET" />
|
||||
<uses-permission android:name="android.permission.GET_ACCOUNTS" />
|
||||
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
|
||||
<uses-permission android:name="android.permission.BROADCAST_STICKY"/>
|
||||
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
|
||||
|
||||
@@ -25,7 +25,7 @@
|
||||
<item name="android:windowTranslucentNavigation">true</item>
|
||||
</style>
|
||||
|
||||
<style name="Theme" parent="@android:style/Theme.DeviceDefault.Wallpaper.NoTitleBar">
|
||||
<style name="Theme" parent="@style/BaseWallpaperTheme">
|
||||
<item name="android:windowTranslucentStatus">true</item>
|
||||
<item name="android:windowTranslucentNavigation">true</item>
|
||||
</style>
|
||||
|
||||
@@ -33,4 +33,11 @@
|
||||
<item name="android:background">?android:attr/selectableItemBackgroundBorderless</item>
|
||||
</style>
|
||||
|
||||
<style name="Theme" parent="@style/BaseWallpaperTheme">
|
||||
<item name="android:windowTranslucentStatus">true</item>
|
||||
<item name="android:windowTranslucentNavigation">true</item>
|
||||
<item name="android:colorControlActivated">@color/launcher_accent_color</item>
|
||||
<item name="android:colorAccent">@color/launcher_accent_color</item>
|
||||
<item name="android:colorPrimary">@color/launcher_accent_color</item>
|
||||
</style>
|
||||
</resources>
|
||||
@@ -19,4 +19,6 @@
|
||||
-->
|
||||
<resources>
|
||||
<color name="wallpaper_picker_translucent_gray">#66000000</color>
|
||||
|
||||
<color name="launcher_accent_color">#ff009688</color>
|
||||
</resources>
|
||||
|
||||
@@ -35,9 +35,15 @@
|
||||
<item name="android:background">#88000000</item>
|
||||
</style>
|
||||
|
||||
<style name="Theme" parent="@android:style/Theme.DeviceDefault.Wallpaper.NoTitleBar">
|
||||
<style name="BaseWallpaperTheme" parent="@android:style/Theme.DeviceDefault.Light.NoActionBar">
|
||||
<item name="android:windowBackground">@android:color/transparent</item>
|
||||
<item name="android:colorBackgroundCacheHint">@null</item>
|
||||
<item name="android:windowShowWallpaper">true</item>
|
||||
<item name="android:windowNoTitle">true</item>
|
||||
</style>
|
||||
|
||||
<style name="Theme" parent="@style/BaseWallpaperTheme"></style>
|
||||
|
||||
<style name="ActionBarSetWallpaperStyle" parent="@android:style/Widget.DeviceDefault.ActionButton">
|
||||
<item name="android:textColor">#ffffffff</item>
|
||||
<item name="android:background">?android:attr/selectableItemBackground</item>
|
||||
|
||||
@@ -223,14 +223,12 @@ public class WallpaperCropActivity extends BaseActivity implements Handler.Callb
|
||||
|
||||
@TargetApi(Build.VERSION_CODES.JELLY_BEAN_MR1)
|
||||
protected boolean isActivityDestroyed() {
|
||||
return (Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN_MR1)
|
||||
&& isDestroyed();
|
||||
return Utilities.ATLEAST_JB_MR1 && isDestroyed();
|
||||
}
|
||||
|
||||
@Thunk void addReusableBitmap(TileSource src) {
|
||||
synchronized (mReusableBitmaps) {
|
||||
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT
|
||||
&& src instanceof BitmapRegionTileSource) {
|
||||
if (Utilities.ATLEAST_KITKAT && src instanceof BitmapRegionTileSource) {
|
||||
Bitmap preview = ((BitmapRegionTileSource) src).getBitmap();
|
||||
if (preview != null && preview.isMutable()) {
|
||||
mReusableBitmaps.add(preview);
|
||||
|
||||
@@ -100,6 +100,7 @@ public class WallpaperPickerActivity extends WallpaperCropActivity {
|
||||
|
||||
@Thunk LinearLayout mWallpapersView;
|
||||
@Thunk HorizontalScrollView mWallpaperScrollContainer;
|
||||
@Thunk View mWallpaperStrip;
|
||||
|
||||
@Thunk ActionMode.Callback mActionModeCallback;
|
||||
@Thunk ActionMode mActionMode;
|
||||
@@ -379,6 +380,7 @@ public class WallpaperPickerActivity extends WallpaperCropActivity {
|
||||
|
||||
mProgressView = findViewById(R.id.loading);
|
||||
mWallpaperScrollContainer = (HorizontalScrollView) findViewById(R.id.wallpaper_scroll_container);
|
||||
mWallpaperStrip = findViewById(R.id.wallpaper_strip);
|
||||
mCropView.setTouchCallback(new CropView.TouchCallback() {
|
||||
ViewPropertyAnimator mAnim;
|
||||
@Override
|
||||
@@ -386,15 +388,15 @@ public class WallpaperPickerActivity extends WallpaperCropActivity {
|
||||
if (mAnim != null) {
|
||||
mAnim.cancel();
|
||||
}
|
||||
if (mWallpaperScrollContainer.getAlpha() == 1f) {
|
||||
if (mWallpaperStrip.getAlpha() == 1f) {
|
||||
mIgnoreNextTap = true;
|
||||
}
|
||||
mAnim = mWallpaperScrollContainer.animate();
|
||||
mAnim = mWallpaperStrip.animate();
|
||||
mAnim.alpha(0f)
|
||||
.setDuration(150)
|
||||
.withEndAction(new Runnable() {
|
||||
public void run() {
|
||||
mWallpaperScrollContainer.setVisibility(View.INVISIBLE);
|
||||
mWallpaperStrip.setVisibility(View.INVISIBLE);
|
||||
}
|
||||
});
|
||||
mAnim.setInterpolator(new AccelerateInterpolator(0.75f));
|
||||
@@ -412,8 +414,8 @@ public class WallpaperPickerActivity extends WallpaperCropActivity {
|
||||
if (mAnim != null) {
|
||||
mAnim.cancel();
|
||||
}
|
||||
mWallpaperScrollContainer.setVisibility(View.VISIBLE);
|
||||
mAnim = mWallpaperScrollContainer.animate();
|
||||
mWallpaperStrip.setVisibility(View.VISIBLE);
|
||||
mAnim = mWallpaperStrip.animate();
|
||||
mAnim.alpha(1f)
|
||||
.setDuration(150)
|
||||
.setInterpolator(new DecelerateInterpolator(0.75f));
|
||||
@@ -548,7 +550,12 @@ public class WallpaperPickerActivity extends WallpaperCropActivity {
|
||||
new View.OnClickListener() {
|
||||
@Override
|
||||
public void onClick(View v) {
|
||||
if (mSelectedTile != null) {
|
||||
// Ensure that a tile is slelected and loaded.
|
||||
if (mSelectedTile != null && mCropView.getTileSource() != null) {
|
||||
// Prevent user from selecting any new tile.
|
||||
mWallpaperStrip.setVisibility(View.GONE);
|
||||
actionBar.hide();
|
||||
|
||||
WallpaperTileInfo info = (WallpaperTileInfo) mSelectedTile.getTag();
|
||||
info.onSave(WallpaperPickerActivity.this);
|
||||
} else {
|
||||
@@ -713,10 +720,10 @@ public class WallpaperPickerActivity extends WallpaperCropActivity {
|
||||
|
||||
public void onStop() {
|
||||
super.onStop();
|
||||
mWallpaperScrollContainer = (HorizontalScrollView) findViewById(R.id.wallpaper_scroll_container);
|
||||
if (mWallpaperScrollContainer.getAlpha() < 1f) {
|
||||
mWallpaperScrollContainer.setAlpha(1f);
|
||||
mWallpaperScrollContainer.setVisibility(View.VISIBLE);
|
||||
mWallpaperStrip = findViewById(R.id.wallpaper_strip);
|
||||
if (mWallpaperStrip.getAlpha() < 1f) {
|
||||
mWallpaperStrip.setAlpha(1f);
|
||||
mWallpaperStrip.setVisibility(View.VISIBLE);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -970,10 +977,8 @@ public class WallpaperPickerActivity extends WallpaperCropActivity {
|
||||
|
||||
if (partner == null || !partner.hideDefaultWallpaper()) {
|
||||
// Add an entry for the default wallpaper (stored in system resources)
|
||||
WallpaperTileInfo defaultWallpaperInfo =
|
||||
(Build.VERSION.SDK_INT < Build.VERSION_CODES.KITKAT)
|
||||
? getPreKKDefaultWallpaperInfo()
|
||||
: getDefaultWallpaper();
|
||||
WallpaperTileInfo defaultWallpaperInfo = Utilities.ATLEAST_KITKAT
|
||||
? getDefaultWallpaper() : getPreKKDefaultWallpaperInfo();
|
||||
if (defaultWallpaperInfo != null) {
|
||||
bundled.add(0, defaultWallpaperInfo);
|
||||
}
|
||||
|
||||
@@ -0,0 +1,55 @@
|
||||
buildscript {
|
||||
repositories {
|
||||
mavenCentral()
|
||||
}
|
||||
dependencies {
|
||||
classpath 'com.android.tools.build:gradle:1.3.0'
|
||||
classpath 'com.google.protobuf:protobuf-gradle-plugin:0.7.0'
|
||||
}
|
||||
}
|
||||
|
||||
apply plugin: 'com.android.application'
|
||||
apply plugin: 'com.google.protobuf'
|
||||
|
||||
android {
|
||||
compileSdkVersion 23
|
||||
buildToolsVersion "22.0.1"
|
||||
|
||||
defaultConfig {
|
||||
applicationId "com.android.launcher3"
|
||||
minSdkVersion 16
|
||||
targetSdkVersion 23
|
||||
versionCode 1
|
||||
versionName "1.0"
|
||||
}
|
||||
buildTypes {
|
||||
debug {
|
||||
minifyEnabled false
|
||||
}
|
||||
}
|
||||
sourceSets {
|
||||
main {
|
||||
res.srcDirs = ['res', 'WallpaperPicker/res']
|
||||
main.java.srcDirs = ['src', 'WallpaperPicker/src']
|
||||
manifest.srcFile 'AndroidManifest.xml'
|
||||
proto.srcDirs 'protos/'
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
repositories {
|
||||
mavenCentral()
|
||||
}
|
||||
|
||||
dependencies {
|
||||
compile 'com.android.support:support-v4:+'
|
||||
compile 'com.android.support:recyclerview-v7:+'
|
||||
compile 'com.google.protobuf.nano:protobuf-javanano:3.0.0-alpha-2'
|
||||
}
|
||||
|
||||
protobuf {
|
||||
// Configure the protoc executable
|
||||
protoc {
|
||||
artifact = 'com.google.protobuf:protoc:3.0.0-alpha-3'
|
||||
}
|
||||
}
|
||||
@@ -1,8 +1,13 @@
|
||||
-keep class com.android.launcher3.allapps.AllAppsBackgroundDrawable {
|
||||
public void setAlpha(int);
|
||||
public int getAlpha();
|
||||
}
|
||||
|
||||
-keep class com.android.launcher3.BaseRecyclerViewFastScrollBar {
|
||||
public void setWidth(int);
|
||||
public int getWidth();
|
||||
public void setTrackAlpha(int);
|
||||
public int getTrackAlpha();
|
||||
public void setThumbWidth(int);
|
||||
public int getThumbWidth();
|
||||
public void setTrackWidth(int);
|
||||
public int getTrackWidth();
|
||||
}
|
||||
|
||||
-keep class com.android.launcher3.BaseRecyclerViewFastScrollPopup {
|
||||
@@ -63,4 +68,4 @@
|
||||
-keep class com.android.launcher3.Workspace {
|
||||
public float getBackgroundAlpha();
|
||||
public void setBackgroundAlpha(float);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -101,7 +101,10 @@ message Favorite {
|
||||
optional string iconPackage = 16;
|
||||
optional string iconResource = 17;
|
||||
optional bytes icon = 18;
|
||||
|
||||
// Added in backup version 4
|
||||
optional TargetType targetType = 19 [default = TARGET_NONE];
|
||||
optional int32 rank = 20;
|
||||
}
|
||||
|
||||
message Screen {
|
||||
@@ -121,6 +124,7 @@ message Widget {
|
||||
optional Resource icon = 4;
|
||||
optional Resource preview = 5;
|
||||
|
||||
// Added in backup version 3
|
||||
// Assume that a widget is resizable upto 2x2 if no data is available
|
||||
optional int32 minSpanX = 6 [default = 2];
|
||||
optional int32 minSpanY = 7 [default = 2];
|
||||
|
||||
|
After Width: | Height: | Size: 27 KiB |
|
After Width: | Height: | Size: 3.6 KiB |
|
After Width: | Height: | Size: 3.9 KiB |
|
After Width: | Height: | Size: 5.5 KiB |
|
After Width: | Height: | Size: 4.0 KiB |
|
Before Width: | Height: | Size: 190 B After Width: | Height: | Size: 152 B |
|
Before Width: | Height: | Size: 743 B After Width: | Height: | Size: 419 B |
|
After Width: | Height: | Size: 16 KiB |
|
After Width: | Height: | Size: 2.3 KiB |
|
After Width: | Height: | Size: 2.5 KiB |
|
After Width: | Height: | Size: 3.4 KiB |
|
After Width: | Height: | Size: 2.6 KiB |
|
Before Width: | Height: | Size: 151 B After Width: | Height: | Size: 117 B |
|
Before Width: | Height: | Size: 497 B After Width: | Height: | Size: 263 B |
@@ -0,0 +1,19 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2015 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.
|
||||
-->
|
||||
<ripple xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:color="@color/all_apps_search_market_button_focused_bg_color">
|
||||
<item android:drawable="@color/quantum_panel_bg_color" />
|
||||
</ripple>
|
||||
|
After Width: | Height: | Size: 39 KiB |
|
After Width: | Height: | Size: 5.0 KiB |
|
After Width: | Height: | Size: 5.4 KiB |
|
After Width: | Height: | Size: 8.0 KiB |
|
After Width: | Height: | Size: 5.5 KiB |
|
Before Width: | Height: | Size: 234 B After Width: | Height: | Size: 151 B |
|
Before Width: | Height: | Size: 972 B After Width: | Height: | Size: 497 B |
|
After Width: | Height: | Size: 69 KiB |
|
After Width: | Height: | Size: 8.2 KiB |
|
After Width: | Height: | Size: 9.0 KiB |
|
After Width: | Height: | Size: 14 KiB |
|
After Width: | Height: | Size: 9.0 KiB |
|
Before Width: | Height: | Size: 308 B After Width: | Height: | Size: 190 B |
|
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 743 B |
|
After Width: | Height: | Size: 80 KiB |
|
After Width: | Height: | Size: 29 KiB |
|
After Width: | Height: | Size: 11 KiB |
|
After Width: | Height: | Size: 14 KiB |
|
After Width: | Height: | Size: 10 KiB |
|
Before Width: | Height: | Size: 359 B After Width: | Height: | Size: 234 B |
|
Before Width: | Height: | Size: 1.9 KiB After Width: | Height: | Size: 972 B |
@@ -0,0 +1,20 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2015 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.
|
||||
-->
|
||||
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<item android:state_focused="true" android:drawable="@color/all_apps_search_market_button_focused_bg_color" />
|
||||
<item android:state_pressed="true" android:drawable="@color/all_apps_search_market_button_focused_bg_color" />
|
||||
<item android:drawable="@android:color/transparent" />
|
||||
</selector>
|
||||
@@ -0,0 +1,21 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Copyright (C) 2015 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.
|
||||
-->
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle">
|
||||
<size android:height="1dp" />
|
||||
<solid android:color="#ddd" />
|
||||
</shape>
|
||||
@@ -18,11 +18,14 @@
|
||||
android:id="@+id/empty_text"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:gravity="center"
|
||||
android:paddingTop="24dp"
|
||||
android:paddingBottom="24dp"
|
||||
android:paddingRight="@dimen/all_apps_grid_view_start_margin"
|
||||
android:textSize="16sp"
|
||||
android:textColor="#4c4c4c"
|
||||
android:gravity="start"
|
||||
android:paddingTop="@dimen/all_apps_empty_search_message_top_offset"
|
||||
android:paddingBottom="8dp"
|
||||
android:paddingLeft="16dp"
|
||||
android:paddingRight="16dp"
|
||||
android:fontFamily="sans-serif-medium"
|
||||
android:textSize="14sp"
|
||||
android:textColor="#212121"
|
||||
android:alpha="0.56"
|
||||
android:focusable="false" />
|
||||
|
||||
|
||||
@@ -32,14 +32,13 @@
|
||||
android:id="@+id/dismiss_search_button"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginLeft="4dp"
|
||||
android:layout_marginStart="4dp"
|
||||
android:layout_gravity="center_vertical"
|
||||
android:layout_marginLeft="16dp"
|
||||
android:layout_marginStart="16dp"
|
||||
android:contentDescription="@string/all_apps_button_label"
|
||||
android:paddingBottom="13dp"
|
||||
android:paddingTop="13dp"
|
||||
android:src="@drawable/ic_arrow_back_grey" />
|
||||
|
||||
<com.android.launcher3.allapps.AllAppsSearchEditView
|
||||
<com.android.launcher3.ExtendedEditText
|
||||
android:id="@+id/search_box_input"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
@@ -48,7 +47,7 @@
|
||||
android:gravity="fill_horizontal|center_vertical"
|
||||
android:hint="@string/all_apps_search_bar_hint"
|
||||
android:inputType="text|textNoSuggestions|textCapWords"
|
||||
android:imeOptions="actionDone|flagNoExtractUi"
|
||||
android:imeOptions="actionSearch|flagNoExtractUi"
|
||||
android:maxLines="1"
|
||||
android:paddingLeft="8dp"
|
||||
android:scrollHorizontally="true"
|
||||
@@ -63,10 +62,8 @@
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="@dimen/all_apps_search_bar_height"
|
||||
android:layout_gravity="end|center_vertical"
|
||||
android:layout_marginEnd="4dp"
|
||||
android:layout_marginRight="4dp"
|
||||
android:layout_marginEnd="16dp"
|
||||
android:layout_marginRight="16dp"
|
||||
android:contentDescription="@string/all_apps_search_bar_hint"
|
||||
android:paddingBottom="13dp"
|
||||
android:paddingTop="13dp"
|
||||
android:src="@drawable/ic_search_grey" />
|
||||
</FrameLayout>
|
||||
@@ -0,0 +1,29 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2015 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.
|
||||
-->
|
||||
<TextView
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:id="@+id/search_market_text"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="48dp"
|
||||
android:gravity="start|center_vertical"
|
||||
android:paddingLeft="16dp"
|
||||
android:paddingRight="16dp"
|
||||
android:fontFamily="sans-serif-medium"
|
||||
android:textSize="14sp"
|
||||
android:textColor="@color/launcher_accent_color"
|
||||
android:textAllCaps="true"
|
||||
android:focusable="false"
|
||||
android:background="@drawable/all_apps_search_market_bg" />
|
||||
@@ -0,0 +1,27 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2015 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="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:gravity="center"
|
||||
android:paddingTop="16dp"
|
||||
android:paddingBottom="8dp"
|
||||
android:paddingLeft="16dp"
|
||||
android:paddingRight="16dp"
|
||||
android:focusable="false"
|
||||
android:scaleType="matrix"
|
||||
android:src="@drawable/horizontal_line" />
|
||||
@@ -32,6 +32,7 @@
|
||||
android:gravity="center_horizontal"
|
||||
android:text="@string/wallpaper_button_text"
|
||||
android:textAllCaps="true"
|
||||
android:textColor="@android:color/white"
|
||||
android:textSize="12sp" />
|
||||
|
||||
<TextView
|
||||
@@ -45,6 +46,7 @@
|
||||
android:gravity="center_horizontal"
|
||||
android:text="@string/widget_button_text"
|
||||
android:textAllCaps="true"
|
||||
android:textColor="@android:color/white"
|
||||
android:textSize="12sp" />
|
||||
|
||||
<TextView
|
||||
@@ -58,6 +60,7 @@
|
||||
android:gravity="center_horizontal"
|
||||
android:text="@string/settings_button_text"
|
||||
android:textAllCaps="true"
|
||||
android:textColor="@android:color/white"
|
||||
android:textSize="12sp" />
|
||||
|
||||
</LinearLayout>
|
||||
@@ -53,7 +53,7 @@
|
||||
android:paddingLeft="8dp"
|
||||
android:paddingRight="8dp" >
|
||||
|
||||
<com.android.launcher3.FolderEditText
|
||||
<com.android.launcher3.ExtendedEditText
|
||||
android:id="@+id/folder_name"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="wrap_content"
|
||||
@@ -70,7 +70,6 @@
|
||||
android:textColor="#ff777777"
|
||||
android:textColorHighlight="#ffCCCCCC"
|
||||
android:textColorHint="#ff808080"
|
||||
android:textCursorDrawable="@null"
|
||||
android:textSize="14sp" />
|
||||
|
||||
<include
|
||||
|
||||
@@ -51,6 +51,7 @@
|
||||
|
||||
<HorizontalScrollView
|
||||
android:id="@+id/widgets_scroll_container"
|
||||
android:theme="@style/Theme.Dark.CustomOverscroll"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:scrollbars="none">
|
||||
|
||||
@@ -32,6 +32,7 @@
|
||||
<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_market_message" msgid="5470761048755751471">"Gaan na <xliff:g id="QUERY">%1$s</xliff:g>"</string>
|
||||
<string name="out_of_space" msgid="4691004494942118364">"Niks meer spasie op die tuisskerm nie."</string>
|
||||
<string name="hotseat_out_of_space" msgid="7448809638125333693">"Geen plek meer in die Gunstelinge-laai nie"</string>
|
||||
<string name="all_apps_button_label" msgid="9110807029020582876">"Programme"</string>
|
||||
|
||||
@@ -32,6 +32,7 @@
|
||||
<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_market_message" msgid="5470761048755751471">"ወደ <xliff:g id="QUERY">%1$s</xliff:g> ሂድ"</string>
|
||||
<string name="out_of_space" msgid="4691004494942118364">"በዚህ መነሻ ማያ ገጽ ላይ ምንም ቦታ የለም።"</string>
|
||||
<string name="hotseat_out_of_space" msgid="7448809638125333693">"በተወዳጆች መሣቢያ ውስጥ ተጨማሪ ቦታ የለም"</string>
|
||||
<string name="all_apps_button_label" msgid="9110807029020582876">"መተግበሪያዎች"</string>
|
||||
|
||||
@@ -32,12 +32,13 @@
|
||||
<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_market_message" msgid="5470761048755751471">"الانتقال إلى <xliff:g id="QUERY">%1$s</xliff:g>"</string>
|
||||
<string name="out_of_space" msgid="4691004494942118364">"ليس هناك مساحة أخرى في هذه الشاشة الرئيسية."</string>
|
||||
<string name="hotseat_out_of_space" msgid="7448809638125333693">"لا يوجد المزيد من الحقول في علبة المفضلة"</string>
|
||||
<string name="all_apps_button_label" msgid="9110807029020582876">"التطبيقات"</string>
|
||||
<string name="all_apps_home_button_label" msgid="252062713717058851">"الرئيسية"</string>
|
||||
<string name="delete_target_label" msgid="1822697352535677073">"إزالة"</string>
|
||||
<string name="delete_target_uninstall_label" msgid="5100785476250872595">"إزالة"</string>
|
||||
<string name="delete_target_uninstall_label" msgid="5100785476250872595">"إلغاء التثبيت"</string>
|
||||
<string name="info_target_label" msgid="8053346143994679532">"معلومات عن التطبيق"</string>
|
||||
<string name="permlab_install_shortcut" msgid="5632423390354674437">"تثبيت اختصارات"</string>
|
||||
<string name="permdesc_install_shortcut" msgid="923466509822011139">"للسماح لتطبيق ما بإضافة اختصارات بدون تدخل المستخدم."</string>
|
||||
|
||||
@@ -32,6 +32,7 @@
|
||||
<string name="all_apps_search_bar_hint" msgid="7084713969757597256">"Tətbiq Axtarın"</string>
|
||||
<string name="all_apps_loading_message" msgid="7557140873644765180">"Tətbiqlər endirilir..."</string>
|
||||
<string name="all_apps_no_search_results" msgid="6332185285860416787">"\"<xliff:g id="QUERY">%1$s</xliff:g>\" sorğusuna uyğun Tətbiqlər tapılmadı"</string>
|
||||
<string name="all_apps_search_market_message" msgid="5470761048755751471">"<xliff:g id="QUERY">%1$s</xliff:g> daxil olun"</string>
|
||||
<string name="out_of_space" msgid="4691004494942118364">"Bu Əsas ekranda boş yer yoxdur."</string>
|
||||
<string name="hotseat_out_of_space" msgid="7448809638125333693">"Favoritlər-də yer yoxdur"</string>
|
||||
<string name="all_apps_button_label" msgid="9110807029020582876">"Tətbiqlər"</string>
|
||||
|
||||
@@ -32,6 +32,7 @@
|
||||
<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_market_message" msgid="5470761048755751471">"Отваряне на <xliff:g id="QUERY">%1$s</xliff:g>"</string>
|
||||
<string name="out_of_space" msgid="4691004494942118364">"На този начален екран няма повече място."</string>
|
||||
<string name="hotseat_out_of_space" msgid="7448809638125333693">"Няма повече място в областта с любимите"</string>
|
||||
<string name="all_apps_button_label" msgid="9110807029020582876">"Приложения"</string>
|
||||
|
||||
@@ -32,6 +32,7 @@
|
||||
<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_market_message" msgid="5470761048755751471">"<xliff:g id="QUERY">%1$s</xliff:g> এ যান"</string>
|
||||
<string name="out_of_space" msgid="4691004494942118364">"এই হোম স্ক্রীনে আর কোনো জায়গা নেই৷"</string>
|
||||
<string name="hotseat_out_of_space" msgid="7448809638125333693">"পছন্দসই ট্রে-তে আর কোনো জায়গা নেই"</string>
|
||||
<string name="all_apps_button_label" msgid="9110807029020582876">"অ্যাপ্লিকেশানগুলি"</string>
|
||||
|
||||
@@ -32,6 +32,7 @@
|
||||
<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_market_message" msgid="5470761048755751471">"Vés a <xliff:g id="QUERY">%1$s</xliff:g>"</string>
|
||||
<string name="out_of_space" msgid="4691004494942118364">"Ja no queda espai en aquesta pantalla d\'inici."</string>
|
||||
<string name="hotseat_out_of_space" msgid="7448809638125333693">"No hi ha més espai a la safata Preferits."</string>
|
||||
<string name="all_apps_button_label" msgid="9110807029020582876">"Aplicacions"</string>
|
||||
|
||||
@@ -32,6 +32,7 @@
|
||||
<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_market_message" msgid="5470761048755751471">"Přejít na <xliff:g id="QUERY">%1$s</xliff:g>"</string>
|
||||
<string name="out_of_space" msgid="4691004494942118364">"Na této ploše již není místo."</string>
|
||||
<string name="hotseat_out_of_space" msgid="7448809638125333693">"Na panelu Oblíbené položky již není místo."</string>
|
||||
<string name="all_apps_button_label" msgid="9110807029020582876">"Aplikace"</string>
|
||||
|
||||
@@ -32,6 +32,7 @@
|
||||
<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_market_message" msgid="5470761048755751471">"Gå til <xliff:g id="QUERY">%1$s</xliff:g>"</string>
|
||||
<string name="out_of_space" msgid="4691004494942118364">"Der er ikke mere plads på denne startskærm."</string>
|
||||
<string name="hotseat_out_of_space" msgid="7448809638125333693">"Der er ikke mere plads i bakken Foretrukne"</string>
|
||||
<string name="all_apps_button_label" msgid="9110807029020582876">"Apps"</string>
|
||||
|
||||
@@ -32,6 +32,7 @@
|
||||
<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_market_message" msgid="5470761048755751471">"Gehe zu <xliff:g id="QUERY">%1$s</xliff:g>"</string>
|
||||
<string name="out_of_space" msgid="4691004494942118364">"Auf diesem Startbildschirm ist kein Platz mehr vorhanden."</string>
|
||||
<string name="hotseat_out_of_space" msgid="7448809638125333693">"Ablage \"Favoriten\" ist voll."</string>
|
||||
<string name="all_apps_button_label" msgid="9110807029020582876">"Apps"</string>
|
||||
|
||||
@@ -32,6 +32,7 @@
|
||||
<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_market_message" msgid="5470761048755751471">"Μετάβαση σε <xliff:g id="QUERY">%1$s</xliff:g>"</string>
|
||||
<string name="out_of_space" msgid="4691004494942118364">"Δεν υπάρχει χώρος σε αυτήν την αρχική οθόνη."</string>
|
||||
<string name="hotseat_out_of_space" msgid="7448809638125333693">"Δεν υπάρχει επιπλέον χώρος στην περιοχή Αγαπημένα"</string>
|
||||
<string name="all_apps_button_label" msgid="9110807029020582876">"Εφαρμογές"</string>
|
||||
|
||||
@@ -32,6 +32,7 @@
|
||||
<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_market_message" msgid="5470761048755751471">"Go to <xliff:g id="QUERY">%1$s</xliff:g>"</string>
|
||||
<string name="out_of_space" msgid="4691004494942118364">"No more room on this Home screen."</string>
|
||||
<string name="hotseat_out_of_space" msgid="7448809638125333693">"No more room in the Favourites tray"</string>
|
||||
<string name="all_apps_button_label" msgid="9110807029020582876">"Apps"</string>
|
||||
|
||||
@@ -32,6 +32,7 @@
|
||||
<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_market_message" msgid="5470761048755751471">"Go to <xliff:g id="QUERY">%1$s</xliff:g>"</string>
|
||||
<string name="out_of_space" msgid="4691004494942118364">"No more room on this Home screen."</string>
|
||||
<string name="hotseat_out_of_space" msgid="7448809638125333693">"No more room in the Favourites tray"</string>
|
||||
<string name="all_apps_button_label" msgid="9110807029020582876">"Apps"</string>
|
||||
|
||||
@@ -32,6 +32,7 @@
|
||||
<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_market_message" msgid="5470761048755751471">"Go to <xliff:g id="QUERY">%1$s</xliff:g>"</string>
|
||||
<string name="out_of_space" msgid="4691004494942118364">"No more room on this Home screen."</string>
|
||||
<string name="hotseat_out_of_space" msgid="7448809638125333693">"No more room in the Favourites tray"</string>
|
||||
<string name="all_apps_button_label" msgid="9110807029020582876">"Apps"</string>
|
||||
|
||||
@@ -32,6 +32,7 @@
|
||||
<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_market_message" msgid="5470761048755751471">"Ir a <xliff:g id="QUERY">%1$s</xliff:g>"</string>
|
||||
<string name="out_of_space" msgid="4691004494942118364">"No hay más espacio en esta pantalla principal."</string>
|
||||
<string name="hotseat_out_of_space" msgid="7448809638125333693">"La bandeja de favoritos está llena."</string>
|
||||
<string name="all_apps_button_label" msgid="9110807029020582876">"Aplicaciones"</string>
|
||||
|
||||
@@ -32,6 +32,7 @@
|
||||
<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_market_message" msgid="5470761048755751471">"Ir a <xliff:g id="QUERY">%1$s</xliff:g>"</string>
|
||||
<string name="out_of_space" msgid="4691004494942118364">"No queda espacio en la pantalla de inicio."</string>
|
||||
<string name="hotseat_out_of_space" msgid="7448809638125333693">"La bandeja de favoritos está completa"</string>
|
||||
<string name="all_apps_button_label" msgid="9110807029020582876">"Aplicaciones"</string>
|
||||
|
||||
@@ -32,6 +32,7 @@
|
||||
<string name="all_apps_search_bar_hint" msgid="7084713969757597256">"Otsige rakendustest"</string>
|
||||
<string name="all_apps_loading_message" msgid="7557140873644765180">"Rakenduste laadimine ..."</string>
|
||||
<string name="all_apps_no_search_results" msgid="6332185285860416787">"Päringule „<xliff:g id="QUERY">%1$s</xliff:g>” ei vastanud ükski rakendus"</string>
|
||||
<string name="all_apps_search_market_message" msgid="5470761048755751471">"Mine: <xliff:g id="QUERY">%1$s</xliff:g>"</string>
|
||||
<string name="out_of_space" msgid="4691004494942118364">"Sellel avaekraanil pole enam ruumi."</string>
|
||||
<string name="hotseat_out_of_space" msgid="7448809638125333693">"Salves Lemmikud pole rohkem ruumi"</string>
|
||||
<string name="all_apps_button_label" msgid="9110807029020582876">"Rakendused"</string>
|
||||
|
||||
@@ -32,6 +32,7 @@
|
||||
<string name="all_apps_search_bar_hint" msgid="7084713969757597256">"Bilatu aplikazioetan"</string>
|
||||
<string name="all_apps_loading_message" msgid="7557140873644765180">"Aplikazioak kargatzen…"</string>
|
||||
<string name="all_apps_no_search_results" msgid="6332185285860416787">"Ez da aurkitu \"<xliff:g id="QUERY">%1$s</xliff:g>\" bilaketarekin bat datorren aplikaziorik"</string>
|
||||
<string name="all_apps_search_market_message" msgid="5470761048755751471">"Joan hona: <xliff:g id="QUERY">%1$s</xliff:g>"</string>
|
||||
<string name="out_of_space" msgid="4691004494942118364">"Hasierako pantaila honetan ez dago toki gehiago."</string>
|
||||
<string name="hotseat_out_of_space" msgid="7448809638125333693">"Ez dago toki gehiago Gogokoak erretiluan"</string>
|
||||
<string name="all_apps_button_label" msgid="9110807029020582876">"Aplikazioak"</string>
|
||||
|
||||
@@ -32,6 +32,7 @@
|
||||
<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_market_message" msgid="5470761048755751471">"رفتن به <xliff:g id="QUERY">%1$s</xliff:g>"</string>
|
||||
<string name="out_of_space" msgid="4691004494942118364">"فضای بیشتری در این صفحه اصلی موجود نیست."</string>
|
||||
<string name="hotseat_out_of_space" msgid="7448809638125333693">"فضای بیشتری در سینی موارد دلخواه وجود ندارد"</string>
|
||||
<string name="all_apps_button_label" msgid="9110807029020582876">"برنامهها"</string>
|
||||
|
||||
@@ -32,6 +32,7 @@
|
||||
<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_market_message" msgid="5470761048755751471">"Siirry: <xliff:g id="QUERY">%1$s</xliff:g>"</string>
|
||||
<string name="out_of_space" msgid="4691004494942118364">"Tässä aloitusruudussa ei ole enää tilaa."</string>
|
||||
<string name="hotseat_out_of_space" msgid="7448809638125333693">"Suosikit-valikossa ei ole enää tilaa"</string>
|
||||
<string name="all_apps_button_label" msgid="9110807029020582876">"Sovellukset"</string>
|
||||
|
||||
@@ -32,6 +32,7 @@
|
||||
<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_market_message" msgid="5470761048755751471">"Aller à « <xliff:g id="QUERY">%1$s</xliff:g> »"</string>
|
||||
<string name="out_of_space" msgid="4691004494942118364">"Pas d\'espace libre sur l\'écran d\'accueil."</string>
|
||||
<string name="hotseat_out_of_space" msgid="7448809638125333693">"Il n\'y a plus d\'espace dans la zone des favoris"</string>
|
||||
<string name="all_apps_button_label" msgid="9110807029020582876">"Applications"</string>
|
||||
|
||||
@@ -32,6 +32,7 @@
|
||||
<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_market_message" msgid="5470761048755751471">"Accéder à <xliff:g id="QUERY">%1$s</xliff:g>"</string>
|
||||
<string name="out_of_space" msgid="4691004494942118364">"Pas d\'espace libre sur cet écran d\'accueil."</string>
|
||||
<string name="hotseat_out_of_space" msgid="7448809638125333693">"Plus d\'espace disponible dans la zone de favoris."</string>
|
||||
<string name="all_apps_button_label" msgid="9110807029020582876">"Applications"</string>
|
||||
|
||||
@@ -32,6 +32,7 @@
|
||||
<string name="all_apps_search_bar_hint" msgid="7084713969757597256">"Aplicacións de busca"</string>
|
||||
<string name="all_apps_loading_message" msgid="7557140873644765180">"Cargando aplicacións..."</string>
|
||||
<string name="all_apps_no_search_results" msgid="6332185285860416787">"Non se atoparon aplicacións que coincidan con \"<xliff:g id="QUERY">%1$s</xliff:g>\""</string>
|
||||
<string name="all_apps_search_market_message" msgid="5470761048755751471">"Ir a <xliff:g id="QUERY">%1$s</xliff:g>"</string>
|
||||
<string name="out_of_space" msgid="4691004494942118364">"Non hai máis espazo nesta pantalla de inicio."</string>
|
||||
<string name="hotseat_out_of_space" msgid="7448809638125333693">"Non hai máis espazo na bandexa de favoritos"</string>
|
||||
<string name="all_apps_button_label" msgid="9110807029020582876">"Aplicacións"</string>
|
||||
|
||||
@@ -32,6 +32,7 @@
|
||||
<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_market_message" msgid="5470761048755751471">"<xliff:g id="QUERY">%1$s</xliff:g> પર જાઓ"</string>
|
||||
<string name="out_of_space" msgid="4691004494942118364">"આ હોમ સ્ક્રીન પર વધુ જગ્યા નથી."</string>
|
||||
<string name="hotseat_out_of_space" msgid="7448809638125333693">"મનપસંદ ટ્રે પર વધુ જગ્યા નથી"</string>
|
||||
<string name="all_apps_button_label" msgid="9110807029020582876">"એપ્લિકેશનો"</string>
|
||||
|
||||
@@ -32,6 +32,7 @@
|
||||
<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_market_message" msgid="5470761048755751471">"<xliff:g id="QUERY">%1$s</xliff:g> पर जाएं"</string>
|
||||
<string name="out_of_space" msgid="4691004494942118364">"इस होम स्क्रीन पर स्थान शेष नहीं है."</string>
|
||||
<string name="hotseat_out_of_space" msgid="7448809638125333693">"पसंदीदा ट्रे में और स्थान नहीं है"</string>
|
||||
<string name="all_apps_button_label" msgid="9110807029020582876">"ऐप्लिकेशन"</string>
|
||||
|
||||
@@ -32,6 +32,7 @@
|
||||
<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_market_message" msgid="5470761048755751471">"Idite na <xliff:g id="QUERY">%1$s</xliff:g>"</string>
|
||||
<string name="out_of_space" msgid="4691004494942118364">"Na ovom početnom zaslonu više nema mjesta."</string>
|
||||
<string name="hotseat_out_of_space" msgid="7448809638125333693">"Nema više prostora na traci Favoriti"</string>
|
||||
<string name="all_apps_button_label" msgid="9110807029020582876">"Aplikacije"</string>
|
||||
|
||||
@@ -32,6 +32,7 @@
|
||||
<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_market_message" msgid="5470761048755751471">"Keresse fel ezt: <xliff:g id="QUERY">%1$s</xliff:g>"</string>
|
||||
<string name="out_of_space" msgid="4691004494942118364">"Nincs több hely ezen a kezdőképernyőn."</string>
|
||||
<string name="hotseat_out_of_space" msgid="7448809638125333693">"Nincs több hely a Kedvencek tálcán"</string>
|
||||
<string name="all_apps_button_label" msgid="9110807029020582876">"Alkalmazások"</string>
|
||||
|
||||
@@ -32,6 +32,7 @@
|
||||
<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_market_message" msgid="5470761048755751471">"Գնալ <xliff:g id="QUERY">%1$s</xliff:g>"</string>
|
||||
<string name="out_of_space" msgid="4691004494942118364">"Այլևս տեղ չկա այս հիմնական էկրանին:"</string>
|
||||
<string name="hotseat_out_of_space" msgid="7448809638125333693">"Ընտրյալների ցուցակում այլևս ազատ տեղ չկա"</string>
|
||||
<string name="all_apps_button_label" msgid="9110807029020582876">"Ծրագրեր"</string>
|
||||
@@ -59,11 +60,11 @@
|
||||
<string name="workspace_cling_longpress_title" msgid="9173998993909018310">"Պաստառներ, վիջեթներ և կարգավորումներ"</string>
|
||||
<string name="workspace_cling_longpress_description" msgid="4119994475505235248">"Հարմարեցնելու համար հպեք և պահեք հետնաշերտի վրա"</string>
|
||||
<string name="workspace_cling_longpress_dismiss" msgid="368660286867640874">"ՀԱՍԿԱՆԱԼԻ Է"</string>
|
||||
<string name="folder_opened" msgid="94695026776264709">"Թղթապանակը բաց է, <xliff:g id="WIDTH">%1$d</xliff:g>-ից <xliff:g id="HEIGHT">%2$d</xliff:g>"</string>
|
||||
<string name="folder_opened" msgid="94695026776264709">"Պանակը բաց է, <xliff:g id="WIDTH">%1$d</xliff:g>-ից <xliff:g id="HEIGHT">%2$d</xliff:g>"</string>
|
||||
<string name="folder_tap_to_close" msgid="1884479294466410023">"Հպեք՝ պանակը փակելու համար"</string>
|
||||
<string name="folder_tap_to_rename" msgid="9191075570492871147">"Հպեք՝ վերանվանումը պահելու համար"</string>
|
||||
<string name="folder_closed" msgid="4100806530910930934">"Թղթապանակը փակ է"</string>
|
||||
<string name="folder_renamed" msgid="1794088362165669656">"Թղթապանակը վերանվանվեց <xliff:g id="NAME">%1$s</xliff:g>"</string>
|
||||
<string name="folder_closed" msgid="4100806530910930934">"Պանակը փակ է"</string>
|
||||
<string name="folder_renamed" msgid="1794088362165669656">"Պանակը վերանվանվեց <xliff:g id="NAME">%1$s</xliff:g>"</string>
|
||||
<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>
|
||||
@@ -87,7 +88,7 @@
|
||||
<string name="add_to_folder_with_app" msgid="4534929978967147231">"Ավելացնել «<xliff:g id="NAME">%1$s</xliff:g>» պանակին"</string>
|
||||
<string name="added_to_folder" msgid="4793259502305558003">"Տարրն ավելացվեց թղթապանակում"</string>
|
||||
<string name="create_folder_with" msgid="4050141361160214248">"Ստեղծել թղթապանակ, օգտագործելով՝ <xliff:g id="NAME">%1$s</xliff:g>"</string>
|
||||
<string name="folder_created" msgid="6409794597405184510">"Թղթապանակը ստեղծվեց"</string>
|
||||
<string name="folder_created" msgid="6409794597405184510">"Պանակը ստեղծվեց"</string>
|
||||
<string name="action_move_to_workspace" msgid="1603837886334246317">"Տեղափոխել Հիմնական էկրան"</string>
|
||||
<string name="action_move_screen_left" msgid="8854216831569401665">"Տեղափոխել էկրանը ձախ"</string>
|
||||
<string name="action_move_screen_right" msgid="329334910274311123">"Տեղափոխել էկրանը աջ"</string>
|
||||
|
||||
@@ -32,6 +32,7 @@
|
||||
<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_market_message" msgid="5470761048755751471">"Buka <xliff:g id="QUERY">%1$s</xliff:g>"</string>
|
||||
<string name="out_of_space" msgid="4691004494942118364">"Tidak ada ruang lagi pada layar Utama ini."</string>
|
||||
<string name="hotseat_out_of_space" msgid="7448809638125333693">"Tidak ada ruang tersisa di baki Favorit"</string>
|
||||
<string name="all_apps_button_label" msgid="9110807029020582876">"Aplikasi"</string>
|
||||
|
||||
@@ -32,6 +32,7 @@
|
||||
<string name="all_apps_search_bar_hint" msgid="7084713969757597256">"Leita í forritum"</string>
|
||||
<string name="all_apps_loading_message" msgid="7557140873644765180">"Hleður forrit…"</string>
|
||||
<string name="all_apps_no_search_results" msgid="6332185285860416787">"Ekki fundust forrit sem samsvara „<xliff:g id="QUERY">%1$s</xliff:g>“"</string>
|
||||
<string name="all_apps_search_market_message" msgid="5470761048755751471">"Fara í <xliff:g id="QUERY">%1$s</xliff:g>"</string>
|
||||
<string name="out_of_space" msgid="4691004494942118364">"Ekki meira pláss á þessum heimaskjá."</string>
|
||||
<string name="hotseat_out_of_space" msgid="7448809638125333693">"Ekki meira pláss í bakka fyrir uppáhald"</string>
|
||||
<string name="all_apps_button_label" msgid="9110807029020582876">"Forrit"</string>
|
||||
|
||||
@@ -32,6 +32,7 @@
|
||||
<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_market_message" msgid="5470761048755751471">"Vai a <xliff:g id="QUERY">%1$s</xliff:g>"</string>
|
||||
<string name="out_of_space" msgid="4691004494942118364">"Spazio nella schermata Home esaurito."</string>
|
||||
<string name="hotseat_out_of_space" msgid="7448809638125333693">"Spazio esaurito nella barra dei Preferiti"</string>
|
||||
<string name="all_apps_button_label" msgid="9110807029020582876">"App"</string>
|
||||
|
||||
@@ -32,6 +32,7 @@
|
||||
<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_market_message" msgid="5470761048755751471">"עבור אל <xliff:g id="QUERY">%1$s</xliff:g>"</string>
|
||||
<string name="out_of_space" msgid="4691004494942118364">"אין עוד מקום במסך דף הבית הזה."</string>
|
||||
<string name="hotseat_out_of_space" msgid="7448809638125333693">"אין עוד מקום במגש המועדפים"</string>
|
||||
<string name="all_apps_button_label" msgid="9110807029020582876">"אפליקציות"</string>
|
||||
|
||||
@@ -32,6 +32,7 @@
|
||||
<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_market_message" msgid="5470761048755751471">"<xliff:g id="QUERY">%1$s</xliff:g>にアクセス"</string>
|
||||
<string name="out_of_space" msgid="4691004494942118364">"このホーム画面に空きスペースがありません。"</string>
|
||||
<string name="hotseat_out_of_space" msgid="7448809638125333693">"お気に入りトレイに空きスペースがありません"</string>
|
||||
<string name="all_apps_button_label" msgid="9110807029020582876">"アプリ"</string>
|
||||
@@ -57,7 +58,7 @@
|
||||
<string name="migration_cling_copy_apps" msgid="946331230090919440">"アイコンをコピー"</string>
|
||||
<string name="migration_cling_use_default" msgid="2626475813981258626">"初期状態にリセットする"</string>
|
||||
<string name="workspace_cling_longpress_title" msgid="9173998993909018310">"壁紙、ウィジェット、設定"</string>
|
||||
<string name="workspace_cling_longpress_description" msgid="4119994475505235248">"カスタマイズするにはバックグラウンドを押し続けます"</string>
|
||||
<string name="workspace_cling_longpress_description" msgid="4119994475505235248">"カスタマイズするには背景を押し続けます"</string>
|
||||
<string name="workspace_cling_longpress_dismiss" msgid="368660286867640874">"OK"</string>
|
||||
<string name="folder_opened" msgid="94695026776264709">"フォルダが開いています。<xliff:g id="WIDTH">%1$d</xliff:g>x<xliff:g id="HEIGHT">%2$d</xliff:g>の大きさです"</string>
|
||||
<string name="folder_tap_to_close" msgid="1884479294466410023">"タップしてフォルダを閉じます"</string>
|
||||
|
||||
@@ -32,6 +32,7 @@
|
||||
<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_market_message" msgid="5470761048755751471">"გადადი <xliff:g id="QUERY">%1$s</xliff:g>-ში"</string>
|
||||
<string name="out_of_space" msgid="4691004494942118364">"ამ მთავარ ეკრანზე ადგილი აღარ არის."</string>
|
||||
<string name="hotseat_out_of_space" msgid="7448809638125333693">"რჩეულების თაროზე ადგილი არ არის"</string>
|
||||
<string name="all_apps_button_label" msgid="9110807029020582876">"აპები"</string>
|
||||
|
||||
@@ -32,6 +32,7 @@
|
||||
<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_market_message" msgid="5470761048755751471">"<xliff:g id="QUERY">%1$s</xliff:g> сұрауына өту"</string>
|
||||
<string name="out_of_space" msgid="4691004494942118364">"Бұл Негізгі экранда орын қалмады."</string>
|
||||
<string name="hotseat_out_of_space" msgid="7448809638125333693">"Қалаулылар науасында орын қалмады"</string>
|
||||
<string name="all_apps_button_label" msgid="9110807029020582876">"Қолданбалар"</string>
|
||||
|
||||
@@ -32,6 +32,7 @@
|
||||
<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_market_message" msgid="5470761048755751471">"ចូលទៅកាន់ <xliff:g id="QUERY">%1$s</xliff:g>"</string>
|
||||
<string name="out_of_space" msgid="4691004494942118364">"គ្មានបន្ទប់នៅលើអេក្រង់ដើមនេះទៀតទេ។"</string>
|
||||
<string name="hotseat_out_of_space" msgid="7448809638125333693">"គ្មានបន្ទប់ក្នុងថាសនិយមប្រើ"</string>
|
||||
<string name="all_apps_button_label" msgid="9110807029020582876">"កម្មវិធី"</string>
|
||||
|
||||
@@ -32,6 +32,7 @@
|
||||
<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_market_message" msgid="5470761048755751471">"<xliff:g id="QUERY">%1$s</xliff:g> ಗೆ ಹೋಗಿ"</string>
|
||||
<string name="out_of_space" msgid="4691004494942118364">"ಈ ಮುಖಪುಟದ ಪರದೆಯಲ್ಲಿ ಹೆಚ್ಚು ಸ್ಥಳಾವಕಾಶವಿಲ್ಲ."</string>
|
||||
<string name="hotseat_out_of_space" msgid="7448809638125333693">"ಮೆಚ್ಚಿನವುಗಳ ಟ್ರೇನಲ್ಲಿ ಹೆಚ್ಚಿನ ಸ್ಥಳಾವಕಾಶವಿಲ್ಲ"</string>
|
||||
<string name="all_apps_button_label" msgid="9110807029020582876">"ಅಪ್ಲಿಕೇಶನ್ಗಳು"</string>
|
||||
|
||||
@@ -32,6 +32,7 @@
|
||||
<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_market_message" msgid="5470761048755751471">"<xliff:g id="QUERY">%1$s</xliff:g>(으)로 이동"</string>
|
||||
<string name="out_of_space" msgid="4691004494942118364">"홈 화면에 더 이상 공간이 없습니다."</string>
|
||||
<string name="hotseat_out_of_space" msgid="7448809638125333693">"즐겨찾기 트레이에 더 이상 공간이 없습니다."</string>
|
||||
<string name="all_apps_button_label" msgid="9110807029020582876">"앱"</string>
|
||||
|
||||
@@ -32,6 +32,7 @@
|
||||
<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_market_message" msgid="5470761048755751471">"<xliff:g id="QUERY">%1$s</xliff:g> сурамына өтүңүз"</string>
|
||||
<string name="out_of_space" msgid="4691004494942118364">"Бул Үй экранында бош орун жок."</string>
|
||||
<string name="hotseat_out_of_space" msgid="7448809638125333693">"Тандамалдар тайпасында орун калган жок"</string>
|
||||
<string name="all_apps_button_label" msgid="9110807029020582876">"Колдонмолор"</string>
|
||||
|
||||
@@ -32,6 +32,7 @@
|
||||
<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_market_message" msgid="5470761048755751471">"ໄປທີ່ <xliff:g id="QUERY">%1$s</xliff:g>"</string>
|
||||
<string name="out_of_space" msgid="4691004494942118364">"ບໍ່ມີຫ້ອງເຫຼືອໃນໜ້າຈໍຫຼັກນີ້."</string>
|
||||
<string name="hotseat_out_of_space" msgid="7448809638125333693">"ບໍ່ມີບ່ອນຫວ່າງໃນຖາດສຳລັບເກັບສິ່ງທີ່ໃຊ້ເປັນປະຈຳ"</string>
|
||||
<string name="all_apps_button_label" msgid="9110807029020582876">"ແອັບຯ"</string>
|
||||
|
||||
@@ -32,6 +32,7 @@
|
||||
<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_market_message" msgid="5470761048755751471">"Eiti į <xliff:g id="QUERY">%1$s</xliff:g>"</string>
|
||||
<string name="out_of_space" msgid="4691004494942118364">"Šiame pagrindiniame ekrane vietos nebėra."</string>
|
||||
<string name="hotseat_out_of_space" msgid="7448809638125333693">"Mėgstamiausių dėkle nebėra vietos"</string>
|
||||
<string name="all_apps_button_label" msgid="9110807029020582876">"Programos"</string>
|
||||
|
||||
@@ -32,6 +32,7 @@
|
||||
<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_market_message" msgid="5470761048755751471">"Doties uz: <xliff:g id="QUERY">%1$s</xliff:g>"</string>
|
||||
<string name="out_of_space" msgid="4691004494942118364">"Šajā sākuma ekrānā vairs nav vietas."</string>
|
||||
<string name="hotseat_out_of_space" msgid="7448809638125333693">"Izlases joslā vairs nav vietas."</string>
|
||||
<string name="all_apps_button_label" msgid="9110807029020582876">"Lietotnes"</string>
|
||||
|
||||
@@ -32,6 +32,7 @@
|
||||
<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_market_message" msgid="5470761048755751471">"Оди на <xliff:g id="QUERY">%1$s</xliff:g>"</string>
|
||||
<string name="out_of_space" msgid="4691004494942118364">"Нема повеќе простор на овој екран на почетната страница."</string>
|
||||
<string name="hotseat_out_of_space" msgid="7448809638125333693">"Нема повеќе простор на лентата „Омилени“"</string>
|
||||
<string name="all_apps_button_label" msgid="9110807029020582876">"Апликации"</string>
|
||||
|
||||