diff options
author | Dan Bornstein <danfuzz@android.com> | 2010-11-04 18:26:39 -0700 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2010-11-04 18:26:39 -0700 |
commit | ec30827e734ba9c3d2b8a27f3b5224412d1cf2f7 (patch) | |
tree | a0b88663607df39ebea5e2fc9722afea51e2b677 /res | |
parent | d9171379e8ac8303ffdaeac8c8c036a7a852f022 (diff) | |
parent | 8ba148fb75ecaaf8ad51c271a7891811aab28979 (diff) | |
download | packages_apps_trebuchet-ec30827e734ba9c3d2b8a27f3b5224412d1cf2f7.zip packages_apps_trebuchet-ec30827e734ba9c3d2b8a27f3b5224412d1cf2f7.tar.gz packages_apps_trebuchet-ec30827e734ba9c3d2b8a27f3b5224412d1cf2f7.tar.bz2 |
Merge branch 'master' of ssh://android-git:29418/platform/packages/apps/Launcher2
Diffstat (limited to 'res')
118 files changed, 1986 insertions, 480 deletions
diff --git a/res/anim/all_apps_zoom_in.xml b/res/anim/all_apps_zoom_in.xml new file mode 100644 index 0000000..644d1cf --- /dev/null +++ b/res/anim/all_apps_zoom_in.xml @@ -0,0 +1,33 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2010 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. +--> +<set xmlns:android="http://schemas.android.com/apk/res/android" + android:interpolator="@android:anim/decelerate_interpolator" + android:shareInterpolator="true"> + <translate xmlns:android="http://schemas.android.com/apk/res/android" + android:fromXDelta="0%p" + android:toXDelta="0%p" + android:fromYDelta="-20%p" + android:toYDelta="0%p" + android:duration="500" /> + <scale + android:fromXScale="5.0" + android:toXScale="1.0" + android:fromYScale="5.0" + android:toYScale="1.0" + android:pivotX="50%" + android:pivotY="100%" + android:duration="500" /> +</set> diff --git a/res/anim/all_apps_zoom_out.xml b/res/anim/all_apps_zoom_out.xml new file mode 100644 index 0000000..23a8712 --- /dev/null +++ b/res/anim/all_apps_zoom_out.xml @@ -0,0 +1,33 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2010 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. +--> +<set xmlns:android="http://schemas.android.com/apk/res/android" + android:interpolator="@android:anim/accelerate_interpolator" + android:shareInterpolator="true"> + <translate xmlns:android="http://schemas.android.com/apk/res/android" + android:fromXDelta="0%p" + android:toXDelta="0%p" + android:fromYDelta="0%p" + android:toYDelta="-20%p" + android:duration="500" /> + <scale + android:fromXScale="1.0" + android:toXScale="5.0" + android:fromYScale="1.0" + android:toYScale="5.0" + android:pivotX="50%" + android:pivotY="100%" + android:duration="500" /> +</set> diff --git a/res/anim/home_customization_drawer_slide_down.xml b/res/anim/home_customization_drawer_slide_down.xml new file mode 100644 index 0000000..b3041c7 --- /dev/null +++ b/res/anim/home_customization_drawer_slide_down.xml @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2009 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<translate xmlns:android="http://schemas.android.com/apk/res/android" + android:fromXDelta="0%p" + android:toXDelta="0%p" + android:fromYDelta="0%p" + android:toYDelta="100%p" + + android:duration="500" /> diff --git a/res/anim/home_customization_drawer_slide_up.xml b/res/anim/home_customization_drawer_slide_up.xml new file mode 100644 index 0000000..3df2320 --- /dev/null +++ b/res/anim/home_customization_drawer_slide_up.xml @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2009 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<translate xmlns:android="http://schemas.android.com/apk/res/android" + android:fromXDelta="0%p" + android:toXDelta="0%p" + android:fromYDelta="100%p" + android:toYDelta="0%p" + + android:duration="500" /> diff --git a/res/anim/paged_view_click_feedback.xml b/res/anim/paged_view_click_feedback.xml new file mode 100644 index 0000000..786d974 --- /dev/null +++ b/res/anim/paged_view_click_feedback.xml @@ -0,0 +1,23 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2010 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. +--> + +<alpha xmlns:android="http://schemas.android.com/apk/res/android" + android:fromAlpha="1.0" + android:toAlpha="0.65" + android:duration="100" + android:fillAfter="true" + android:repeatCount="1" + android:repeatMode="reverse" /> diff --git a/res/drawable-hdpi/add_button.png b/res/drawable-hdpi/add_button.png Binary files differnew file mode 100644 index 0000000..7e60d81 --- /dev/null +++ b/res/drawable-hdpi/add_button.png diff --git a/res/drawable-hdpi/default_widget_preview.9.png b/res/drawable-hdpi/default_widget_preview.9.png Binary files differnew file mode 100644 index 0000000..6596f07 --- /dev/null +++ b/res/drawable-hdpi/default_widget_preview.9.png diff --git a/res/drawable-hdpi/hotseat_browser_focused.png b/res/drawable-hdpi/hotseat_browser_focused.png Binary files differindex 25969ca..4ab51dd 100644 --- a/res/drawable-hdpi/hotseat_browser_focused.png +++ b/res/drawable-hdpi/hotseat_browser_focused.png diff --git a/res/drawable-hdpi/hotseat_browser_normal.png b/res/drawable-hdpi/hotseat_browser_normal.png Binary files differindex 0dbdbe7..77ae927 100644 --- a/res/drawable-hdpi/hotseat_browser_normal.png +++ b/res/drawable-hdpi/hotseat_browser_normal.png diff --git a/res/drawable-hdpi/hotseat_browser_pressed.png b/res/drawable-hdpi/hotseat_browser_pressed.png Binary files differindex 3b872bf..cfe963b 100644 --- a/res/drawable-hdpi/hotseat_browser_pressed.png +++ b/res/drawable-hdpi/hotseat_browser_pressed.png diff --git a/res/drawable-hdpi/hotseat_phone_focused.png b/res/drawable-hdpi/hotseat_phone_focused.png Binary files differindex 3172d7f..f81f0a8 100644 --- a/res/drawable-hdpi/hotseat_phone_focused.png +++ b/res/drawable-hdpi/hotseat_phone_focused.png diff --git a/res/drawable-hdpi/hotseat_phone_normal.png b/res/drawable-hdpi/hotseat_phone_normal.png Binary files differindex 61ef7e6..391802e 100644 --- a/res/drawable-hdpi/hotseat_phone_normal.png +++ b/res/drawable-hdpi/hotseat_phone_normal.png diff --git a/res/drawable-hdpi/hotseat_phone_pressed.png b/res/drawable-hdpi/hotseat_phone_pressed.png Binary files differindex 7bf8f48..a6c2baf 100644 --- a/res/drawable-hdpi/hotseat_phone_pressed.png +++ b/res/drawable-hdpi/hotseat_phone_pressed.png diff --git a/res/drawable-hdpi/pressed_application_background.9.png b/res/drawable-hdpi/pressed_application_background.9.png Binary files differnew file mode 100644 index 0000000..a6cbe94 --- /dev/null +++ b/res/drawable-hdpi/pressed_application_background.9.png diff --git a/res/drawable-hdpi/rounded_rect_green.9.png b/res/drawable-hdpi/rounded_rect_green.9.png Binary files differnew file mode 100644 index 0000000..a846cbd --- /dev/null +++ b/res/drawable-hdpi/rounded_rect_green.9.png diff --git a/res/drawable-hdpi/rounded_rect_red.9.png b/res/drawable-hdpi/rounded_rect_red.9.png Binary files differnew file mode 100644 index 0000000..21fd62c --- /dev/null +++ b/res/drawable-hdpi/rounded_rect_red.9.png diff --git a/res/drawable-mdpi/hotseat_browser_focused.png b/res/drawable-mdpi/hotseat_browser_focused.png Binary files differindex 6d9d886..5b85840 100644 --- a/res/drawable-mdpi/hotseat_browser_focused.png +++ b/res/drawable-mdpi/hotseat_browser_focused.png diff --git a/res/drawable-mdpi/hotseat_browser_normal.png b/res/drawable-mdpi/hotseat_browser_normal.png Binary files differindex 0916b2c..4a4a6e3 100644 --- a/res/drawable-mdpi/hotseat_browser_normal.png +++ b/res/drawable-mdpi/hotseat_browser_normal.png diff --git a/res/drawable-mdpi/hotseat_browser_pressed.png b/res/drawable-mdpi/hotseat_browser_pressed.png Binary files differindex 5c6a137..ed10c18 100644 --- a/res/drawable-mdpi/hotseat_browser_pressed.png +++ b/res/drawable-mdpi/hotseat_browser_pressed.png diff --git a/res/drawable-mdpi/hotseat_phone_focused.png b/res/drawable-mdpi/hotseat_phone_focused.png Binary files differindex d55b277..15ec1c6 100644 --- a/res/drawable-mdpi/hotseat_phone_focused.png +++ b/res/drawable-mdpi/hotseat_phone_focused.png diff --git a/res/drawable-mdpi/hotseat_phone_normal.png b/res/drawable-mdpi/hotseat_phone_normal.png Binary files differindex 17ecda5..7f20428 100644 --- a/res/drawable-mdpi/hotseat_phone_normal.png +++ b/res/drawable-mdpi/hotseat_phone_normal.png diff --git a/res/drawable-mdpi/hotseat_phone_pressed.png b/res/drawable-mdpi/hotseat_phone_pressed.png Binary files differindex cc18ee3..fcdf073 100644 --- a/res/drawable-mdpi/hotseat_phone_pressed.png +++ b/res/drawable-mdpi/hotseat_phone_pressed.png diff --git a/res/drawable-mdpi/tab_unselected_holo.9.png b/res/drawable-mdpi/tab_unselected_holo.9.png Binary files differnew file mode 100644 index 0000000..848f3f1 --- /dev/null +++ b/res/drawable-mdpi/tab_unselected_holo.9.png diff --git a/res/drawable-mdpi/trashcan.png b/res/drawable-mdpi/trashcan.png Binary files differindex 4355164..4f01d76 100644 --- a/res/drawable-mdpi/trashcan.png +++ b/res/drawable-mdpi/trashcan.png diff --git a/res/drawable-mdpi/trashcan_hover.png b/res/drawable-mdpi/trashcan_hover.png Binary files differindex 96f4e51..fb7474a 100644 --- a/res/drawable-mdpi/trashcan_hover.png +++ b/res/drawable-mdpi/trashcan_hover.png diff --git a/res/drawable-xlarge-mdpi/all_apps_button_focused.png b/res/drawable-xlarge-mdpi/all_apps_button_focused.png Binary files differnew file mode 100644 index 0000000..a9d5a3f --- /dev/null +++ b/res/drawable-xlarge-mdpi/all_apps_button_focused.png diff --git a/res/drawable-xlarge-mdpi/all_apps_button_normal.9.png b/res/drawable-xlarge-mdpi/all_apps_button_normal.9.png Binary files differnew file mode 100644 index 0000000..a423145 --- /dev/null +++ b/res/drawable-xlarge-mdpi/all_apps_button_normal.9.png diff --git a/res/drawable-xlarge-mdpi/all_apps_button_pressed.9.png b/res/drawable-xlarge-mdpi/all_apps_button_pressed.9.png Binary files differnew file mode 100644 index 0000000..5dbe77c --- /dev/null +++ b/res/drawable-xlarge-mdpi/all_apps_button_pressed.9.png diff --git a/res/drawable-xlarge-mdpi/app_market_generic.png b/res/drawable-xlarge-mdpi/app_market_generic.png Binary files differnew file mode 100644 index 0000000..0ceaeef --- /dev/null +++ b/res/drawable-xlarge-mdpi/app_market_generic.png diff --git a/res/drawable-xlarge-mdpi/configure_button_normal.png b/res/drawable-xlarge-mdpi/configure_button_normal.png Binary files differnew file mode 100644 index 0000000..9b37eff --- /dev/null +++ b/res/drawable-xlarge-mdpi/configure_button_normal.png diff --git a/res/drawable-xlarge-mdpi/configure_button_pressed.png b/res/drawable-xlarge-mdpi/configure_button_pressed.png Binary files differnew file mode 100644 index 0000000..5f38db6 --- /dev/null +++ b/res/drawable-xlarge-mdpi/configure_button_pressed.png diff --git a/res/drawable-xlarge-mdpi/glow_wallpaper.png b/res/drawable-xlarge-mdpi/glow_wallpaper.png Binary files differnew file mode 100644 index 0000000..eb29449 --- /dev/null +++ b/res/drawable-xlarge-mdpi/glow_wallpaper.png diff --git a/res/drawable-xlarge-mdpi/glow_wallpaper_small.png b/res/drawable-xlarge-mdpi/glow_wallpaper_small.png Binary files differnew file mode 100644 index 0000000..f83fc60 --- /dev/null +++ b/res/drawable-xlarge-mdpi/glow_wallpaper_small.png diff --git a/res/drawable-xlarge-mdpi/home_screen_bg.9.png b/res/drawable-xlarge-mdpi/home_screen_bg.9.png Binary files differnew file mode 100644 index 0000000..413e492 --- /dev/null +++ b/res/drawable-xlarge-mdpi/home_screen_bg.9.png diff --git a/res/drawable-xlarge-mdpi/home_screen_bg_hover.9.png b/res/drawable-xlarge-mdpi/home_screen_bg_hover.9.png Binary files differnew file mode 100644 index 0000000..73696bf --- /dev/null +++ b/res/drawable-xlarge-mdpi/home_screen_bg_hover.9.png diff --git a/res/drawable-xlarge-mdpi/ic_no_applications.png b/res/drawable-xlarge-mdpi/ic_no_applications.png Binary files differnew file mode 100644 index 0000000..a4f695a --- /dev/null +++ b/res/drawable-xlarge-mdpi/ic_no_applications.png diff --git a/res/drawable-xlarge-mdpi/info_button.png b/res/drawable-xlarge-mdpi/info_button.png Binary files differnew file mode 100644 index 0000000..253cdf7 --- /dev/null +++ b/res/drawable-xlarge-mdpi/info_button.png diff --git a/res/drawable-xlarge-mdpi/mini_home_screen_bg.9.png b/res/drawable-xlarge-mdpi/mini_home_screen_bg.9.png Binary files differnew file mode 100644 index 0000000..4602609 --- /dev/null +++ b/res/drawable-xlarge-mdpi/mini_home_screen_bg.9.png diff --git a/res/drawable-xlarge-mdpi/mini_home_screen_bg_accepts_drops.9.png b/res/drawable-xlarge-mdpi/mini_home_screen_bg_accepts_drops.9.png Binary files differnew file mode 100644 index 0000000..b1aa98b --- /dev/null +++ b/res/drawable-xlarge-mdpi/mini_home_screen_bg_accepts_drops.9.png diff --git a/res/drawable-xlarge-mdpi/mini_home_screen_bg_hover.9.png b/res/drawable-xlarge-mdpi/mini_home_screen_bg_hover.9.png Binary files differnew file mode 100644 index 0000000..a30e992 --- /dev/null +++ b/res/drawable-xlarge-mdpi/mini_home_screen_bg_hover.9.png diff --git a/res/drawable-xlarge-mdpi/rotate_button_normal.png b/res/drawable-xlarge-mdpi/rotate_button_normal.png Binary files differnew file mode 100644 index 0000000..fd014aa --- /dev/null +++ b/res/drawable-xlarge-mdpi/rotate_button_normal.png diff --git a/res/drawable-xlarge-mdpi/rotate_button_pressed.png b/res/drawable-xlarge-mdpi/rotate_button_pressed.png Binary files differnew file mode 100644 index 0000000..29fb8d9 --- /dev/null +++ b/res/drawable-xlarge-mdpi/rotate_button_pressed.png diff --git a/res/drawable-xlarge-mdpi/search_button_normal.png b/res/drawable-xlarge-mdpi/search_button_normal.png Binary files differnew file mode 100644 index 0000000..b172074 --- /dev/null +++ b/res/drawable-xlarge-mdpi/search_button_normal.png diff --git a/res/drawable-xlarge-mdpi/search_button_pressed.png b/res/drawable-xlarge-mdpi/search_button_pressed.png Binary files differnew file mode 100644 index 0000000..c2926c8 --- /dev/null +++ b/res/drawable-xlarge-mdpi/search_button_pressed.png diff --git a/res/drawable-xlarge-mdpi/trashcan.png b/res/drawable-xlarge-mdpi/trashcan.png Binary files differnew file mode 100644 index 0000000..839d4b8 --- /dev/null +++ b/res/drawable-xlarge-mdpi/trashcan.png diff --git a/res/drawable-xlarge-mdpi/trashcan_hover.png b/res/drawable-xlarge-mdpi/trashcan_hover.png Binary files differnew file mode 100644 index 0000000..cc2fde7 --- /dev/null +++ b/res/drawable-xlarge-mdpi/trashcan_hover.png diff --git a/res/drawable-xlarge/all_apps_bg_gradient.9.png b/res/drawable-xlarge/all_apps_bg_gradient.9.png Binary files differnew file mode 100644 index 0000000..8d88a7e --- /dev/null +++ b/res/drawable-xlarge/all_apps_bg_gradient.9.png diff --git a/res/drawable-xlarge/all_apps_button.xml b/res/drawable-xlarge/all_apps_button.xml new file mode 100644 index 0000000..46bc632 --- /dev/null +++ b/res/drawable-xlarge/all_apps_button.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2010 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_pressed="true" android:drawable="@drawable/all_apps_button_pressed" /> + <item android:drawable="@drawable/all_apps_button_normal" /> +</selector> diff --git a/res/drawable-xlarge/configure_button.xml b/res/drawable-xlarge/configure_button.xml new file mode 100644 index 0000000..ac87290 --- /dev/null +++ b/res/drawable-xlarge/configure_button.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2010 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_pressed="true" android:drawable="@drawable/configure_button_pressed" /> + <item android:drawable="@drawable/configure_button_normal" /> +</selector> diff --git a/res/drawable-xlarge/customize_bg_gradient.png b/res/drawable-xlarge/customize_bg_gradient.png Binary files differnew file mode 100644 index 0000000..fb3ec90 --- /dev/null +++ b/res/drawable-xlarge/customize_bg_gradient.png diff --git a/res/drawable-xlarge/rotate_button.xml b/res/drawable-xlarge/rotate_button.xml new file mode 100644 index 0000000..c29efa4 --- /dev/null +++ b/res/drawable-xlarge/rotate_button.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2010 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_pressed="true" android:drawable="@drawable/rotate_button_pressed" /> + <item android:drawable="@drawable/rotate_button_normal" /> +</selector> diff --git a/res/drawable-xlarge/search_button_generic.xml b/res/drawable-xlarge/search_button_generic.xml new file mode 100644 index 0000000..8f18e67 --- /dev/null +++ b/res/drawable-xlarge/search_button_generic.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2010 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_pressed="true" android:drawable="@drawable/search_button_pressed" /> + <item android:drawable="@drawable/search_button_normal" /> +</selector> diff --git a/res/drawable/default_widget_preview.9.png b/res/drawable/default_widget_preview.9.png Binary files differnew file mode 100644 index 0000000..5fedcc8 --- /dev/null +++ b/res/drawable/default_widget_preview.9.png diff --git a/res/drawable/gardening_crosshairs.png b/res/drawable/gardening_crosshairs.png Binary files differnew file mode 100644 index 0000000..cbaee78 --- /dev/null +++ b/res/drawable/gardening_crosshairs.png diff --git a/res/drawable/page_hover_left.9.png b/res/drawable/page_hover_left.9.png Binary files differnew file mode 100644 index 0000000..5d5e0c8 --- /dev/null +++ b/res/drawable/page_hover_left.9.png diff --git a/res/drawable/page_hover_right.9.png b/res/drawable/page_hover_right.9.png Binary files differnew file mode 100644 index 0000000..1545bfe --- /dev/null +++ b/res/drawable/page_hover_right.9.png diff --git a/res/drawable/rounded_rect_green.9.png b/res/drawable/rounded_rect_green.9.png Binary files differnew file mode 100644 index 0000000..5787c3d --- /dev/null +++ b/res/drawable/rounded_rect_green.9.png diff --git a/res/drawable/rounded_rect_red.9.png b/res/drawable/rounded_rect_red.9.png Binary files differnew file mode 100644 index 0000000..7a5fdee --- /dev/null +++ b/res/drawable/rounded_rect_red.9.png diff --git a/res/drawable/widget_divider.png b/res/drawable/widget_divider.png Binary files differnew file mode 100644 index 0000000..1b453c5 --- /dev/null +++ b/res/drawable/widget_divider.png diff --git a/res/layout-land/all_apps_2d.xml b/res/layout-land/all_apps_2d.xml index a253b93..b7fcd45 100644 --- a/res/layout-land/all_apps_2d.xml +++ b/res/layout-land/all_apps_2d.xml @@ -22,7 +22,7 @@ android:layout_width="match_parent" android:layout_height="match_parent" android:padding="2dip" - > + android:background="#FF000000"> <GridView android:id="@+id/all_apps_2d_grid" android:tag="all_apps_2d_grid" diff --git a/res/layout-land/application.xml b/res/layout-land/application.xml index 6de5658..6e8c31e 100644 --- a/res/layout-land/application.xml +++ b/res/layout-land/application.xml @@ -15,4 +15,4 @@ --> <com.android.launcher2.BubbleTextView xmlns:android="http://schemas.android.com/apk/res/android" - style="@style/WorkspaceIcon.Landscape" /> + style="@style/WorkspaceIcon.Landscape" /> diff --git a/res/layout-land/launcher.xml b/res/layout-land/launcher.xml index 1f13f1f..8d38a3d 100644 --- a/res/layout-land/launcher.xml +++ b/res/layout-land/launcher.xml @@ -24,14 +24,16 @@ <include layout="@layout/all_apps" /> - <!-- The workspace contains 3 screens of cells --> + <!-- The workspace contains 5 screens of cells --> <com.android.launcher2.Workspace android:id="@+id/workspace" android:layout_width="match_parent" android:layout_height="match_parent" android:scrollbars="horizontal" android:fadeScrollbars="true" - launcher:defaultScreen="2"> + launcher:defaultScreen="2" + launcher:cellCountX="4" + launcher:cellCountY="4"> <include android:id="@+id/cell1" layout="@layout/workspace_screen" /> <include android:id="@+id/cell2" layout="@layout/workspace_screen" /> diff --git a/res/layout-land/workspace_screen.xml b/res/layout-land/workspace_screen.xml index 315e68b..9323f58 100644 --- a/res/layout-land/workspace_screen.xml +++ b/res/layout-land/workspace_screen.xml @@ -24,9 +24,7 @@ launcher:cellWidth="@dimen/workspace_cell_width" launcher:cellHeight="@dimen/workspace_cell_height" - launcher:longAxisStartPadding="65dip" - launcher:longAxisEndPadding="65dip" - launcher:shortAxisStartPadding="0dip" - launcher:shortAxisEndPadding="0dip" - launcher:shortAxisCells="4" - launcher:longAxisCells="4" /> + launcher:xAxisStartPadding="65dip" + launcher:xAxisEndPadding="65dip" + launcher:yAxisStartPadding="0dip" + launcher:yAxisEndPadding="0dip"/> diff --git a/res/layout-port/all_apps_2d.xml b/res/layout-port/all_apps_2d.xml index 0607d62..081cba2 100644 --- a/res/layout-port/all_apps_2d.xml +++ b/res/layout-port/all_apps_2d.xml @@ -22,7 +22,7 @@ android:layout_width="match_parent" android:layout_height="match_parent" android:padding="2dip" - > + android:background="#FF000000"> <GridView android:id="@+id/all_apps_2d_grid" android:tag="all_apps_2d_grid" diff --git a/res/layout-port/application.xml b/res/layout-port/application.xml index f904a66..32c1510 100644 --- a/res/layout-port/application.xml +++ b/res/layout-port/application.xml @@ -4,9 +4,9 @@ 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. @@ -15,4 +15,4 @@ --> <com.android.launcher2.BubbleTextView xmlns:android="http://schemas.android.com/apk/res/android" - style="@style/WorkspaceIcon.Portrait" /> + style="@style/WorkspaceIcon.Portrait" /> diff --git a/res/layout-port/launcher.xml b/res/layout-port/launcher.xml index 8dc5092..c50dbca 100644 --- a/res/layout-port/launcher.xml +++ b/res/layout-port/launcher.xml @@ -24,12 +24,14 @@ <include layout="@layout/all_apps" /> - <!-- The workspace contains 3 screens of cells --> + <!-- The workspace contains 5 screens of cells --> <com.android.launcher2.Workspace android:id="@+id/workspace" android:layout_width="match_parent" android:layout_height="match_parent" - launcher:defaultScreen="2"> + launcher:defaultScreen="2" + launcher:cellCountX="4" + launcher:cellCountY="4"> <include android:id="@+id/cell1" layout="@layout/workspace_screen" /> <include android:id="@+id/cell2" layout="@layout/workspace_screen" /> diff --git a/res/layout-port/workspace_screen.xml b/res/layout-port/workspace_screen.xml index bd4a4bd..f400c40 100644 --- a/res/layout-port/workspace_screen.xml +++ b/res/layout-port/workspace_screen.xml @@ -24,9 +24,7 @@ launcher:cellWidth="@dimen/workspace_cell_width" launcher:cellHeight="@dimen/workspace_cell_height" - launcher:longAxisStartPadding="8dip" - launcher:longAxisEndPadding="78dip" - launcher:shortAxisStartPadding="0dip" - launcher:shortAxisEndPadding="0dip" - launcher:shortAxisCells="4" - launcher:longAxisCells="4" /> + launcher:yAxisStartPadding="8dip" + launcher:yAxisEndPadding="@dimen/button_bar_height" + launcher:xAxisStartPadding="0dip" + launcher:xAxisEndPadding="0dip" /> diff --git a/res/layout-xlarge-land/all_apps_tabbed.xml b/res/layout-xlarge-land/all_apps_tabbed.xml new file mode 100644 index 0000000..89a3104 --- /dev/null +++ b/res/layout-xlarge-land/all_apps_tabbed.xml @@ -0,0 +1,49 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2010 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. +--> +<com.android.launcher2.AllAppsTabbed + xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:launcher="http://schemas.android.com/apk/res/com.android.launcher"> + <LinearLayout + android:orientation="vertical" + android:layout_width="match_parent" + android:layout_height="match_parent"> + <TabWidget + android:id="@android:id/tabs" + android:layout_width="952dp" + android:layout_height="wrap_content" + android:layout_gravity="center_horizontal" + android:background="@drawable/tab_unselected_holo" + android:tabStripEnabled="false" /> + <FrameLayout + android:id="@android:id/tabcontent" + android:layout_width="match_parent" + android:layout_height="match_parent"> + <com.android.launcher2.AllAppsPagedView + android:id="@+id/all_apps_paged_view" + android:layout_width="match_parent" + android:layout_height="match_parent" + launcher:cellCountX="7" + launcher:cellCountY="5" + launcher:pageLayoutWidthGap="36dp" + launcher:pageLayoutHeightGap="6dp" + launcher:pageLayoutPaddingTop="15dp" + launcher:pageLayoutPaddingBottom="15dp" + launcher:pageLayoutPaddingLeft="40dp" + launcher:pageLayoutPaddingRight="40dp"> + </com.android.launcher2.AllAppsPagedView> + </FrameLayout> + </LinearLayout> +</com.android.launcher2.AllAppsTabbed> diff --git a/res/layout-xlarge-land/application.xml b/res/layout-xlarge-land/application.xml new file mode 100644 index 0000000..ed8fa8c --- /dev/null +++ b/res/layout-xlarge-land/application.xml @@ -0,0 +1,18 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2008 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. +--> + +<com.android.launcher2.BubbleTextView xmlns:android="http://schemas.android.com/apk/res/android" + style="@style/WorkspaceIcon.Landscape" />
\ No newline at end of file diff --git a/res/layout-xlarge-land/customization_drawer.xml b/res/layout-xlarge-land/customization_drawer.xml new file mode 100644 index 0000000..9115259 --- /dev/null +++ b/res/layout-xlarge-land/customization_drawer.xml @@ -0,0 +1,30 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2010 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. +--> +<com.android.launcher2.CustomizePagedView + xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:launcher="http://schemas.android.com/apk/res/com.android.launcher" + + android:layout_width="match_parent" + android:layout_height="match_parent" + launcher:widgetCellCountX="16" + launcher:cellCountX="8" + launcher:cellCountY="3" + launcher:pageLayoutWidthGap="32dp" + launcher:pageLayoutHeightGap="12dp" + launcher:pageLayoutPaddingTop="40dp" + launcher:pageLayoutPaddingBottom="25dp" + launcher:pageLayoutPaddingLeft="20dp" + launcher:pageLayoutPaddingRight="20dp" />
\ No newline at end of file diff --git a/res/layout-xlarge-land/launcher.xml b/res/layout-xlarge-land/launcher.xml new file mode 100644 index 0000000..e5ba393 --- /dev/null +++ b/res/layout-xlarge-land/launcher.xml @@ -0,0 +1,154 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2010 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. +--> + +<com.android.launcher2.DragLayer + xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:launcher="http://schemas.android.com/apk/res/com.android.launcher" + + android:id="@+id/drag_layer" + android:layout_width="match_parent" + android:layout_height="match_parent"> + + <include + layout="@layout/all_apps_tabbed" + android:id="@+id/all_apps_view" + android:layout_width="match_parent" + android:layout_height="600dp" + android:layout_gravity="top"/> + + <!-- The workspace contains 5 screens of cells --> + <com.android.launcher2.Workspace + android:id="@+id/workspace" + android:layout_width="match_parent" + android:layout_height="match_parent" + android:paddingTop="?android:attr/actionBarSize" + launcher:defaultScreen="2" + launcher:cellCountX="8" + launcher:cellCountY="7" + launcher:pageSpacing="32dp"> + + <include android:id="@+id/cell1" layout="@layout/workspace_screen" /> + <include android:id="@+id/cell2" layout="@layout/workspace_screen" /> + <include android:id="@+id/cell3" layout="@layout/workspace_screen" /> + <include android:id="@+id/cell4" layout="@layout/workspace_screen" /> + <include android:id="@+id/cell5" layout="@layout/workspace_screen" /> + </com.android.launcher2.Workspace> + + <RelativeLayout + android:id="@+id/all_apps_button_cluster" + android:layout_width="fill_parent" + android:layout_height="?android:attr/actionBarSize" + android:layout_gravity="top"> + + <ImageView + android:id="@+id/search_button" + android:layout_width="wrap_content" + android:layout_height="match_parent" + android:layout_gravity="left" + android:layout_marginLeft="@dimen/toolbar_button_spacing" + + android:onClick="onClickSearchButton" + android:focusable="true" + android:clickable="true"/> + + <ImageView + android:id="@+id/configure_button" + android:src="@drawable/configure_button" + android:layout_width="wrap_content" + android:layout_height="match_parent" + android:layout_alignParentRight="true" + android:layout_marginLeft="@dimen/toolbar_button_spacing" + android:layout_marginRight="@dimen/toolbar_button_spacing" + + android:onClick="onClickConfigureButton" + android:focusable="true" + android:clickable="true" /> + + <TextView + android:id="@+id/all_apps_button" + android:text="@string/all_apps_button_label" + android:background="@drawable/all_apps_button" + android:layout_width="wrap_content" + android:layout_height="match_parent" + android:layout_toLeftOf="@id/configure_button" + android:layout_marginLeft="@dimen/toolbar_button_spacing" + android:layout_marginRight="@dimen/toolbar_button_spacing" + android:textSize="18dp" + + android:onClick="onClickAllAppsButton" + android:focusable="true" + android:clickable="true" /> + + <!-- The button to bring up the installed app market. + The icon for this button will be dynamically set. --> + <ImageView + android:id="@+id/market_button" + android:layout_width="wrap_content" + android:layout_height="match_parent" + android:layout_alignLeft="@id/all_apps_button" + + android:onClick="onClickAppMarketButton" + android:focusable="false" + android:clickable="false" + android:visibility="gone"/> + + <com.android.launcher2.DeleteZone + android:id="@+id/delete_zone" + android:src="@drawable/delete_zone_selector" + android:layout_width="wrap_content" + android:layout_height="match_parent" + android:layout_alignLeft="@id/all_apps_button" + + android:visibility="gone" + launcher:direction="horizontal" /> + + <com.android.launcher2.ApplicationInfoDropTarget + android:id="@+id/info_button" + android:src="@drawable/info_button" + android:layout_width="wrap_content" + android:layout_height="match_parent" + android:layout_alignLeft="@id/configure_button" + + android:visibility="gone" + android:focusable="true" + android:clickable="true" /> + + </RelativeLayout> + + <TabHost + android:id="@android:id/tabhost" + android:layout_width="match_parent" + android:layout_height="460dp" + android:layout_gravity="bottom"> + <LinearLayout + android:orientation="vertical" + android:layout_width="match_parent" + android:layout_height="match_parent"> + <TabWidget + android:id="@android:id/tabs" + android:layout_width="952dp" + android:layout_height="wrap_content" + android:layout_gravity="center_horizontal" + android:background="@drawable/tab_unselected_holo" + android:tabStripEnabled="false" /> + <FrameLayout + android:id="@android:id/tabcontent" + android:layout_width="match_parent" + android:layout_height="match_parent"> + </FrameLayout> + </LinearLayout> + </TabHost> +</com.android.launcher2.DragLayer> diff --git a/res/layout-xlarge-land/workspace_screen.xml b/res/layout-xlarge-land/workspace_screen.xml new file mode 100644 index 0000000..64de05e --- /dev/null +++ b/res/layout-xlarge-land/workspace_screen.xml @@ -0,0 +1,32 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2008 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. +--> + +<com.android.launcher2.CellLayout + xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:launcher="http://schemas.android.com/apk/res/com.android.launcher" + + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:hapticFeedbackEnabled="false" + + launcher:cellWidth="@dimen/workspace_cell_width" + launcher:cellHeight="@dimen/workspace_cell_height" + launcher:widthGap="@dimen/workspace_width_gap" + launcher:heightGap="@dimen/workspace_height_gap" + launcher:yAxisStartPadding="25dip" + launcher:yAxisEndPadding="25dip" + launcher:xAxisStartPadding="40dip" + launcher:xAxisEndPadding="40dip" /> diff --git a/res/layout-xlarge-port/all_apps_tabbed.xml b/res/layout-xlarge-port/all_apps_tabbed.xml new file mode 100644 index 0000000..65e3729 --- /dev/null +++ b/res/layout-xlarge-port/all_apps_tabbed.xml @@ -0,0 +1,49 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2010 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. +--> +<com.android.launcher2.AllAppsTabbed + xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:launcher="http://schemas.android.com/apk/res/com.android.launcher"> + <LinearLayout + android:orientation="vertical" + android:layout_width="match_parent" + android:layout_height="match_parent"> + <TabWidget + android:id="@android:id/tabs" + android:layout_width="700dp" + android:layout_height="wrap_content" + android:layout_gravity="center_horizontal" + android:background="@drawable/tab_unselected_holo" + android:tabStripEnabled="false" /> + <FrameLayout + android:id="@android:id/tabcontent" + android:layout_width="match_parent" + android:layout_height="match_parent"> + <com.android.launcher2.AllAppsPagedView + android:id="@+id/all_apps_paged_view" + android:layout_width="match_parent" + android:layout_height="match_parent" + launcher:cellCountX="5" + launcher:cellCountY="7" + launcher:pageLayoutWidthGap="36dp" + launcher:pageLayoutHeightGap="36dp" + launcher:pageLayoutPaddingTop="25dp" + launcher:pageLayoutPaddingBottom="10dp" + launcher:pageLayoutPaddingLeft="20dp" + launcher:pageLayoutPaddingRight="20dp"> + </com.android.launcher2.AllAppsPagedView> + </FrameLayout> + </LinearLayout> +</com.android.launcher2.AllAppsTabbed> diff --git a/res/layout-xlarge-port/application.xml b/res/layout-xlarge-port/application.xml new file mode 100644 index 0000000..af7a8a4 --- /dev/null +++ b/res/layout-xlarge-port/application.xml @@ -0,0 +1,18 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2008 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. +--> + +<com.android.launcher2.BubbleTextView xmlns:android="http://schemas.android.com/apk/res/android" + style="@style/WorkspaceIcon.Portrait" /> diff --git a/res/layout-xlarge-port/customization_drawer.xml b/res/layout-xlarge-port/customization_drawer.xml new file mode 100644 index 0000000..28127ea --- /dev/null +++ b/res/layout-xlarge-port/customization_drawer.xml @@ -0,0 +1,30 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2010 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. +--> +<com.android.launcher2.CustomizePagedView + xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:launcher="http://schemas.android.com/apk/res/com.android.launcher" + + android:layout_width="match_parent" + android:layout_height="match_parent" + launcher:widgetCellCountX="10" + launcher:cellCountX="5" + launcher:cellCountY="3" + launcher:pageLayoutWidthGap="36dp" + launcher:pageLayoutHeightGap="12dp" + launcher:pageLayoutPaddingTop="40dp" + launcher:pageLayoutPaddingBottom="25dp" + launcher:pageLayoutPaddingLeft="20dp" + launcher:pageLayoutPaddingRight="20dp" /> diff --git a/res/layout-xlarge-port/launcher.xml b/res/layout-xlarge-port/launcher.xml new file mode 100644 index 0000000..13b69fe --- /dev/null +++ b/res/layout-xlarge-port/launcher.xml @@ -0,0 +1,154 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2010 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. +--> + +<com.android.launcher2.DragLayer + xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:launcher="http://schemas.android.com/apk/res/com.android.launcher" + + android:id="@+id/drag_layer" + android:layout_width="match_parent" + android:layout_height="match_parent"> + + <include + layout="@layout/all_apps_tabbed" + android:id="@+id/all_apps_view" + android:layout_width="match_parent" + android:layout_height="1040dp" + android:layout_gravity="top"/> + + <!-- The workspace contains 5 screens of cells --> + <com.android.launcher2.Workspace + android:id="@+id/workspace" + android:layout_width="match_parent" + android:layout_height="match_parent" + android:paddingTop="?android:attr/actionBarSize" + launcher:defaultScreen="2" + launcher:cellCountX="8" + launcher:cellCountY="7" + launcher:pageSpacing="64dp"> + + <include android:id="@+id/cell1" layout="@layout/workspace_screen" /> + <include android:id="@+id/cell2" layout="@layout/workspace_screen" /> + <include android:id="@+id/cell3" layout="@layout/workspace_screen" /> + <include android:id="@+id/cell4" layout="@layout/workspace_screen" /> + <include android:id="@+id/cell5" layout="@layout/workspace_screen" /> + </com.android.launcher2.Workspace> + + <RelativeLayout + android:id="@+id/all_apps_button_cluster" + android:layout_width="fill_parent" + android:layout_height="?android:attr/actionBarSize" + android:layout_gravity="top"> + + <ImageView + android:id="@+id/search_button" + android:layout_width="wrap_content" + android:layout_height="match_parent" + android:layout_gravity="left" + android:layout_marginLeft="@dimen/toolbar_button_spacing" + + android:onClick="onClickSearchButton" + android:focusable="true" + android:clickable="true"/> + + <ImageView + android:id="@+id/configure_button" + android:src="@drawable/configure_button" + android:layout_width="wrap_content" + android:layout_height="match_parent" + android:layout_alignParentRight="true" + android:layout_marginLeft="@dimen/toolbar_button_spacing" + android:layout_marginRight="@dimen/toolbar_button_spacing" + + android:onClick="onClickConfigureButton" + android:focusable="true" + android:clickable="true" /> + + <TextView + android:id="@+id/all_apps_button" + android:text="@string/all_apps_button_label" + android:background="@drawable/all_apps_button" + android:layout_width="wrap_content" + android:layout_height="match_parent" + android:layout_toLeftOf="@id/configure_button" + android:layout_marginLeft="@dimen/toolbar_button_spacing" + android:layout_marginRight="@dimen/toolbar_button_spacing" + android:textSize="18dp" + + android:onClick="onClickAllAppsButton" + android:focusable="true" + android:clickable="true" /> + + <!-- The button to bring up the installed app market. + The icon for this button will be dynamically set. --> + <ImageView + android:id="@+id/market_button" + android:layout_width="wrap_content" + android:layout_height="match_parent" + android:layout_alignLeft="@id/all_apps_button" + + android:onClick="onClickAppMarketButton" + android:focusable="false" + android:clickable="false" + android:visibility="gone"/> + + <com.android.launcher2.DeleteZone + android:id="@+id/delete_zone" + android:src="@drawable/delete_zone_selector" + android:layout_width="wrap_content" + android:layout_height="match_parent" + android:layout_alignLeft="@id/all_apps_button" + + android:visibility="gone" + launcher:direction="horizontal" /> + + <com.android.launcher2.ApplicationInfoDropTarget + android:id="@+id/info_button" + android:src="@drawable/info_button" + android:layout_width="wrap_content" + android:layout_height="match_parent" + android:layout_alignLeft="@id/configure_button" + + android:visibility="gone" + android:focusable="true" + android:clickable="true" /> + + </RelativeLayout> + + <TabHost + android:id="@android:id/tabhost" + android:layout_width="match_parent" + android:layout_height="800dp" + android:layout_gravity="bottom"> + <LinearLayout + android:orientation="vertical" + android:layout_width="match_parent" + android:layout_height="match_parent"> + <TabWidget + android:id="@android:id/tabs" + android:layout_width="700dp" + android:layout_height="wrap_content" + android:layout_gravity="center_horizontal" + android:background="@drawable/tab_unselected_holo" + android:tabStripEnabled="false" /> + <FrameLayout + android:id="@android:id/tabcontent" + android:layout_width="match_parent" + android:layout_height="650dp"> + </FrameLayout> + </LinearLayout> + </TabHost> +</com.android.launcher2.DragLayer> diff --git a/res/layout-xlarge-port/workspace_screen.xml b/res/layout-xlarge-port/workspace_screen.xml new file mode 100644 index 0000000..406441d --- /dev/null +++ b/res/layout-xlarge-port/workspace_screen.xml @@ -0,0 +1,32 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2008 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. +--> + +<com.android.launcher2.CellLayout + xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:launcher="http://schemas.android.com/apk/res/com.android.launcher" + + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:hapticFeedbackEnabled="false" + + launcher:cellWidth="@dimen/workspace_cell_width" + launcher:cellHeight="@dimen/workspace_cell_height" + launcher:widthGap="@dimen/workspace_width_gap" + launcher:heightGap="@dimen/workspace_height_gap" + launcher:yAxisStartPadding="25dip" + launcher:yAxisEndPadding="25dip" + launcher:xAxisStartPadding="15dip" + launcher:xAxisEndPadding="15dip"/> diff --git a/res/layout-xlarge/all_apps_no_items_placeholder.xml b/res/layout-xlarge/all_apps_no_items_placeholder.xml new file mode 100644 index 0000000..f5ecdec --- /dev/null +++ b/res/layout-xlarge/all_apps_no_items_placeholder.xml @@ -0,0 +1,36 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2010 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/no_items_icon" + android:layout_width="match_parent" + android:layout_height="match_parent" + android:gravity="center_vertical" + android:paddingTop="2dip" + + android:textColor="#FFFFFFFF" + android:textSize="15sp" + android:shadowColor="#FF000000" + android:shadowDx="0.0" + android:shadowDy="1.0" + android:shadowRadius="1.0" + android:drawableLeft="@drawable/ic_no_applications" + android:drawablePadding="0dip" + + android:maxLines="2" + android:fadingEdge="horizontal" /> diff --git a/res/layout-xlarge/all_apps_paged_view_application.xml b/res/layout-xlarge/all_apps_paged_view_application.xml new file mode 100644 index 0000000..7458222 --- /dev/null +++ b/res/layout-xlarge/all_apps_paged_view_application.xml @@ -0,0 +1,33 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2010 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. +--> + +<com.android.launcher2.PagedViewIcon + xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:launcher="http://schemas.android.com/apk/res/com.android.launcher" + + launcher:blurColor="#FF6B8CF0" + launcher:outlineColor="#FF8CD2FF" + launcher:checkedBlurColor="#FFBBE83C" + launcher:checkedOutlineColor="#FF8CD2FF" + + android:id="@+id/application_icon" + android:layout_width="match_parent" + android:layout_height="match_parent" + android:gravity="center_horizontal" + android:singleLine="false" + android:maxLines="1" + + style="@style/WorkspaceIcon.Portrait" /> diff --git a/res/layout-xlarge/customize_paged_view_item.xml b/res/layout-xlarge/customize_paged_view_item.xml new file mode 100644 index 0000000..bbc04d7 --- /dev/null +++ b/res/layout-xlarge/customize_paged_view_item.xml @@ -0,0 +1,32 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2010 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. +--> + +<com.android.launcher2.PagedViewIcon + xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:launcher="http://schemas.android.com/apk/res/com.android.launcher" + + launcher:blurColor="#FF6B8CF0" + launcher:outlineColor="#FF8CD2FF" + launcher:checkedBlurColor="#FFBBE83C" + launcher:checkedOutlineColor="#FF8CD2FF" + + android:id="@+id/customize_icon" + android:layout_width="match_parent" + android:layout_height="match_parent" + android:singleLine="false" + android:maxLines="1" + + style="@style/WorkspaceIcon.Landscape" /> diff --git a/res/layout-xlarge/customize_paged_view_widget.xml b/res/layout-xlarge/customize_paged_view_widget.xml new file mode 100644 index 0000000..fab2a9b --- /dev/null +++ b/res/layout-xlarge/customize_paged_view_widget.xml @@ -0,0 +1,79 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2010 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. +--> +<com.android.launcher2.PagedViewWidgetIcon + xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:launcher="http://schemas.android.com/apk/res/com.android.launcher" + + android:layout_width="wrap_content" + android:layout_height="365dp" + android:paddingLeft="12.5dp" + android:paddingRight="12.5dp" + android:paddingBottom="50dp" + android:gravity="top" + android:orientation="vertical" + + launcher:checkedBlurColor="#FFDAFF71" + launcher:checkedOutlineColor="#FFCFFF9C"> + + <!-- The icon of the widget. --> + <ImageView + android:id="@+id/widget_preview" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_weight="1.0" + android:scaleType="fitStart" /> + + <!-- The divider image. --> + <ImageView + android:id="@+id/divider" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:paddingTop="10dp" + android:paddingBottom="10dp" + android:src="@drawable/widget_divider" /> + + <!-- The name of the widget. --> + <TextView xmlns:android="http://schemas.android.com/apk/res/android" + android:id="@+id/widget_name" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:gravity="left" + + android:textColor="#FFFFFFFF" + android:textSize="14sp" + android:shadowColor="#FF000000" + android:shadowDx="0.0" + android:shadowDy="1.0" + android:shadowRadius="1.0" + + android:maxLines="2" + android:fadingEdge="horizontal" /> + + <!-- The original dimensions of the widget (can't be the same text as above due to different + style. --> + <TextView xmlns:android="http://schemas.android.com/apk/res/android" + android:id="@+id/widget_dims" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:gravity="left" + + android:textColor="#FF999999" + android:textSize="14sp" + android:shadowColor="#99000000" + android:shadowDx="0.0" + android:shadowDy="1.0" + android:shadowRadius="1.0" /> +</com.android.launcher2.PagedViewWidgetIcon> diff --git a/res/layout-xlarge/external_widget_drop_list_item.xml b/res/layout-xlarge/external_widget_drop_list_item.xml new file mode 100644 index 0000000..84f40ed --- /dev/null +++ b/res/layout-xlarge/external_widget_drop_list_item.xml @@ -0,0 +1,39 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2010 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. +--> + +<LinearLayout + xmlns:android="http://schemas.android.com/apk/res/android" + + android:layout_width="match_parent" + android:layout_height="64dp"> + <ImageView + android:id="@+id/provider_icon" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_gravity="center_vertical" + android:layout_marginLeft="20dp" + android:maxWidth="32dp" + android:maxHeight="32dp" + android:scaleType="fitCenter" + android:src="@drawable/ic_launcher_application" /> + <TextView + android:id="@+id/provider" + android:layout_width="match_parent" + android:layout_height="match_parent" + android:layout_marginLeft="5dp" + android:gravity="center_vertical" + android:textSize="18sp" /> +</LinearLayout> diff --git a/res/layout/home_customization_drawer_item.xml b/res/layout/home_customization_drawer_item.xml new file mode 100644 index 0000000..4d61dbf --- /dev/null +++ b/res/layout/home_customization_drawer_item.xml @@ -0,0 +1,24 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2010 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:layout_width="200dip" + android:layout_height="200dip" + android:padding="20dip" + android:orientation="vertical" + android:gravity="center_horizontal|center_vertical|clip_vertical" + android:textAppearance="?android:attr/textAppearanceMedium" + android:textColor="#ffffffff" />
\ No newline at end of file diff --git a/res/layout/home_customization_drawer_widget.xml b/res/layout/home_customization_drawer_widget.xml new file mode 100644 index 0000000..1581308 --- /dev/null +++ b/res/layout/home_customization_drawer_widget.xml @@ -0,0 +1,24 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2010 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:layout_width="600dip" + android:layout_height="match_parent" + android:padding="20dip" + android:orientation="vertical" + android:gravity="center_horizontal|center_vertical|clip_vertical" + android:textAppearance="?android:attr/textAppearanceMedium" + android:textColor="#ffffffff" />
\ No newline at end of file diff --git a/res/raw/allapps.rs b/res/raw/allapps.rs deleted file mode 100644 index af5abd3..0000000 --- a/res/raw/allapps.rs +++ /dev/null @@ -1,427 +0,0 @@ -#pragma version(1) -#pragma stateVertex(PV) -#pragma stateFragment(PFTexNearest) -#pragma stateStore(PSIcons) - -#define PI 3.14159f - -int g_SpecialHWWar; - -// Attraction to center values from page edge to page center. -float g_AttractionTable[9]; -float g_FrictionTable[9]; -float g_PhysicsTableSize; - -float g_PosPage; -float g_PosVelocity; -float g_LastPositionX; -int g_LastTouchDown; -float g_DT; -int g_LastTime; -int g_PosMax; -float g_Zoom; -float g_Animation; -float g_OldPosPage; -float g_OldPosVelocity; -float g_OldZoom; -float g_MoveToTotalTime; -float g_MoveToTime; -float g_MoveToOldPos; - -int g_Cols; -int g_Rows; - -// Drawing constants, should be parameters ====== -#define VIEW_ANGLE 1.28700222f - -int g_DrawLastFrame; -int lastFrame(int draw) { - // We draw one extra frame to work around the last frame post bug. - // We also need to track if we drew the last frame to deal with large DT - // in the physics. - int ret = g_DrawLastFrame | draw; - g_DrawLastFrame = draw; - return ret; // should return draw instead. -} - -void updateReadback() { - if ((g_OldPosPage != g_PosPage) || - (g_OldPosVelocity != g_PosVelocity) || - (g_OldZoom != g_Zoom)) { - - g_OldPosPage = g_PosPage; - g_OldPosVelocity = g_PosVelocity; - g_OldZoom = g_Zoom; - - int i[3]; - i[0] = g_PosPage * (1 << 16); - i[1] = g_PosVelocity * (1 << 16); - i[2] = g_OldZoom * (1 << 16); - sendToClient(&i[0], 1, 12, 1); - } -} - -void setColor(float r, float g, float b, float a) { - if (g_SpecialHWWar) { - color(0, 0, 0, 0.001f); - } else { - color(r, g, b, a); - } -} - -void init() { - g_AttractionTable[0] = 20.0f; - g_AttractionTable[1] = 20.0f; - g_AttractionTable[2] = 20.0f; - g_AttractionTable[3] = 10.0f; - g_AttractionTable[4] = -10.0f; - g_AttractionTable[5] = -20.0f; - g_AttractionTable[6] = -20.0f; - g_AttractionTable[7] = -20.0f; - g_AttractionTable[8] = -20.0f; // dup 7 to avoid a clamp later - g_FrictionTable[0] = 10.0f; - g_FrictionTable[1] = 10.0f; - g_FrictionTable[2] = 11.0f; - g_FrictionTable[3] = 15.0f; - g_FrictionTable[4] = 15.0f; - g_FrictionTable[5] = 11.0f; - g_FrictionTable[6] = 10.0f; - g_FrictionTable[7] = 10.0f; - g_FrictionTable[8] = 10.0f; // dup 7 to avoid a clamp later - g_PhysicsTableSize = 7; - - g_PosVelocity = 0; - g_PosPage = 0; - g_LastTouchDown = 0; - g_LastPositionX = 0; - g_Zoom = 0; - g_Animation = 1.f; - g_SpecialHWWar = 1; - g_MoveToTime = 0; - g_MoveToOldPos = 0; - g_MoveToTotalTime = 0.2f; // Duration of scrolling 1 line -} - -void resetHWWar() { - g_SpecialHWWar = 1; -} - -void move() { - if (g_LastTouchDown) { - float dx = -(state->newPositionX - g_LastPositionX); - g_PosVelocity = 0; - g_PosPage += dx * 5.2f; - - float pmin = -0.49f; - float pmax = g_PosMax + 0.49f; - g_PosPage = clampf(g_PosPage, pmin, pmax); - } - g_LastTouchDown = state->newTouchDown; - g_LastPositionX = state->newPositionX; - g_MoveToTime = 0; - //debugF("Move P", g_PosPage); -} - -void moveTo() { - g_MoveToTime = g_MoveToTotalTime; - g_PosVelocity = 0; - g_MoveToOldPos = g_PosPage; - - // debugF("======= moveTo", state->targetPos); -} - -void setZoom() { - g_Zoom = state->zoomTarget; - g_DrawLastFrame = 1; - updateReadback(); -} - -void fling() { - g_LastTouchDown = 0; - g_PosVelocity = -state->flingVelocity * 4; - float av = fabsf(g_PosVelocity); - float minVel = 3.5f; - - minVel *= 1.f - (fabsf(fracf(g_PosPage + 0.5f) - 0.5f) * 0.45f); - - if (av < minVel && av > 0.2f) { - if (g_PosVelocity > 0) { - g_PosVelocity = minVel; - } else { - g_PosVelocity = -minVel; - } - } - - if (g_PosPage <= 0) { - g_PosVelocity = maxf(0, g_PosVelocity); - } - if (g_PosPage > g_PosMax) { - g_PosVelocity = minf(0, g_PosVelocity); - } -} - -float -modf(float x, float y) -{ - return x-(y*floorf(x/y)); -} - - -/* - * Interpolates values in the range 0..1 to a curve that eases in - * and out. - */ -float -getInterpolation(float input) { - return (cosf((input + 1) * PI) / 2.0f) + 0.5f; -} - - -void updatePos() { - if (g_LastTouchDown) { - return; - } - - float tablePosNorm = fracf(g_PosPage + 0.5f); - float tablePosF = tablePosNorm * g_PhysicsTableSize; - int tablePosI = tablePosF; - float tablePosFrac = tablePosF - tablePosI; - float accel = lerpf(g_AttractionTable[tablePosI], - g_AttractionTable[tablePosI + 1], - tablePosFrac) * g_DT; - float friction = lerpf(g_FrictionTable[tablePosI], - g_FrictionTable[tablePosI + 1], - tablePosFrac) * g_DT; - - if (g_MoveToTime) { - // New position is old posiition + (total distance) * (interpolated time) - g_PosPage = g_MoveToOldPos + (state->targetPos - g_MoveToOldPos) * getInterpolation((g_MoveToTotalTime - g_MoveToTime) / g_MoveToTotalTime); - g_MoveToTime -= g_DT; - if (g_MoveToTime <= 0) { - g_MoveToTime = 0; - g_PosPage = state->targetPos; - } - return; - } - - // If our velocity is low OR acceleration is opposing it, apply it. - if (fabsf(g_PosVelocity) < 4.0f || (g_PosVelocity * accel) < 0) { - g_PosVelocity += accel; - } - //debugF("g_PosPage", g_PosPage); - //debugF(" g_PosVelocity", g_PosVelocity); - //debugF(" friction", friction); - //debugF(" accel", accel); - - // Normal physics - if (g_PosVelocity > 0) { - g_PosVelocity -= friction; - g_PosVelocity = maxf(g_PosVelocity, 0); - } else { - g_PosVelocity += friction; - g_PosVelocity = minf(g_PosVelocity, 0); - } - - if ((friction > fabsf(g_PosVelocity)) && (friction > fabsf(accel))) { - // Special get back to center and overcome friction physics. - float t = tablePosNorm - 0.5f; - if (fabsf(t) < (friction * g_DT)) { - // really close, just snap - g_PosPage = roundf(g_PosPage); - g_PosVelocity = 0; - } else { - if (t > 0) { - g_PosVelocity = -friction; - } else { - g_PosVelocity = friction; - } - } - } - - // Check for out of boundry conditions. - if (g_PosPage < 0 && g_PosVelocity < 0) { - float damp = 1.0 + (g_PosPage * 4); - damp = clampf(damp, 0.f, 0.9f); - g_PosVelocity *= damp; - } - if (g_PosPage > g_PosMax && g_PosVelocity > 0) { - float damp = 1.0 - ((g_PosPage - g_PosMax) * 4); - damp = clampf(damp, 0.f, 0.9f); - g_PosVelocity *= damp; - } - - g_PosPage += g_PosVelocity * g_DT; - g_PosPage = clampf(g_PosPage, -0.49, g_PosMax + 0.49); -} - - -void -draw_home_button() -{ - setColor(1.0f, 1.0f, 1.0f, 1.0f); - bindTexture(NAMED_PFTexNearest, 0, state->homeButtonId); - - float w = getWidth(); - float h = getHeight(); - - float x; - float y; - if (getWidth() > getHeight()) { - x = w - (params->homeButtonTextureWidth * (1 - g_Animation)) + 20; - y = (h - params->homeButtonTextureHeight) * 0.5f; - } else { - x = (w - params->homeButtonTextureWidth) / 2; - y = -g_Animation * params->homeButtonTextureHeight; - y -= 30; // move the house to the edge of the screen as it doesn't fill the texture. - } - - drawSpriteScreenspace(x, y, 0, params->homeButtonTextureWidth, params->homeButtonTextureHeight); -} - -void drawFrontGrid(float rowOffset, float p) -{ - float h = getHeight(); - float w = getWidth(); - - int intRowOffset = rowOffset; - float rowFrac = rowOffset - intRowOffset; - float colWidth = 120.f;//getWidth() / 4; - float rowHeight = colWidth + 25.f; - float yoff = 0.5f * h + 1.5f * rowHeight; - - int row, col; - int colCount = 4; - if (w > h) { - colCount = 6; - rowHeight -= 12.f; - yoff = 0.47f * h + 1.0f * rowHeight; - } - - int iconNum = (intRowOffset - 5) * colCount; - - - bindProgramVertex(NAMED_PVCurve); - - vpConstants->Position.z = p; - - setColor(1.0f, 1.0f, 1.0f, 1.0f); - for (row = -5; row < 15; row++) { - float y = yoff - ((-rowFrac + row) * rowHeight); - - for (col=0; col < colCount; col++) { - if (iconNum >= state->iconCount) { - return; - } - - if (iconNum >= 0) { - float x = colWidth * col + (colWidth / 2); - vpConstants->Position.x = x + 0.2f; - - if (state->selectedIconIndex == iconNum && !p) { - bindProgramFragment(NAMED_PFTexNearest); - bindTexture(NAMED_PFTexNearest, 0, state->selectedIconTexture); - vpConstants->ImgSize.x = SELECTION_TEXTURE_WIDTH_PX; - vpConstants->ImgSize.y = SELECTION_TEXTURE_HEIGHT_PX; - vpConstants->Position.y = y - (SELECTION_TEXTURE_HEIGHT_PX - ICON_TEXTURE_HEIGHT_PX) * 0.5f; - drawSimpleMesh(NAMED_SMCell); - } - - bindProgramFragment(NAMED_PFTexMip); - vpConstants->ImgSize.x = ICON_TEXTURE_WIDTH_PX; - vpConstants->ImgSize.y = ICON_TEXTURE_HEIGHT_PX; - vpConstants->Position.y = y - 0.2f; - bindTexture(NAMED_PFTexMip, 0, loadI32(ALLOC_ICON_IDS, iconNum)); - drawSimpleMesh(NAMED_SMCell); - - bindProgramFragment(NAMED_PFTexMipAlpha); - vpConstants->ImgSize.x = 120.f; - vpConstants->ImgSize.y = 64.f; - vpConstants->Position.y = y - 64.f - 0.2f; - bindTexture(NAMED_PFTexMipAlpha, 0, loadI32(ALLOC_LABEL_IDS, iconNum)); - drawSimpleMesh(NAMED_SMCell); - } - iconNum++; - } - } -} - - -int -main(int launchID) -{ - // Compute dt in seconds. - int newTime = uptimeMillis(); - g_DT = (newTime - g_LastTime) / 1000.f; - g_LastTime = newTime; - - if (!g_DrawLastFrame) { - // If we stopped rendering we cannot use DT. - // assume 30fps in this case. - g_DT = 0.033f; - } - // physics may break if DT is large. - g_DT = minf(g_DT, 0.2f); - - if (g_Zoom != state->zoomTarget) { - float dz = g_DT * 1.7f; - if (state->zoomTarget < 0.5f) { - dz = -dz; - } - if (fabsf(g_Zoom - state->zoomTarget) < fabsf(dz)) { - g_Zoom = state->zoomTarget; - } else { - g_Zoom += dz; - } - updateReadback(); - } - g_Animation = powf(1-g_Zoom, 3); - - // Set clear value to dim the background based on the zoom position. - if ((g_Zoom < 0.001f) && (state->zoomTarget < 0.001f) && !g_SpecialHWWar) { - pfClearColor(0.0f, 0.0f, 0.0f, 0.0f); - // When we're zoomed out and not tracking motion events, reset the pos to 0. - if (!g_LastTouchDown) { - g_PosPage = 0; - } - return lastFrame(0); - } else { - pfClearColor(0.0f, 0.0f, 0.0f, g_Zoom); - } - - // icons & labels - int iconCount = state->iconCount; - if (getWidth() > getHeight()) { - g_Cols = 6; - g_Rows = 3; - } else { - g_Cols = 4; - g_Rows = 4; - } - g_PosMax = ((iconCount + (g_Cols-1)) / g_Cols) - g_Rows; - if (g_PosMax < 0) g_PosMax = 0; - - updatePos(); - updateReadback(); - - //debugF(" draw g_PosPage", g_PosPage); - - // Draw the icons ======================================== - drawFrontGrid(g_PosPage, g_Animation); - - bindProgramFragment(NAMED_PFTexNearest); - draw_home_button(); - - // This is a WAR to do a rendering pass without drawing during init to - // force the driver to preload and compile its shaders. - // Without this the first animation does not appear due to the time it - // takes to init the driver state. - if (g_SpecialHWWar) { - g_SpecialHWWar = 0; - return 1; - } - - // Bug workaround where the last frame is not always displayed - // So we keep rendering until the bug is fixed. - return lastFrame((g_PosVelocity != 0) || fracf(g_PosPage) || g_Zoom != state->zoomTarget || (g_MoveToTime != 0)); -} - diff --git a/res/values-cs/strings.xml b/res/values-cs/strings.xml index 0f28387..e938b73 100644 --- a/res/values-cs/strings.xml +++ b/res/values-cs/strings.xml @@ -27,6 +27,20 @@ <string name="pick_wallpaper" msgid="5630222540525626723">"Tapety"</string> <string name="activity_not_found" msgid="3571057450431950427">"Aplikace není v telefonu nainstalována."</string> <string name="configure_wallpaper" msgid="2820186271419674623">"Konfigurace..."</string> + <string name="widgets_tab_label" msgid="9145860100000983599">"Widgety"</string> + <string name="folders_tab_label" msgid="1145293785541489736">"Složky"</string> + <string name="shortcuts_tab_label" msgid="8640731503933155644">"Další"</string> + <string name="wallpapers_tab_label" msgid="1617804870364119879">"Tapety"</string> + <string name="applications_tab_label" msgid="9046797126882613707">"Zástupci aplikací"</string> + <string name="wallpapers_temp_tab_text" msgid="1660218201190495279">"Toto bude karta Tapety"</string> + <string name="all_apps_tab_all" msgid="2942727589595027258">"Vše"</string> + <string name="all_apps_tab_apps" msgid="5468972551904071712">"Aplikace"</string> + <string name="all_apps_tab_games" msgid="1855736784923494918">"Hry"</string> + <string name="all_apps_tab_downloaded" msgid="2300935549064726963">"Stažené"</string> + <!-- no translation found for all_apps_no_games (5293893733372793696) --> + <skip /> + <!-- no translation found for all_apps_no_downloads (6145042636084482299) --> + <skip /> <string name="rename_folder_label" msgid="5646236631298452787">"Název složky"</string> <string name="rename_folder_title" msgid="4544573104191526550">"Přejmenovat složku"</string> <string name="rename_action" msgid="6016003384693240896">"OK"</string> @@ -48,7 +62,7 @@ <string name="title_select_shortcut" msgid="2858897527672831763">"Vyberte zástupce"</string> <string name="title_select_application" msgid="8031072293115454221">"Výběr aplikace"</string> <string name="title_select_live_folder" msgid="3753447798805166749">"Vybrat složku"</string> - <string name="all_apps_button_label" msgid="3953036962111614813">"Všechny aplikace"</string> + <string name="all_apps_button_label" msgid="2578400570124163469">"Aplikace"</string> <string name="all_apps_home_button_label" msgid="1022222300329398558">"Plocha"</string> <string name="menu_add" msgid="3065046628354640854">"Přidat"</string> <string name="menu_manage_apps" msgid="2308685199463588895">"Spravovat aplikace"</string> @@ -57,6 +71,12 @@ <string name="menu_notifications" msgid="6424587053194766192">"Oznámení"</string> <string name="menu_gestures" msgid="514678675575912237">"Gesta"</string> <string name="menu_settings" msgid="6233960148378443661">"Nastavení"</string> + <string name="cab_menu_delete_app" msgid="1242619904941293871">"Odinstalovat aplikaci"</string> + <string name="cab_menu_app_info" msgid="5180426909324882018">"Podrobnosti o aplikaci"</string> + <string name="cab_app_selection_text" msgid="606113924828167756">"Vybrána 1 aplikace"</string> + <string name="cab_widget_selection_text" msgid="962527270506951955">"Vybrán 1 widget"</string> + <string name="cab_folder_selection_text" msgid="8916111874189565067">"Vybrána 1 složka"</string> + <string name="cab_shortcut_selection_text" msgid="8115847384500412878">"Vybrán 1 zástupce"</string> <string name="permlab_install_shortcut" msgid="1201690825493376489">"instalovat zástupce"</string> <string name="permdesc_install_shortcut" msgid="7429365847558984148">"Povoluje aplikaci přidat zástupce bez zásahu uživatele."</string> <string name="permlab_uninstall_shortcut" msgid="7696645932555926449">"odinstalovat zástupce"</string> @@ -66,4 +86,5 @@ <string name="permlab_write_settings" msgid="1360567537236705628">"zápis nastavení a odkazů plochy"</string> <string name="permdesc_write_settings" msgid="1098648778383349818">"Povoluje aplikaci změnit nastavení a odkazy plochy."</string> <string name="gadget_error_text" msgid="8359351016167075858">"Problém s načtením widgetu"</string> + <string name="uninstall_system_app_text" msgid="7488523163288397451">"Toto je systémová aplikace a nelze ji odinstalovat."</string> </resources> diff --git a/res/values-da/strings.xml b/res/values-da/strings.xml index d23e046..576abce 100644 --- a/res/values-da/strings.xml +++ b/res/values-da/strings.xml @@ -27,6 +27,20 @@ <string name="pick_wallpaper" msgid="5630222540525626723">"Tapeter"</string> <string name="activity_not_found" msgid="3571057450431950427">"Programmet er ikke installeret på din telefon."</string> <string name="configure_wallpaper" msgid="2820186271419674623">"Konfigurer ..."</string> + <string name="widgets_tab_label" msgid="9145860100000983599">"Widgets"</string> + <string name="folders_tab_label" msgid="1145293785541489736">"Mapper"</string> + <string name="shortcuts_tab_label" msgid="8640731503933155644">"Flere"</string> + <string name="wallpapers_tab_label" msgid="1617804870364119879">"Tapeter"</string> + <string name="applications_tab_label" msgid="9046797126882613707">"Programgenvej"</string> + <string name="wallpapers_temp_tab_text" msgid="1660218201190495279">"Dette er fanen for tapeter"</string> + <string name="all_apps_tab_all" msgid="2942727589595027258">"Alle"</string> + <string name="all_apps_tab_apps" msgid="5468972551904071712">"Programmer"</string> + <string name="all_apps_tab_games" msgid="1855736784923494918">"Spil"</string> + <string name="all_apps_tab_downloaded" msgid="2300935549064726963">"Downloadet"</string> + <!-- no translation found for all_apps_no_games (5293893733372793696) --> + <skip /> + <!-- no translation found for all_apps_no_downloads (6145042636084482299) --> + <skip /> <string name="rename_folder_label" msgid="5646236631298452787">"Mappenavn"</string> <string name="rename_folder_title" msgid="4544573104191526550">"Omdøb mappe"</string> <string name="rename_action" msgid="6016003384693240896">"OK"</string> @@ -48,7 +62,7 @@ <string name="title_select_shortcut" msgid="2858897527672831763">"Vælg genvej"</string> <string name="title_select_application" msgid="8031072293115454221">"Vælg program"</string> <string name="title_select_live_folder" msgid="3753447798805166749">"Vælg mappe"</string> - <string name="all_apps_button_label" msgid="3953036962111614813">"Alle programmer"</string> + <string name="all_apps_button_label" msgid="2578400570124163469">"Programmer"</string> <string name="all_apps_home_button_label" msgid="1022222300329398558">"Start"</string> <string name="menu_add" msgid="3065046628354640854">"Tilføj"</string> <string name="menu_manage_apps" msgid="2308685199463588895">"Administrer programmer"</string> @@ -57,6 +71,12 @@ <string name="menu_notifications" msgid="6424587053194766192">"Meddelelser"</string> <string name="menu_gestures" msgid="514678675575912237">"Gestus"</string> <string name="menu_settings" msgid="6233960148378443661">"Indstillinger"</string> + <string name="cab_menu_delete_app" msgid="1242619904941293871">"Afinstaller program"</string> + <string name="cab_menu_app_info" msgid="5180426909324882018">"Programoplysninger"</string> + <string name="cab_app_selection_text" msgid="606113924828167756">"1 program er valgt"</string> + <string name="cab_widget_selection_text" msgid="962527270506951955">"1 widget er valgt"</string> + <string name="cab_folder_selection_text" msgid="8916111874189565067">"1 mappe er valgt"</string> + <string name="cab_shortcut_selection_text" msgid="8115847384500412878">"1 genvej er valgt"</string> <string name="permlab_install_shortcut" msgid="1201690825493376489">"installer genveje"</string> <string name="permdesc_install_shortcut" msgid="7429365847558984148">"Tillader, at et program tilføjer genveje uden brugerindgriben."</string> <string name="permlab_uninstall_shortcut" msgid="7696645932555926449">"afinstaller genveje"</string> @@ -66,4 +86,5 @@ <string name="permlab_write_settings" msgid="1360567537236705628">"skriv indstillinger og genveje for Start"</string> <string name="permdesc_write_settings" msgid="1098648778383349818">"Tillader, at et program ændrer indstillingerne og genvejene i Start."</string> <string name="gadget_error_text" msgid="8359351016167075858">"Der er problemer med indlæsning af widget"</string> + <string name="uninstall_system_app_text" msgid="7488523163288397451">"Dette er et systemprogram, som ikke kan afinstalleres."</string> </resources> diff --git a/res/values-de/strings.xml b/res/values-de/strings.xml index 5a4186b..575db07 100644 --- a/res/values-de/strings.xml +++ b/res/values-de/strings.xml @@ -27,6 +27,20 @@ <string name="pick_wallpaper" msgid="5630222540525626723">"Hintergrundbilder"</string> <string name="activity_not_found" msgid="3571057450431950427">"Anwendung ist nicht auf dem Telefon installiert."</string> <string name="configure_wallpaper" msgid="2820186271419674623">"Konfigurieren..."</string> + <string name="widgets_tab_label" msgid="9145860100000983599">"Widgets"</string> + <string name="folders_tab_label" msgid="1145293785541489736">"Ordner"</string> + <string name="shortcuts_tab_label" msgid="8640731503933155644">"Mehr"</string> + <string name="wallpapers_tab_label" msgid="1617804870364119879">"Hintergründe"</string> + <string name="applications_tab_label" msgid="9046797126882613707">"App-Verknüpfungen"</string> + <string name="wallpapers_temp_tab_text" msgid="1660218201190495279">"Dies ist der Tab \"Hintergründe\""</string> + <string name="all_apps_tab_all" msgid="2942727589595027258">"Alle"</string> + <string name="all_apps_tab_apps" msgid="5468972551904071712">"Apps"</string> + <string name="all_apps_tab_games" msgid="1855736784923494918">"Spiele"</string> + <string name="all_apps_tab_downloaded" msgid="2300935549064726963">"Heruntergeladen"</string> + <!-- no translation found for all_apps_no_games (5293893733372793696) --> + <skip /> + <!-- no translation found for all_apps_no_downloads (6145042636084482299) --> + <skip /> <string name="rename_folder_label" msgid="5646236631298452787">"Ordnername"</string> <string name="rename_folder_title" msgid="4544573104191526550">"Ordner umbenennen"</string> <string name="rename_action" msgid="6016003384693240896">"OK"</string> @@ -48,7 +62,7 @@ <string name="title_select_shortcut" msgid="2858897527672831763">"Tastenkürzel auswählen"</string> <string name="title_select_application" msgid="8031072293115454221">"Anwendung auswählen"</string> <string name="title_select_live_folder" msgid="3753447798805166749">"Ordner auswählen"</string> - <string name="all_apps_button_label" msgid="3953036962111614813">"Alle Anwendungen"</string> + <string name="all_apps_button_label" msgid="2578400570124163469">"Anwendungen"</string> <string name="all_apps_home_button_label" msgid="1022222300329398558">"Startseite"</string> <string name="menu_add" msgid="3065046628354640854">"Hinzufügen"</string> <string name="menu_manage_apps" msgid="2308685199463588895">"Apps verwalten"</string> @@ -57,6 +71,12 @@ <string name="menu_notifications" msgid="6424587053194766192">"Benachrichtigungen"</string> <string name="menu_gestures" msgid="514678675575912237">"Bewegungen"</string> <string name="menu_settings" msgid="6233960148378443661">"Einstellungen"</string> + <string name="cab_menu_delete_app" msgid="1242619904941293871">"Anwendung deinstallieren"</string> + <string name="cab_menu_app_info" msgid="5180426909324882018">"Anwendungsdetails"</string> + <string name="cab_app_selection_text" msgid="606113924828167756">"1 Anwendung ausgewählt"</string> + <string name="cab_widget_selection_text" msgid="962527270506951955">"1 Widget ausgewählt"</string> + <string name="cab_folder_selection_text" msgid="8916111874189565067">"1 Ordner ausgewählt"</string> + <string name="cab_shortcut_selection_text" msgid="8115847384500412878">"1 Verknüpfung ausgewählt"</string> <string name="permlab_install_shortcut" msgid="1201690825493376489">"Verknüpfungen installieren"</string> <string name="permdesc_install_shortcut" msgid="7429365847558984148">"Ermöglicht einer Anwendung das Hinzufügen von Verknüpfungen ohne Eingriff des Nutzers."</string> <string name="permlab_uninstall_shortcut" msgid="7696645932555926449">"Verknüpfungen deinstallieren"</string> @@ -66,4 +86,5 @@ <string name="permlab_write_settings" msgid="1360567537236705628">"Einstellungen und Shortcuts für Startseite schreiben"</string> <string name="permdesc_write_settings" msgid="1098648778383349818">"Ermöglicht einer Anwendung, die Einstellungen und Shortcuts auf der Startseite zu ändern."</string> <string name="gadget_error_text" msgid="8359351016167075858">"Problem beim Laden des Widgets"</string> + <string name="uninstall_system_app_text" msgid="7488523163288397451">"Dies ist eine Systemanwendung, die nicht deinstalliert werden kann."</string> </resources> diff --git a/res/values-el/strings.xml b/res/values-el/strings.xml index 1e27440..0937c5b 100644 --- a/res/values-el/strings.xml +++ b/res/values-el/strings.xml @@ -27,6 +27,20 @@ <string name="pick_wallpaper" msgid="5630222540525626723">"Ταπετσαρίες"</string> <string name="activity_not_found" msgid="3571057450431950427">"Η εφαρμογή δεν έχει εγκατασταθεί στο τηλέφωνό σας."</string> <string name="configure_wallpaper" msgid="2820186271419674623">"Διαμόρφωση..."</string> + <string name="widgets_tab_label" msgid="9145860100000983599">"Γραφικά στοιχεία"</string> + <string name="folders_tab_label" msgid="1145293785541489736">"Φάκελοι"</string> + <string name="shortcuts_tab_label" msgid="8640731503933155644">"Περισσότερα"</string> + <string name="wallpapers_tab_label" msgid="1617804870364119879">"Ταπετσαρίες"</string> + <string name="applications_tab_label" msgid="9046797126882613707">"Συντομεύσεις Εφαρμογών"</string> + <string name="wallpapers_temp_tab_text" msgid="1660218201190495279">"Αυτή θα είναι η καρτέλα ταπετσαριών"</string> + <string name="all_apps_tab_all" msgid="2942727589595027258">"Κάθε ηλικία"</string> + <string name="all_apps_tab_apps" msgid="5468972551904071712">"Εφαρμογές"</string> + <string name="all_apps_tab_games" msgid="1855736784923494918">"Παιχνίδια"</string> + <string name="all_apps_tab_downloaded" msgid="2300935549064726963">"Η λήψη ολοκληρώθηκε"</string> + <!-- no translation found for all_apps_no_games (5293893733372793696) --> + <skip /> + <!-- no translation found for all_apps_no_downloads (6145042636084482299) --> + <skip /> <string name="rename_folder_label" msgid="5646236631298452787">"Όνομα φακέλου"</string> <string name="rename_folder_title" msgid="4544573104191526550">"Μετονομασία φακέλου"</string> <string name="rename_action" msgid="6016003384693240896">"OK"</string> @@ -48,7 +62,7 @@ <string name="title_select_shortcut" msgid="2858897527672831763">"Επιλογή συντόμευσης"</string> <string name="title_select_application" msgid="8031072293115454221">"Επιλέξτε εφαρμογή"</string> <string name="title_select_live_folder" msgid="3753447798805166749">"Επιλογή φακέλου"</string> - <string name="all_apps_button_label" msgid="3953036962111614813">"Όλες οι εφαρμογές"</string> + <string name="all_apps_button_label" msgid="2578400570124163469">"Εφαρμογές"</string> <string name="all_apps_home_button_label" msgid="1022222300329398558">"Αρχική σελίδα"</string> <string name="menu_add" msgid="3065046628354640854">"Προσθήκη"</string> <string name="menu_manage_apps" msgid="2308685199463588895">"Διαχείριση εφαρμογών"</string> @@ -57,6 +71,12 @@ <string name="menu_notifications" msgid="6424587053194766192">"Ειδοποιήσεις"</string> <string name="menu_gestures" msgid="514678675575912237">"Χειρονομίες"</string> <string name="menu_settings" msgid="6233960148378443661">"Ρυθμίσεις"</string> + <string name="cab_menu_delete_app" msgid="1242619904941293871">"Κατάργηση εγκατάστασης εφαρμογής"</string> + <string name="cab_menu_app_info" msgid="5180426909324882018">"Λεπτομέρειες εφαρμογής"</string> + <string name="cab_app_selection_text" msgid="606113924828167756">"Επιλέχθηκε 1 εφαρμογή"</string> + <string name="cab_widget_selection_text" msgid="962527270506951955">"Επιλέχθηκε 1 γραφικό στοιχείο"</string> + <string name="cab_folder_selection_text" msgid="8916111874189565067">"Επιλέχθηκε 1 φάκελος"</string> + <string name="cab_shortcut_selection_text" msgid="8115847384500412878">"Επιλέχθηκε 1 συντόμευση"</string> <string name="permlab_install_shortcut" msgid="1201690825493376489">"εγκατάσταση συντομεύσεων"</string> <string name="permdesc_install_shortcut" msgid="7429365847558984148">"Επιτρέπει σε μια εφαρμογή την προσθήκη συντομεύσεων χωρίς την παρέμβαση του χρήστη."</string> <string name="permlab_uninstall_shortcut" msgid="7696645932555926449">"κατάργηση εγκατάστασης συντομεύσεων"</string> @@ -66,4 +86,5 @@ <string name="permlab_write_settings" msgid="1360567537236705628">"εγγραφή ρυθμίσεων και συντομεύσεων αρχικής οθόνης"</string> <string name="permdesc_write_settings" msgid="1098648778383349818">"Επιτρέπει σε μια εφαρμογή την αλλαγή των ρυθμίσεων και των συντομεύσεων στην αρχική οθόνη."</string> <string name="gadget_error_text" msgid="8359351016167075858">"Παρουσιάστηκε πρόβλημα στη φόρτωση του γραφικού στοιχείου"</string> + <string name="uninstall_system_app_text" msgid="7488523163288397451">"Αυτή είναι εφαρμογή του συστήματος και δεν είναι δυνατή η κατάργηση της εγκατάστασής της."</string> </resources> diff --git a/res/values-es-rUS/strings.xml b/res/values-es-rUS/strings.xml index 7c26851..d718936 100644 --- a/res/values-es-rUS/strings.xml +++ b/res/values-es-rUS/strings.xml @@ -27,6 +27,18 @@ <string name="pick_wallpaper" msgid="5630222540525626723">"Papeles tapiz"</string> <string name="activity_not_found" msgid="3571057450431950427">"La aplicación no está instalada en tu computadora."</string> <string name="configure_wallpaper" msgid="2820186271419674623">"Configurar..."</string> + <string name="widgets_tab_label" msgid="9145860100000983599">"Widgets"</string> + <string name="folders_tab_label" msgid="1145293785541489736">"Carpetas"</string> + <string name="shortcuts_tab_label" msgid="8640731503933155644">"Más"</string> + <string name="wallpapers_tab_label" msgid="1617804870364119879">"Papeles tapiz"</string> + <string name="applications_tab_label" msgid="9046797126882613707">"Accesos directos a aplicaciones"</string> + <string name="wallpapers_temp_tab_text" msgid="1660218201190495279">"Ésta será la pestaña para los papeles tapiz"</string> + <string name="all_apps_tab_all" msgid="2942727589595027258">"Todos"</string> + <string name="all_apps_tab_apps" msgid="5468972551904071712">"Google Apps"</string> + <string name="all_apps_tab_games" msgid="1855736784923494918">"Juegos"</string> + <string name="all_apps_tab_downloaded" msgid="2300935549064726963">"Descargado"</string> + <string name="all_apps_no_games" msgid="5293893733372793696">"No"</string> + <string name="all_apps_no_downloads" msgid="6145042636084482299">"No Google Apps"</string> <string name="rename_folder_label" msgid="5646236631298452787">"Nombre de carpeta"</string> <string name="rename_folder_title" msgid="4544573104191526550">"Cambiar nombre de carpeta"</string> <string name="rename_action" msgid="6016003384693240896">"Aceptar"</string> @@ -48,7 +60,7 @@ <string name="title_select_shortcut" msgid="2858897527672831763">"Seleccionar acceso directo"</string> <string name="title_select_application" msgid="8031072293115454221">"Seleccionar aplicación"</string> <string name="title_select_live_folder" msgid="3753447798805166749">"Seleccionar carpeta"</string> - <string name="all_apps_button_label" msgid="3953036962111614813">"Todas las aplicaciones"</string> + <string name="all_apps_button_label" msgid="2578400570124163469">"Google Apps"</string> <string name="all_apps_home_button_label" msgid="1022222300329398558">"Página principal"</string> <string name="menu_add" msgid="3065046628354640854">"Agregar"</string> <string name="menu_manage_apps" msgid="2308685199463588895">"Administrar aplicaciones"</string> @@ -57,6 +69,12 @@ <string name="menu_notifications" msgid="6424587053194766192">"Notificaciones"</string> <string name="menu_gestures" msgid="514678675575912237">"Gestos"</string> <string name="menu_settings" msgid="6233960148378443661">"Configuración"</string> + <string name="cab_menu_delete_app" msgid="1242619904941293871">"Desinstalar la aplicación"</string> + <string name="cab_menu_app_info" msgid="5180426909324882018">"Detalles de la aplicación"</string> + <string name="cab_app_selection_text" msgid="606113924828167756">"Se seleccionó 1 aplicación"</string> + <string name="cab_widget_selection_text" msgid="962527270506951955">"Se seleccionó 1 widget"</string> + <string name="cab_folder_selection_text" msgid="8916111874189565067">"Se seleccionó 1 carpeta"</string> + <string name="cab_shortcut_selection_text" msgid="8115847384500412878">"Se seleccionó 1 acceso directo"</string> <string name="permlab_install_shortcut" msgid="1201690825493376489">"instalar accesos directos"</string> <string name="permdesc_install_shortcut" msgid="7429365847558984148">"Permite a una aplicación agregar accesos directos sin intervención del usuario."</string> <string name="permlab_uninstall_shortcut" msgid="7696645932555926449">"desinstalar papel tapiz"</string> @@ -66,4 +84,5 @@ <string name="permlab_write_settings" msgid="1360567537236705628">"escribir configuración y accesos directos de la página principal"</string> <string name="permdesc_write_settings" msgid="1098648778383349818">"Permite a una aplicación cambiar la configuración y los accesos directos de la página principal."</string> <string name="gadget_error_text" msgid="8359351016167075858">"Problema al cargar el widget"</string> + <string name="uninstall_system_app_text" msgid="7488523163288397451">"Esta es una aplicación de sistema y no puede desinstalarse."</string> </resources> diff --git a/res/values-es/strings.xml b/res/values-es/strings.xml index 49f3891..ab0485a 100644 --- a/res/values-es/strings.xml +++ b/res/values-es/strings.xml @@ -27,6 +27,20 @@ <string name="pick_wallpaper" msgid="5630222540525626723">"Fondos de pantalla"</string> <string name="activity_not_found" msgid="3571057450431950427">"La aplicación no está instalada en el teléfono."</string> <string name="configure_wallpaper" msgid="2820186271419674623">"Configurar..."</string> + <string name="widgets_tab_label" msgid="9145860100000983599">"Widgets"</string> + <string name="folders_tab_label" msgid="1145293785541489736">"Carpetas"</string> + <string name="shortcuts_tab_label" msgid="8640731503933155644">"Más"</string> + <string name="wallpapers_tab_label" msgid="1617804870364119879">"Fondos de pantalla"</string> + <string name="applications_tab_label" msgid="9046797126882613707">"Accesos directos de aplicaciones"</string> + <string name="wallpapers_temp_tab_text" msgid="1660218201190495279">"Será la carpeta de fondos de pantalla."</string> + <string name="all_apps_tab_all" msgid="2942727589595027258">"Todas las aplicaciones"</string> + <string name="all_apps_tab_apps" msgid="5468972551904071712">"Aplicaciones"</string> + <string name="all_apps_tab_games" msgid="1855736784923494918">"Juegos"</string> + <string name="all_apps_tab_downloaded" msgid="2300935549064726963">"Descargadas"</string> + <!-- no translation found for all_apps_no_games (5293893733372793696) --> + <skip /> + <!-- no translation found for all_apps_no_downloads (6145042636084482299) --> + <skip /> <string name="rename_folder_label" msgid="5646236631298452787">"Nombre de carpeta"</string> <string name="rename_folder_title" msgid="4544573104191526550">"Cambiar nombre de carpeta"</string> <string name="rename_action" msgid="6016003384693240896">"Aceptar"</string> @@ -48,7 +62,7 @@ <string name="title_select_shortcut" msgid="2858897527672831763">"Seleccionar acceso directo"</string> <string name="title_select_application" msgid="8031072293115454221">"Seleccionar aplicación"</string> <string name="title_select_live_folder" msgid="3753447798805166749">"Seleccionar carpeta"</string> - <string name="all_apps_button_label" msgid="3953036962111614813">"Todas las aplicaciones"</string> + <string name="all_apps_button_label" msgid="2578400570124163469">"Aplicaciones"</string> <string name="all_apps_home_button_label" msgid="1022222300329398558">"Inicio"</string> <string name="menu_add" msgid="3065046628354640854">"Añadir"</string> <string name="menu_manage_apps" msgid="2308685199463588895">"Administrar aplicaciones"</string> @@ -57,6 +71,12 @@ <string name="menu_notifications" msgid="6424587053194766192">"Notificaciones"</string> <string name="menu_gestures" msgid="514678675575912237">"Gestos"</string> <string name="menu_settings" msgid="6233960148378443661">"Ajustes"</string> + <string name="cab_menu_delete_app" msgid="1242619904941293871">"Desinstalar aplicación"</string> + <string name="cab_menu_app_info" msgid="5180426909324882018">"Información de la aplicación"</string> + <string name="cab_app_selection_text" msgid="606113924828167756">"Se ha seleccionado una aplicación."</string> + <string name="cab_widget_selection_text" msgid="962527270506951955">"Se ha seleccionado un widget."</string> + <string name="cab_folder_selection_text" msgid="8916111874189565067">"Se ha seleccionado una carpeta."</string> + <string name="cab_shortcut_selection_text" msgid="8115847384500412878">"Se ha seleccionado un acceso directo."</string> <string name="permlab_install_shortcut" msgid="1201690825493376489">"instalar accesos directos"</string> <string name="permdesc_install_shortcut" msgid="7429365847558984148">"Permite que una aplicación añada accesos directos sin intervención del usuario."</string> <string name="permlab_uninstall_shortcut" msgid="7696645932555926449">"desinstalar accesos directos"</string> @@ -66,4 +86,5 @@ <string name="permlab_write_settings" msgid="1360567537236705628">"escribir información de accesos directos y de configuración del escritorio"</string> <string name="permdesc_write_settings" msgid="1098648778383349818">"Permite que una aplicación modifique la configuración y los accesos directos de la página de inicio."</string> <string name="gadget_error_text" msgid="8359351016167075858">"Problema al cargar el widget"</string> + <string name="uninstall_system_app_text" msgid="7488523163288397451">"Se trata de una aplicación del sistema y no se puede desinstalar."</string> </resources> diff --git a/res/values-fr/strings.xml b/res/values-fr/strings.xml index 29c4c58..35ee775 100644 --- a/res/values-fr/strings.xml +++ b/res/values-fr/strings.xml @@ -27,6 +27,20 @@ <string name="pick_wallpaper" msgid="5630222540525626723">"Fonds d\'écran"</string> <string name="activity_not_found" msgid="3571057450431950427">"L\'application n\'est pas installée sur votre téléphone."</string> <string name="configure_wallpaper" msgid="2820186271419674623">"Configurer..."</string> + <string name="widgets_tab_label" msgid="9145860100000983599">"Widgets"</string> + <string name="folders_tab_label" msgid="1145293785541489736">"Dossiers"</string> + <string name="shortcuts_tab_label" msgid="8640731503933155644">"Plus"</string> + <string name="wallpapers_tab_label" msgid="1617804870364119879">"Fonds d\'écran"</string> + <string name="applications_tab_label" msgid="9046797126882613707">"Raccourcis des applications"</string> + <string name="wallpapers_temp_tab_text" msgid="1660218201190495279">"Onglet des fonds d\'écran"</string> + <string name="all_apps_tab_all" msgid="2942727589595027258">"Toutes"</string> + <string name="all_apps_tab_apps" msgid="5468972551904071712">"Applications"</string> + <string name="all_apps_tab_games" msgid="1855736784923494918">"Jeux"</string> + <string name="all_apps_tab_downloaded" msgid="2300935549064726963">"Téléchargées"</string> + <!-- no translation found for all_apps_no_games (5293893733372793696) --> + <skip /> + <!-- no translation found for all_apps_no_downloads (6145042636084482299) --> + <skip /> <string name="rename_folder_label" msgid="5646236631298452787">"Nom du dossier"</string> <string name="rename_folder_title" msgid="4544573104191526550">"Renommer le dossier"</string> <string name="rename_action" msgid="6016003384693240896">"OK"</string> @@ -48,7 +62,7 @@ <string name="title_select_shortcut" msgid="2858897527672831763">"Sélectionner un raccourci"</string> <string name="title_select_application" msgid="8031072293115454221">"Sélection d\'une application"</string> <string name="title_select_live_folder" msgid="3753447798805166749">"Sélectionner le dossier"</string> - <string name="all_apps_button_label" msgid="3953036962111614813">"Toutes les applications"</string> + <string name="all_apps_button_label" msgid="2578400570124163469">"Applications"</string> <string name="all_apps_home_button_label" msgid="1022222300329398558">"Page d\'accueil"</string> <string name="menu_add" msgid="3065046628354640854">"Ajouter"</string> <string name="menu_manage_apps" msgid="2308685199463588895">"Gérer les applications"</string> @@ -57,6 +71,12 @@ <string name="menu_notifications" msgid="6424587053194766192">"Notifications"</string> <string name="menu_gestures" msgid="514678675575912237">"Gestes"</string> <string name="menu_settings" msgid="6233960148378443661">"Paramètres"</string> + <string name="cab_menu_delete_app" msgid="1242619904941293871">"Désinstaller l\'application"</string> + <string name="cab_menu_app_info" msgid="5180426909324882018">"Infos sur l\'application"</string> + <string name="cab_app_selection_text" msgid="606113924828167756">"1 application sélectionnée"</string> + <string name="cab_widget_selection_text" msgid="962527270506951955">"1 widget sélectionné"</string> + <string name="cab_folder_selection_text" msgid="8916111874189565067">"1 dossier sélectionné"</string> + <string name="cab_shortcut_selection_text" msgid="8115847384500412878">"1 raccourci sélectionné"</string> <string name="permlab_install_shortcut" msgid="1201690825493376489">"installer des raccourcis"</string> <string name="permdesc_install_shortcut" msgid="7429365847558984148">"Permet à une application d\'ajouter des raccourcis sans l\'intervention de l\'utilisateur."</string> <string name="permlab_uninstall_shortcut" msgid="7696645932555926449">"désinstaller les raccourcis"</string> @@ -66,4 +86,5 @@ <string name="permlab_write_settings" msgid="1360567537236705628">"Enregistrer les paramètres de la page d\'accueil et des raccourcis"</string> <string name="permdesc_write_settings" msgid="1098648778383349818">"Permet à une application de modifier les paramètres et les raccourcis de la page d\'accueil."</string> <string name="gadget_error_text" msgid="8359351016167075858">"Problème lors du chargement du widget"</string> + <string name="uninstall_system_app_text" msgid="7488523163288397451">"Il s\'agit d\'une application système que vous ne pouvez pas désinstaller."</string> </resources> diff --git a/res/values-it/strings.xml b/res/values-it/strings.xml index 9f8db44..7705763 100644 --- a/res/values-it/strings.xml +++ b/res/values-it/strings.xml @@ -27,6 +27,20 @@ <string name="pick_wallpaper" msgid="5630222540525626723">"Sfondi"</string> <string name="activity_not_found" msgid="3571057450431950427">"Applicazione non installata sul telefono."</string> <string name="configure_wallpaper" msgid="2820186271419674623">"Configura..."</string> + <string name="widgets_tab_label" msgid="9145860100000983599">"Widget"</string> + <string name="folders_tab_label" msgid="1145293785541489736">"Cartelle"</string> + <string name="shortcuts_tab_label" msgid="8640731503933155644">"Altro"</string> + <string name="wallpapers_tab_label" msgid="1617804870364119879">"Sfondi"</string> + <string name="applications_tab_label" msgid="9046797126882613707">"Scorciatoie applicazioni"</string> + <string name="wallpapers_temp_tab_text" msgid="1660218201190495279">"Questa sarà la scheda degli sfondi"</string> + <string name="all_apps_tab_all" msgid="2942727589595027258">"Tutte"</string> + <string name="all_apps_tab_apps" msgid="5468972551904071712">"Applicazioni"</string> + <string name="all_apps_tab_games" msgid="1855736784923494918">"Giochi"</string> + <string name="all_apps_tab_downloaded" msgid="2300935549064726963">"Scaricate"</string> + <!-- no translation found for all_apps_no_games (5293893733372793696) --> + <skip /> + <!-- no translation found for all_apps_no_downloads (6145042636084482299) --> + <skip /> <string name="rename_folder_label" msgid="5646236631298452787">"Nome cartella"</string> <string name="rename_folder_title" msgid="4544573104191526550">"Rinomina cartella"</string> <string name="rename_action" msgid="6016003384693240896">"OK"</string> @@ -48,7 +62,7 @@ <string name="title_select_shortcut" msgid="2858897527672831763">"Seleziona scorciatoia"</string> <string name="title_select_application" msgid="8031072293115454221">"Seleziona applicazione"</string> <string name="title_select_live_folder" msgid="3753447798805166749">"Seleziona cartella"</string> - <string name="all_apps_button_label" msgid="3953036962111614813">"Tutte le applicazioni"</string> + <string name="all_apps_button_label" msgid="2578400570124163469">"Applicazioni"</string> <string name="all_apps_home_button_label" msgid="1022222300329398558">"Home"</string> <string name="menu_add" msgid="3065046628354640854">"Aggiungi"</string> <string name="menu_manage_apps" msgid="2308685199463588895">"Gestisci applicazioni"</string> @@ -57,6 +71,12 @@ <string name="menu_notifications" msgid="6424587053194766192">"Notifiche"</string> <string name="menu_gestures" msgid="514678675575912237">"Gesti"</string> <string name="menu_settings" msgid="6233960148378443661">"Impostazioni"</string> + <string name="cab_menu_delete_app" msgid="1242619904941293871">"Disinstalla applicazione"</string> + <string name="cab_menu_app_info" msgid="5180426909324882018">"Dettagli applicazione"</string> + <string name="cab_app_selection_text" msgid="606113924828167756">"1 applicazione selezionata"</string> + <string name="cab_widget_selection_text" msgid="962527270506951955">"1 widget selezionato"</string> + <string name="cab_folder_selection_text" msgid="8916111874189565067">"1 cartella selezionata"</string> + <string name="cab_shortcut_selection_text" msgid="8115847384500412878">"1 scorciatoia selezionata"</string> <string name="permlab_install_shortcut" msgid="1201690825493376489">"aggiungere scorciatoie"</string> <string name="permdesc_install_shortcut" msgid="7429365847558984148">"Consente a un\'applicazione di aggiungere scorciatoie automaticamente."</string> <string name="permlab_uninstall_shortcut" msgid="7696645932555926449">"eliminare scorciatoie"</string> @@ -66,4 +86,5 @@ <string name="permlab_write_settings" msgid="1360567537236705628">"creare impostazioni e scorciatoie in Home"</string> <string name="permdesc_write_settings" msgid="1098648778383349818">"Consente a un\'applicazione di modificare le impostazioni e le scorciatoie in Home."</string> <string name="gadget_error_text" msgid="8359351016167075858">"Errore durante il caricamento del widget"</string> + <string name="uninstall_system_app_text" msgid="7488523163288397451">"Questa è un\'applicazione di sistema e non può essere disinstallata."</string> </resources> diff --git a/res/values-ja/strings.xml b/res/values-ja/strings.xml index b401b8b..2a7a218 100644 --- a/res/values-ja/strings.xml +++ b/res/values-ja/strings.xml @@ -27,6 +27,20 @@ <string name="pick_wallpaper" msgid="5630222540525626723">"壁紙"</string> <string name="activity_not_found" msgid="3571057450431950427">"アプリケーションがインストールされていません。"</string> <string name="configure_wallpaper" msgid="2820186271419674623">"設定..."</string> + <string name="widgets_tab_label" msgid="9145860100000983599">"ウィジェット"</string> + <string name="folders_tab_label" msgid="1145293785541489736">"フォルダ"</string> + <string name="shortcuts_tab_label" msgid="8640731503933155644">"その他"</string> + <string name="wallpapers_tab_label" msgid="1617804870364119879">"壁紙"</string> + <string name="applications_tab_label" msgid="9046797126882613707">"アプリのショートカット"</string> + <string name="wallpapers_temp_tab_text" msgid="1660218201190495279">"ここが壁紙タブになります"</string> + <string name="all_apps_tab_all" msgid="2942727589595027258">"すべて"</string> + <string name="all_apps_tab_apps" msgid="5468972551904071712">"アプリ"</string> + <string name="all_apps_tab_games" msgid="1855736784923494918">"ゲーム"</string> + <string name="all_apps_tab_downloaded" msgid="2300935549064726963">"ダウンロード済み"</string> + <!-- no translation found for all_apps_no_games (5293893733372793696) --> + <skip /> + <!-- no translation found for all_apps_no_downloads (6145042636084482299) --> + <skip /> <string name="rename_folder_label" msgid="5646236631298452787">"フォルダ名"</string> <string name="rename_folder_title" msgid="4544573104191526550">"フォルダ名を変更"</string> <string name="rename_action" msgid="6016003384693240896">"OK"</string> @@ -48,7 +62,7 @@ <string name="title_select_shortcut" msgid="2858897527672831763">"ショートカットを選択"</string> <string name="title_select_application" msgid="8031072293115454221">"アプリを選択"</string> <string name="title_select_live_folder" msgid="3753447798805166749">"フォルダの選択"</string> - <string name="all_apps_button_label" msgid="3953036962111614813">"すべてのアプリケーション"</string> + <string name="all_apps_button_label" msgid="2578400570124163469">"アプリ"</string> <string name="all_apps_home_button_label" msgid="1022222300329398558">"ホーム"</string> <string name="menu_add" msgid="3065046628354640854">"追加"</string> <string name="menu_manage_apps" msgid="2308685199463588895">"アプリの管理"</string> @@ -57,6 +71,12 @@ <string name="menu_notifications" msgid="6424587053194766192">"通知"</string> <string name="menu_gestures" msgid="514678675575912237">"ジェスチャー"</string> <string name="menu_settings" msgid="6233960148378443661">"設定"</string> + <string name="cab_menu_delete_app" msgid="1242619904941293871">"アプリケーションのアンインストール"</string> + <string name="cab_menu_app_info" msgid="5180426909324882018">"アプリケーションの詳細"</string> + <string name="cab_app_selection_text" msgid="606113924828167756">"1つのアプリケーションが選択されています"</string> + <string name="cab_widget_selection_text" msgid="962527270506951955">"1つのウィジェットが選択されています"</string> + <string name="cab_folder_selection_text" msgid="8916111874189565067">"1つのフォルダが選択されています"</string> + <string name="cab_shortcut_selection_text" msgid="8115847384500412878">"1つのショートカットが選択されています"</string> <string name="permlab_install_shortcut" msgid="1201690825493376489">"ショートカットのインストール"</string> <string name="permdesc_install_shortcut" msgid="7429365847558984148">"ユーザー操作なしでショートカットの追加をアプリケーションに許可します。"</string> <string name="permlab_uninstall_shortcut" msgid="7696645932555926449">"ショートカットのアンインストール"</string> @@ -66,4 +86,5 @@ <string name="permlab_write_settings" msgid="1360567537236705628">"ホームの設定とショートカットの書き込み"</string> <string name="permdesc_write_settings" msgid="1098648778383349818">"ホームの設定とショートカットの変更をアプリケーションに許可します。"</string> <string name="gadget_error_text" msgid="8359351016167075858">"ウィジェットを表示できません"</string> + <string name="uninstall_system_app_text" msgid="7488523163288397451">"このシステムアプリケーションはアンインストールできません。"</string> </resources> diff --git a/res/values-ko/strings.xml b/res/values-ko/strings.xml index 8787589..b23450d 100644 --- a/res/values-ko/strings.xml +++ b/res/values-ko/strings.xml @@ -27,6 +27,20 @@ <string name="pick_wallpaper" msgid="5630222540525626723">"배경화면"</string> <string name="activity_not_found" msgid="3571057450431950427">"휴대전화에 설치되어 있지 않은 애플리케이션입니다."</string> <string name="configure_wallpaper" msgid="2820186271419674623">"구성..."</string> + <string name="widgets_tab_label" msgid="9145860100000983599">"위젯"</string> + <string name="folders_tab_label" msgid="1145293785541489736">"폴더"</string> + <string name="shortcuts_tab_label" msgid="8640731503933155644">"더보기"</string> + <string name="wallpapers_tab_label" msgid="1617804870364119879">"배경화면"</string> + <string name="applications_tab_label" msgid="9046797126882613707">"앱 바로가기"</string> + <string name="wallpapers_temp_tab_text" msgid="1660218201190495279">"배경화면 탭이 됩니다."</string> + <string name="all_apps_tab_all" msgid="2942727589595027258">"모두"</string> + <string name="all_apps_tab_apps" msgid="5468972551904071712">"애플리케이션"</string> + <string name="all_apps_tab_games" msgid="1855736784923494918">"게임"</string> + <string name="all_apps_tab_downloaded" msgid="2300935549064726963">"다운로드앱"</string> + <!-- no translation found for all_apps_no_games (5293893733372793696) --> + <skip /> + <!-- no translation found for all_apps_no_downloads (6145042636084482299) --> + <skip /> <string name="rename_folder_label" msgid="5646236631298452787">"폴더 이름"</string> <string name="rename_folder_title" msgid="4544573104191526550">"폴더 이름 바꾸기"</string> <string name="rename_action" msgid="6016003384693240896">"확인"</string> @@ -48,7 +62,7 @@ <string name="title_select_shortcut" msgid="2858897527672831763">"바로가기 선택"</string> <string name="title_select_application" msgid="8031072293115454221">"애플리케이션 선택"</string> <string name="title_select_live_folder" msgid="3753447798805166749">"폴더 선택"</string> - <string name="all_apps_button_label" msgid="3953036962111614813">"모든 애플리케이션"</string> + <string name="all_apps_button_label" msgid="2578400570124163469">"애플리케이션"</string> <string name="all_apps_home_button_label" msgid="1022222300329398558">"홈"</string> <string name="menu_add" msgid="3065046628354640854">"추가"</string> <string name="menu_manage_apps" msgid="2308685199463588895">"애플리케이션 관리"</string> @@ -57,6 +71,12 @@ <string name="menu_notifications" msgid="6424587053194766192">"알림"</string> <string name="menu_gestures" msgid="514678675575912237">"동작"</string> <string name="menu_settings" msgid="6233960148378443661">"설정"</string> + <string name="cab_menu_delete_app" msgid="1242619904941293871">"애플리케이션 제거"</string> + <string name="cab_menu_app_info" msgid="5180426909324882018">"애플리케이션 세부정보"</string> + <string name="cab_app_selection_text" msgid="606113924828167756">"1개 애플리케이션 선택"</string> + <string name="cab_widget_selection_text" msgid="962527270506951955">"1개 위젯 선택"</string> + <string name="cab_folder_selection_text" msgid="8916111874189565067">"1개 폴더 선택"</string> + <string name="cab_shortcut_selection_text" msgid="8115847384500412878">"1개 바로가기 선택"</string> <string name="permlab_install_shortcut" msgid="1201690825493376489">"바로가기 설치"</string> <string name="permdesc_install_shortcut" msgid="7429365847558984148">"애플리케이션이 사용자의 작업 없이 바로가기를 추가할 수 있도록 합니다."</string> <string name="permlab_uninstall_shortcut" msgid="7696645932555926449">"바로가기 제거"</string> @@ -66,4 +86,5 @@ <string name="permlab_write_settings" msgid="1360567537236705628">"홈 설정 및 바로가기 쓰기"</string> <string name="permdesc_write_settings" msgid="1098648778383349818">"애플리케이션이 홈에 있는 설정 및 바로가기를 변경할 수 있도록 합니다."</string> <string name="gadget_error_text" msgid="8359351016167075858">"위젯을 로드하는 중 문제가 발생했습니다."</string> + <string name="uninstall_system_app_text" msgid="7488523163288397451">"시스템 애플리케이션은 제거할 수 없습니다."</string> </resources> diff --git a/res/values-nb/strings.xml b/res/values-nb/strings.xml index 201d2d0..5026744 100644 --- a/res/values-nb/strings.xml +++ b/res/values-nb/strings.xml @@ -27,6 +27,20 @@ <string name="pick_wallpaper" msgid="5630222540525626723">"Bakgrunner"</string> <string name="activity_not_found" msgid="3571057450431950427">"Applikasjonen er ikke installert."</string> <string name="configure_wallpaper" msgid="2820186271419674623">"Konfigurer"</string> + <string name="widgets_tab_label" msgid="9145860100000983599">"Moduler"</string> + <string name="folders_tab_label" msgid="1145293785541489736">"Mapper"</string> + <string name="shortcuts_tab_label" msgid="8640731503933155644">"Mer"</string> + <string name="wallpapers_tab_label" msgid="1617804870364119879">"Bakgrunner"</string> + <string name="applications_tab_label" msgid="9046797126882613707">"Programsnarveier"</string> + <string name="wallpapers_temp_tab_text" msgid="1660218201190495279">"Dette er nå bakgrunnsfanen"</string> + <string name="all_apps_tab_all" msgid="2942727589595027258">"Alle"</string> + <string name="all_apps_tab_apps" msgid="5468972551904071712">"Programmer"</string> + <string name="all_apps_tab_games" msgid="1855736784923494918">"Spill"</string> + <string name="all_apps_tab_downloaded" msgid="2300935549064726963">"Nedlastet"</string> + <!-- no translation found for all_apps_no_games (5293893733372793696) --> + <skip /> + <!-- no translation found for all_apps_no_downloads (6145042636084482299) --> + <skip /> <string name="rename_folder_label" msgid="5646236631298452787">"Mappenavn"</string> <string name="rename_folder_title" msgid="4544573104191526550">"Gi nytt navn til mappe"</string> <string name="rename_action" msgid="6016003384693240896">"OK"</string> @@ -48,7 +62,7 @@ <string name="title_select_shortcut" msgid="2858897527672831763">"Velg snarvei"</string> <string name="title_select_application" msgid="8031072293115454221">"Velg program"</string> <string name="title_select_live_folder" msgid="3753447798805166749">"Velg mappe"</string> - <string name="all_apps_button_label" msgid="3953036962111614813">"Alle programmer"</string> + <string name="all_apps_button_label" msgid="2578400570124163469">"Programmer"</string> <string name="all_apps_home_button_label" msgid="1022222300329398558">"Startsiden"</string> <string name="menu_add" msgid="3065046628354640854">"Legg til"</string> <string name="menu_manage_apps" msgid="2308685199463588895">"Administrer programmer"</string> @@ -57,6 +71,12 @@ <string name="menu_notifications" msgid="6424587053194766192">"Varslinger"</string> <string name="menu_gestures" msgid="514678675575912237">"Bevegelser"</string> <string name="menu_settings" msgid="6233960148378443661">"Innstillinger"</string> + <string name="cab_menu_delete_app" msgid="1242619904941293871">"Avinstaller program"</string> + <string name="cab_menu_app_info" msgid="5180426909324882018">"Søknadsopplysninger"</string> + <string name="cab_app_selection_text" msgid="606113924828167756">"1 program valgt"</string> + <string name="cab_widget_selection_text" msgid="962527270506951955">"1 modul valgt"</string> + <string name="cab_folder_selection_text" msgid="8916111874189565067">"1 mappe valgt"</string> + <string name="cab_shortcut_selection_text" msgid="8115847384500412878">"1 snarvei valgt"</string> <string name="permlab_install_shortcut" msgid="1201690825493376489">"installere snarveier"</string> <string name="permdesc_install_shortcut" msgid="7429365847558984148">"Lar applikasjonen legge til snarveier uten å involvere brukeren."</string> <string name="permlab_uninstall_shortcut" msgid="7696645932555926449">"avinstallere snarveier"</string> @@ -66,4 +86,5 @@ <string name="permlab_write_settings" msgid="1360567537236705628">"skrive skrivebordsinnstillinger og -snarveier"</string> <string name="permdesc_write_settings" msgid="1098648778383349818">"Lar applikasjonen endre innstillinger og snarveier på skrivebordet."</string> <string name="gadget_error_text" msgid="8359351016167075858">"Problem under lasting av gadget"</string> + <string name="uninstall_system_app_text" msgid="7488523163288397451">"Dette er et systemprogram og kan ikke avinstalleres."</string> </resources> diff --git a/res/values-nl/strings.xml b/res/values-nl/strings.xml index 389e893..6562529 100644 --- a/res/values-nl/strings.xml +++ b/res/values-nl/strings.xml @@ -27,6 +27,20 @@ <string name="pick_wallpaper" msgid="5630222540525626723">"Achtergronden"</string> <string name="activity_not_found" msgid="3571057450431950427">"Deze toepassing is niet geïnstalleerd op uw telefoon."</string> <string name="configure_wallpaper" msgid="2820186271419674623">"Configureren..."</string> + <string name="widgets_tab_label" msgid="9145860100000983599">"Widgets"</string> + <string name="folders_tab_label" msgid="1145293785541489736">"Mappen"</string> + <string name="shortcuts_tab_label" msgid="8640731503933155644">"Meer"</string> + <string name="wallpapers_tab_label" msgid="1617804870364119879">"Achtergronden"</string> + <string name="applications_tab_label" msgid="9046797126882613707">"Toepassingssnelkoppelingen"</string> + <string name="wallpapers_temp_tab_text" msgid="1660218201190495279">"Dit wordt het tabblad \'Achtergronden\'"</string> + <string name="all_apps_tab_all" msgid="2942727589595027258">"Alle"</string> + <string name="all_apps_tab_apps" msgid="5468972551904071712">"Toepassingen"</string> + <string name="all_apps_tab_games" msgid="1855736784923494918">"Games"</string> + <string name="all_apps_tab_downloaded" msgid="2300935549064726963">"Gedownload"</string> + <!-- no translation found for all_apps_no_games (5293893733372793696) --> + <skip /> + <!-- no translation found for all_apps_no_downloads (6145042636084482299) --> + <skip /> <string name="rename_folder_label" msgid="5646236631298452787">"Mapnaam"</string> <string name="rename_folder_title" msgid="4544573104191526550">"Naam van map wijzigen"</string> <string name="rename_action" msgid="6016003384693240896">"OK"</string> @@ -48,7 +62,7 @@ <string name="title_select_shortcut" msgid="2858897527672831763">"Snelkoppeling selecteren"</string> <string name="title_select_application" msgid="8031072293115454221">"Toepassing selecteren"</string> <string name="title_select_live_folder" msgid="3753447798805166749">"Map selecteren"</string> - <string name="all_apps_button_label" msgid="3953036962111614813">"Alle toepassingen"</string> + <string name="all_apps_button_label" msgid="2578400570124163469">"Toepassingen"</string> <string name="all_apps_home_button_label" msgid="1022222300329398558">"Startpagina"</string> <string name="menu_add" msgid="3065046628354640854">"Toevoegen"</string> <string name="menu_manage_apps" msgid="2308685199463588895">"Toepassingen beheren"</string> @@ -57,6 +71,12 @@ <string name="menu_notifications" msgid="6424587053194766192">"Meldingen"</string> <string name="menu_gestures" msgid="514678675575912237">"Gebaren"</string> <string name="menu_settings" msgid="6233960148378443661">"Instellingen"</string> + <string name="cab_menu_delete_app" msgid="1242619904941293871">"Toepassing verwijderen"</string> + <string name="cab_menu_app_info" msgid="5180426909324882018">"Toepassingsdetails"</string> + <string name="cab_app_selection_text" msgid="606113924828167756">"1 toepassing geselecteerd"</string> + <string name="cab_widget_selection_text" msgid="962527270506951955">"1 widget geselecteerd"</string> + <string name="cab_folder_selection_text" msgid="8916111874189565067">"1 map geselecteerd"</string> + <string name="cab_shortcut_selection_text" msgid="8115847384500412878">"1 snelkoppeling geselecteerd"</string> <string name="permlab_install_shortcut" msgid="1201690825493376489">"snelkoppelingen installeren"</string> <string name="permdesc_install_shortcut" msgid="7429365847558984148">"Een toepassing toestaan om snelkoppelingen toe te voegen zonder tussenkomst van de gebruiker."</string> <string name="permlab_uninstall_shortcut" msgid="7696645932555926449">"snelkoppelingen verwijderen"</string> @@ -66,4 +86,5 @@ <string name="permlab_write_settings" msgid="1360567537236705628">"instellingen en snelkoppelingen voor de startpagina schrijven"</string> <string name="permdesc_write_settings" msgid="1098648778383349818">"Hiermee kan een toepassing de instellingen en snelkoppelingen op de startpagina wijzigen."</string> <string name="gadget_error_text" msgid="8359351016167075858">"Probleem bij het laden van widget"</string> + <string name="uninstall_system_app_text" msgid="7488523163288397451">"Dit is een systeemtoepassing die niet kan worden verwijderd."</string> </resources> diff --git a/res/values-pl/strings.xml b/res/values-pl/strings.xml index 019a016..f2ac81d 100644 --- a/res/values-pl/strings.xml +++ b/res/values-pl/strings.xml @@ -27,6 +27,20 @@ <string name="pick_wallpaper" msgid="5630222540525626723">"Tapety"</string> <string name="activity_not_found" msgid="3571057450431950427">"Aplikacja nie jest zainstalowana w telefonie."</string> <string name="configure_wallpaper" msgid="2820186271419674623">"Konfiguruj..."</string> + <string name="widgets_tab_label" msgid="9145860100000983599">"Widżety"</string> + <string name="folders_tab_label" msgid="1145293785541489736">"Foldery"</string> + <string name="shortcuts_tab_label" msgid="8640731503933155644">"Więcej"</string> + <string name="wallpapers_tab_label" msgid="1617804870364119879">"Tapety"</string> + <string name="applications_tab_label" msgid="9046797126882613707">"Skróty do aplikacji"</string> + <string name="wallpapers_temp_tab_text" msgid="1660218201190495279">"To będzie karta tapet"</string> + <string name="all_apps_tab_all" msgid="2942727589595027258">"Wszystkie"</string> + <string name="all_apps_tab_apps" msgid="5468972551904071712">"Aplikacje"</string> + <string name="all_apps_tab_games" msgid="1855736784923494918">"Gry"</string> + <string name="all_apps_tab_downloaded" msgid="2300935549064726963">"Pobrane"</string> + <!-- no translation found for all_apps_no_games (5293893733372793696) --> + <skip /> + <!-- no translation found for all_apps_no_downloads (6145042636084482299) --> + <skip /> <string name="rename_folder_label" msgid="5646236631298452787">"Nazwa folderu"</string> <string name="rename_folder_title" msgid="4544573104191526550">"Zmień nazwę folderu"</string> <string name="rename_action" msgid="6016003384693240896">"OK"</string> @@ -48,7 +62,7 @@ <string name="title_select_shortcut" msgid="2858897527672831763">"Wybierz skrót"</string> <string name="title_select_application" msgid="8031072293115454221">"Wybierz aplikację"</string> <string name="title_select_live_folder" msgid="3753447798805166749">"Wybierz folder"</string> - <string name="all_apps_button_label" msgid="3953036962111614813">"Wszystkie aplikacje"</string> + <string name="all_apps_button_label" msgid="2578400570124163469">"Aplikacje"</string> <string name="all_apps_home_button_label" msgid="1022222300329398558">"Ekran główny"</string> <string name="menu_add" msgid="3065046628354640854">"Dodaj"</string> <string name="menu_manage_apps" msgid="2308685199463588895">"Zarządzaj aplikacjami"</string> @@ -57,6 +71,12 @@ <string name="menu_notifications" msgid="6424587053194766192">"Powiadomienia"</string> <string name="menu_gestures" msgid="514678675575912237">"Gesty"</string> <string name="menu_settings" msgid="6233960148378443661">"Ustawienia"</string> + <string name="cab_menu_delete_app" msgid="1242619904941293871">"Odinstaluj aplikację"</string> + <string name="cab_menu_app_info" msgid="5180426909324882018">"Szczegóły aplikacji"</string> + <string name="cab_app_selection_text" msgid="606113924828167756">"Zaznaczono 1 aplikację"</string> + <string name="cab_widget_selection_text" msgid="962527270506951955">"Zaznaczono 1 widżet"</string> + <string name="cab_folder_selection_text" msgid="8916111874189565067">"Zaznaczono 1 folder"</string> + <string name="cab_shortcut_selection_text" msgid="8115847384500412878">"Zaznaczono 1 skrót"</string> <string name="permlab_install_shortcut" msgid="1201690825493376489">"zainstaluj skróty"</string> <string name="permdesc_install_shortcut" msgid="7429365847558984148">"Umożliwia aplikacji dodawanie skrótów bez interwencji użytkownika."</string> <string name="permlab_uninstall_shortcut" msgid="7696645932555926449">"odinstaluj skróty"</string> @@ -66,4 +86,5 @@ <string name="permlab_write_settings" msgid="1360567537236705628">"zapisywanie ustawień i skrótów strony głównej"</string> <string name="permdesc_write_settings" msgid="1098648778383349818">"Umożliwia aplikacji zmianę ustawień i skrótów strony głównej."</string> <string name="gadget_error_text" msgid="8359351016167075858">"Problem podczas ładowania widżetu"</string> + <string name="uninstall_system_app_text" msgid="7488523163288397451">"To jest aplikacja systemowa i nie można jej odinstalować."</string> </resources> diff --git a/res/values-pt-rPT/strings.xml b/res/values-pt-rPT/strings.xml index 73bf895..a3c432d 100644 --- a/res/values-pt-rPT/strings.xml +++ b/res/values-pt-rPT/strings.xml @@ -27,6 +27,20 @@ <string name="pick_wallpaper" msgid="5630222540525626723">"Imagens de fundo"</string> <string name="activity_not_found" msgid="3571057450431950427">"A aplicação não está instalada no telefone."</string> <string name="configure_wallpaper" msgid="2820186271419674623">"Configurar..."</string> + <string name="widgets_tab_label" msgid="9145860100000983599">"Widgets"</string> + <string name="folders_tab_label" msgid="1145293785541489736">"Pastas"</string> + <string name="shortcuts_tab_label" msgid="8640731503933155644">"Mais"</string> + <string name="wallpapers_tab_label" msgid="1617804870364119879">"Imagens de fundo"</string> + <string name="applications_tab_label" msgid="9046797126882613707">"Atalhos de aplicações"</string> + <string name="wallpapers_temp_tab_text" msgid="1660218201190495279">"Isto será o separador de imagens de fundo"</string> + <string name="all_apps_tab_all" msgid="2942727589595027258">"Todas"</string> + <string name="all_apps_tab_apps" msgid="5468972551904071712">"Aplicações"</string> + <string name="all_apps_tab_games" msgid="1855736784923494918">"Jogos"</string> + <string name="all_apps_tab_downloaded" msgid="2300935549064726963">"Transferidas"</string> + <!-- no translation found for all_apps_no_games (5293893733372793696) --> + <skip /> + <!-- no translation found for all_apps_no_downloads (6145042636084482299) --> + <skip /> <string name="rename_folder_label" msgid="5646236631298452787">"Nome da pasta"</string> <string name="rename_folder_title" msgid="4544573104191526550">"Mudar o nome da pasta"</string> <string name="rename_action" msgid="6016003384693240896">"OK"</string> @@ -48,7 +62,7 @@ <string name="title_select_shortcut" msgid="2858897527672831763">"Seleccione o atalho"</string> <string name="title_select_application" msgid="8031072293115454221">"Seleccionar aplicação"</string> <string name="title_select_live_folder" msgid="3753447798805166749">"Seleccione a pasta"</string> - <string name="all_apps_button_label" msgid="3953036962111614813">"Todas as aplicações"</string> + <string name="all_apps_button_label" msgid="2578400570124163469">"Aplicações"</string> <string name="all_apps_home_button_label" msgid="1022222300329398558">"Página inicial"</string> <string name="menu_add" msgid="3065046628354640854">"Adicionar"</string> <string name="menu_manage_apps" msgid="2308685199463588895">"Gerir aplicações"</string> @@ -57,6 +71,12 @@ <string name="menu_notifications" msgid="6424587053194766192">"Notificações"</string> <string name="menu_gestures" msgid="514678675575912237">"Gestos"</string> <string name="menu_settings" msgid="6233960148378443661">"Definições"</string> + <string name="cab_menu_delete_app" msgid="1242619904941293871">"Desinstalar aplicação"</string> + <string name="cab_menu_app_info" msgid="5180426909324882018">"Detalhes da aplicação"</string> + <string name="cab_app_selection_text" msgid="606113924828167756">"1 aplicação seleccionada"</string> + <string name="cab_widget_selection_text" msgid="962527270506951955">"1 widget seleccionado"</string> + <string name="cab_folder_selection_text" msgid="8916111874189565067">"1 pasta seleccionada"</string> + <string name="cab_shortcut_selection_text" msgid="8115847384500412878">"1 atalho seleccionado"</string> <string name="permlab_install_shortcut" msgid="1201690825493376489">"instalar atalhos"</string> <string name="permdesc_install_shortcut" msgid="7429365847558984148">"Permite que uma aplicação adicione atalhos sem a intervenção do utilizador."</string> <string name="permlab_uninstall_shortcut" msgid="7696645932555926449">"desinstalar atalhos"</string> @@ -66,4 +86,5 @@ <string name="permlab_write_settings" msgid="1360567537236705628">"escrever definições e atalhos do ecrã principal"</string> <string name="permdesc_write_settings" msgid="1098648778383349818">"Permite que uma aplicação altere as definições e os atalhos do ecrã principal."</string> <string name="gadget_error_text" msgid="8359351016167075858">"Erro ao carregar o widget"</string> + <string name="uninstall_system_app_text" msgid="7488523163288397451">"É uma aplicação de sistema e não pode ser desinstalada."</string> </resources> diff --git a/res/values-pt/strings.xml b/res/values-pt/strings.xml index c9cc6a9..3941c4f 100644 --- a/res/values-pt/strings.xml +++ b/res/values-pt/strings.xml @@ -27,6 +27,20 @@ <string name="pick_wallpaper" msgid="5630222540525626723">"Papéis de parede"</string> <string name="activity_not_found" msgid="3571057450431950427">"O aplicativo não está instalado no seu telefone."</string> <string name="configure_wallpaper" msgid="2820186271419674623">"Configurar..."</string> + <string name="widgets_tab_label" msgid="9145860100000983599">"Widgets"</string> + <string name="folders_tab_label" msgid="1145293785541489736">"Pastas"</string> + <string name="shortcuts_tab_label" msgid="8640731503933155644">"Mais"</string> + <string name="wallpapers_tab_label" msgid="1617804870364119879">"Papéis de parede"</string> + <string name="applications_tab_label" msgid="9046797126882613707">"Atalhos de aplicativo"</string> + <string name="wallpapers_temp_tab_text" msgid="1660218201190495279">"Esta será a guia de papéis de parede"</string> + <string name="all_apps_tab_all" msgid="2942727589595027258">"Todos"</string> + <string name="all_apps_tab_apps" msgid="5468972551904071712">"Aplicativos"</string> + <string name="all_apps_tab_games" msgid="1855736784923494918">"Jogos"</string> + <string name="all_apps_tab_downloaded" msgid="2300935549064726963">"Download concluído"</string> + <!-- no translation found for all_apps_no_games (5293893733372793696) --> + <skip /> + <!-- no translation found for all_apps_no_downloads (6145042636084482299) --> + <skip /> <string name="rename_folder_label" msgid="5646236631298452787">"Nome da pasta"</string> <string name="rename_folder_title" msgid="4544573104191526550">"Renomear pasta"</string> <string name="rename_action" msgid="6016003384693240896">"OK"</string> @@ -48,7 +62,7 @@ <string name="title_select_shortcut" msgid="2858897527672831763">"Selecionar atalho"</string> <string name="title_select_application" msgid="8031072293115454221">"Selecionar aplicativo"</string> <string name="title_select_live_folder" msgid="3753447798805166749">"Selecionar pasta"</string> - <string name="all_apps_button_label" msgid="3953036962111614813">"Todos os aplicativos"</string> + <string name="all_apps_button_label" msgid="2578400570124163469">"Aplicativos"</string> <string name="all_apps_home_button_label" msgid="1022222300329398558">"Página inicial"</string> <string name="menu_add" msgid="3065046628354640854">"Adicionar"</string> <string name="menu_manage_apps" msgid="2308685199463588895">"Gerenciar aplicativos"</string> @@ -57,6 +71,12 @@ <string name="menu_notifications" msgid="6424587053194766192">"Notificações"</string> <string name="menu_gestures" msgid="514678675575912237">"Gestos"</string> <string name="menu_settings" msgid="6233960148378443661">"Configurações"</string> + <string name="cab_menu_delete_app" msgid="1242619904941293871">"Desinstalar aplicativo"</string> + <string name="cab_menu_app_info" msgid="5180426909324882018">"Detalhes do aplicativo"</string> + <string name="cab_app_selection_text" msgid="606113924828167756">"Um aplicativo selecionado"</string> + <string name="cab_widget_selection_text" msgid="962527270506951955">"Um widget selecionado"</string> + <string name="cab_folder_selection_text" msgid="8916111874189565067">"Uma pasta selecionada"</string> + <string name="cab_shortcut_selection_text" msgid="8115847384500412878">"Um atalho selecionado"</string> <string name="permlab_install_shortcut" msgid="1201690825493376489">"instalar atalhos"</string> <string name="permdesc_install_shortcut" msgid="7429365847558984148">"Permite que um aplicativo adicione os atalhos sem a intervenção do usuário."</string> <string name="permlab_uninstall_shortcut" msgid="7696645932555926449">"desinstalar atalhos"</string> @@ -66,4 +86,5 @@ <string name="permlab_write_settings" msgid="1360567537236705628">"gravar configurações e atalhos da Página inicial"</string> <string name="permdesc_write_settings" msgid="1098648778383349818">"Permite que um aplicativo altere as configurações e atalhos na Página inicial."</string> <string name="gadget_error_text" msgid="8359351016167075858">"Problema ao carregar o widget"</string> + <string name="uninstall_system_app_text" msgid="7488523163288397451">"Este é um aplicativo do sistema e não pode ser desinstalado."</string> </resources> diff --git a/res/values-rm/strings.xml b/res/values-rm/strings.xml new file mode 100644 index 0000000..10cbc4a --- /dev/null +++ b/res/values-rm/strings.xml @@ -0,0 +1,109 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- +/* +* Copyright (C) 2008 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="application_name" msgid="8424725141379931883">"Lantschader"</string> + <string name="uid_name" msgid="3371120195364560632">"Applicaziuns da basa dad Android"</string> + <string name="folder_name" msgid="4588446541914685904">"Ordinatur"</string> + <string name="chooser_wallpaper" msgid="5988031014201479733">"Tscherner in fund davos"</string> + <string name="wallpaper_instructions" msgid="4215640646180727542">"Definir in fund davos"</string> + <string name="pick_wallpaper" msgid="5630222540525626723">"Maletgs da fund davos"</string> + <string name="activity_not_found" msgid="3571057450431950427">"L\'applicaziun n\'è betg installada sin quest telefonin."</string> + <string name="configure_wallpaper" msgid="2820186271419674623">"Configurar…"</string> + <!-- no translation found for widgets_tab_label (9145860100000983599) --> + <skip /> + <!-- no translation found for folders_tab_label (1145293785541489736) --> + <skip /> + <!-- no translation found for shortcuts_tab_label (8640731503933155644) --> + <skip /> + <!-- no translation found for wallpapers_tab_label (1617804870364119879) --> + <skip /> + <!-- no translation found for applications_tab_label (9046797126882613707) --> + <skip /> + <!-- no translation found for wallpapers_temp_tab_text (1660218201190495279) --> + <skip /> + <!-- no translation found for all_apps_tab_all (2942727589595027258) --> + <skip /> + <!-- no translation found for all_apps_tab_apps (5468972551904071712) --> + <skip /> + <!-- no translation found for all_apps_tab_games (1855736784923494918) --> + <skip /> + <!-- no translation found for all_apps_tab_downloaded (2300935549064726963) --> + <skip /> + <!-- no translation found for all_apps_no_games (5293893733372793696) --> + <skip /> + <!-- no translation found for all_apps_no_downloads (6145042636084482299) --> + <skip /> + <string name="rename_folder_label" msgid="5646236631298452787">"Num da l\'ordinatur"</string> + <string name="rename_folder_title" msgid="4544573104191526550">"Renumnar l\'ordinatur"</string> + <string name="rename_action" msgid="6016003384693240896">"OK"</string> + <string name="cancel_action" msgid="3811860427489435048">"Interrumper"</string> + <string name="menu_item_add_item" msgid="6233177331075781114">"Agiuntar al visur da partenza"</string> + <string name="group_applications" msgid="4118484163419674240">"Applicaziuns"</string> + <string name="group_shortcuts" msgid="9133529424900391877">"Scursanidas"</string> + <string name="group_folder" msgid="5143593791798929193">"Nov ordinatur"</string> + <string name="group_live_folders" msgid="2664945399140647217">"Ordinatur"</string> + <string name="group_widgets" msgid="6704978494073105844">"Widgets"</string> + <string name="group_wallpapers" msgid="1568191644272224858">"Funds davos"</string> + <string name="add_folder" msgid="3521088587367839879">"Ordinatur"</string> + <string name="add_clock" msgid="2337943840175865746">"Ura"</string> + <string name="add_photo_frame" msgid="3154058437359487954">"Rom da maletgs"</string> + <string name="out_of_space" msgid="8365249326091984698">"Nagin spazi liber sin il visur da partenza."</string> + <string name="shortcut_installed" msgid="7071557296331322355">"\"Creà ina scursanida \"\"<xliff:g id="NAME">%s</xliff:g>\"\".\""</string> + <string name="shortcut_uninstalled" msgid="2129499669449749995">"\"La scursanida \"\"<xliff:g id="NAME">%s</xliff:g>\"\" è vegnida stizzada.\""</string> + <string name="shortcut_duplicate" msgid="4757756326465060694">"\"La scursanida \"\"<xliff:g id="NAME">%s</xliff:g>\"\" exista gia.\""</string> + <string name="title_select_shortcut" msgid="2858897527672831763">"Tscherner ina cumbinaziun da tastas"</string> + <!-- no translation found for title_select_application (8031072293115454221) --> + <skip /> + <string name="title_select_live_folder" msgid="3753447798805166749">"Tscherner l\'ordinatur"</string> + <!-- outdated translation 3953036962111614813 --> <string name="all_apps_button_label" msgid="2578400570124163469">"Tut las applicaziuns"</string> + <string name="all_apps_home_button_label" msgid="1022222300329398558">"Pagina da partenza"</string> + <string name="menu_add" msgid="3065046628354640854">"Agiuntar"</string> + <!-- no translation found for menu_manage_apps (2308685199463588895) --> + <skip /> + <string name="menu_wallpaper" msgid="5837429080911269832">"Fund davos"</string> + <string name="menu_search" msgid="4826514464423239041">"Tschertgar"</string> + <string name="menu_notifications" msgid="6424587053194766192">"Avis"</string> + <string name="menu_gestures" msgid="514678675575912237">"Moviments"</string> + <string name="menu_settings" msgid="6233960148378443661">"Parameters"</string> + <!-- no translation found for cab_menu_delete_app (1242619904941293871) --> + <skip /> + <!-- no translation found for cab_menu_app_info (5180426909324882018) --> + <skip /> + <!-- no translation found for cab_app_selection_text (606113924828167756) --> + <skip /> + <!-- no translation found for cab_widget_selection_text (962527270506951955) --> + <skip /> + <!-- no translation found for cab_folder_selection_text (8916111874189565067) --> + <skip /> + <!-- no translation found for cab_shortcut_selection_text (8115847384500412878) --> + <skip /> + <string name="permlab_install_shortcut" msgid="1201690825493376489">"Installar scursanidas"</string> + <string name="permdesc_install_shortcut" msgid="7429365847558984148">"Pussibilitescha ch\'ina applicaziun agiunta scursanidas senza l\'intervenziun da l\'utilisader."</string> + <string name="permlab_uninstall_shortcut" msgid="7696645932555926449">"deinstallar scursanidas"</string> + <string name="permdesc_uninstall_shortcut" msgid="959972195916090900">"Pussibilitescha ch\'ina applicaziun possia stizzar scursanidas senza ina intervenziun da l\'utilisader."</string> + <string name="permlab_read_settings" msgid="3452408290738106747">"Leger ils parameters e las scursanidas da la pagina da partenza"</string> + <string name="permdesc_read_settings" msgid="8377434937176025492">"Pussibilitescha ch\'ina applicaziun possia leger ils parameters e las scursanidas da la pagina da partenza."</string> + <string name="permlab_write_settings" msgid="1360567537236705628">"Definir ils parameters e las scursanidas per la pagina da partenza"</string> + <string name="permdesc_write_settings" msgid="1098648778383349818">"Pussibilitescha ch\'ina applicaziun possia midar ils parameters e las scursanidas sin la pagina da partenza."</string> + <string name="gadget_error_text" msgid="8359351016167075858">"Problems cun chargiar il widget"</string> + <!-- no translation found for uninstall_system_app_text (7488523163288397451) --> + <skip /> +</resources> diff --git a/res/values-ru/strings.xml b/res/values-ru/strings.xml index b595cf6..fd5b35d 100644 --- a/res/values-ru/strings.xml +++ b/res/values-ru/strings.xml @@ -27,6 +27,20 @@ <string name="pick_wallpaper" msgid="5630222540525626723">"Обои"</string> <string name="activity_not_found" msgid="3571057450431950427">"Приложение не установлено на телефоне."</string> <string name="configure_wallpaper" msgid="2820186271419674623">"Настроить..."</string> + <string name="widgets_tab_label" msgid="9145860100000983599">"Виджеты"</string> + <string name="folders_tab_label" msgid="1145293785541489736">"Папки"</string> + <string name="shortcuts_tab_label" msgid="8640731503933155644">"Еще"</string> + <string name="wallpapers_tab_label" msgid="1617804870364119879">"Обои"</string> + <string name="applications_tab_label" msgid="9046797126882613707">"Ярлыки приложений"</string> + <string name="wallpapers_temp_tab_text" msgid="1660218201190495279">"Это будет вкладка обоев"</string> + <string name="all_apps_tab_all" msgid="2942727589595027258">"Все"</string> + <string name="all_apps_tab_apps" msgid="5468972551904071712">"Приложения"</string> + <string name="all_apps_tab_games" msgid="1855736784923494918">"Игры"</string> + <string name="all_apps_tab_downloaded" msgid="2300935549064726963">"Загруженные"</string> + <!-- no translation found for all_apps_no_games (5293893733372793696) --> + <skip /> + <!-- no translation found for all_apps_no_downloads (6145042636084482299) --> + <skip /> <string name="rename_folder_label" msgid="5646236631298452787">"Название папки"</string> <string name="rename_folder_title" msgid="4544573104191526550">"Переименовать папку"</string> <string name="rename_action" msgid="6016003384693240896">"ОК"</string> @@ -48,7 +62,7 @@ <string name="title_select_shortcut" msgid="2858897527672831763">"Выберите ярлык"</string> <string name="title_select_application" msgid="8031072293115454221">"Выбор приложения"</string> <string name="title_select_live_folder" msgid="3753447798805166749">"Выбор папки"</string> - <string name="all_apps_button_label" msgid="3953036962111614813">"Все приложения"</string> + <string name="all_apps_button_label" msgid="2578400570124163469">"Приложения"</string> <string name="all_apps_home_button_label" msgid="1022222300329398558">"Главная"</string> <string name="menu_add" msgid="3065046628354640854">"Добавить"</string> <string name="menu_manage_apps" msgid="2308685199463588895">"Управление приложениями"</string> @@ -57,6 +71,12 @@ <string name="menu_notifications" msgid="6424587053194766192">"Уведомления"</string> <string name="menu_gestures" msgid="514678675575912237">"Жесты"</string> <string name="menu_settings" msgid="6233960148378443661">"Настройки"</string> + <string name="cab_menu_delete_app" msgid="1242619904941293871">"Удалить приложение"</string> + <string name="cab_menu_app_info" msgid="5180426909324882018">"Сведения о приложении"</string> + <string name="cab_app_selection_text" msgid="606113924828167756">"Выбрано 1 приложение"</string> + <string name="cab_widget_selection_text" msgid="962527270506951955">"Выбран 1 виджет"</string> + <string name="cab_folder_selection_text" msgid="8916111874189565067">"Выбрана 1 папка"</string> + <string name="cab_shortcut_selection_text" msgid="8115847384500412878">"Выбран 1 ярлык"</string> <string name="permlab_install_shortcut" msgid="1201690825493376489">"устанавливать ярлыки"</string> <string name="permdesc_install_shortcut" msgid="7429365847558984148">"Позволяет приложению добавлять ярлыки без вмешательства пользователя"</string> <string name="permlab_uninstall_shortcut" msgid="7696645932555926449">"удалять ярлыки"</string> @@ -66,4 +86,5 @@ <string name="permlab_write_settings" msgid="1360567537236705628">"изменять настройки и ярлыки главного экрана"</string> <string name="permdesc_write_settings" msgid="1098648778383349818">"Позволяет приложению изменять настройки и ярлыки на главном экране."</string> <string name="gadget_error_text" msgid="8359351016167075858">"Не удалось загрузить виджет"</string> + <string name="uninstall_system_app_text" msgid="7488523163288397451">"Это системное приложение. Удалить его невозможно."</string> </resources> diff --git a/res/values-sv/strings.xml b/res/values-sv/strings.xml index 079a141..17a6cdc 100644 --- a/res/values-sv/strings.xml +++ b/res/values-sv/strings.xml @@ -27,6 +27,20 @@ <string name="pick_wallpaper" msgid="5630222540525626723">"Bakgrundsbilder"</string> <string name="activity_not_found" msgid="3571057450431950427">"Programmet är inte installerat på din telefon."</string> <string name="configure_wallpaper" msgid="2820186271419674623">"Konfigurera..."</string> + <string name="widgets_tab_label" msgid="9145860100000983599">"Widgetar"</string> + <string name="folders_tab_label" msgid="1145293785541489736">"Mappar"</string> + <string name="shortcuts_tab_label" msgid="8640731503933155644">"Mer"</string> + <string name="wallpapers_tab_label" msgid="1617804870364119879">"Bakgrundsbilder"</string> + <string name="applications_tab_label" msgid="9046797126882613707">"Genvägar för appar"</string> + <string name="wallpapers_temp_tab_text" msgid="1660218201190495279">"Det här kommer att vara fliken för bakgrundsbilder"</string> + <string name="all_apps_tab_all" msgid="2942727589595027258">"Alla"</string> + <string name="all_apps_tab_apps" msgid="5468972551904071712">"Program"</string> + <string name="all_apps_tab_games" msgid="1855736784923494918">"Spel"</string> + <string name="all_apps_tab_downloaded" msgid="2300935549064726963">"Hämtade"</string> + <!-- no translation found for all_apps_no_games (5293893733372793696) --> + <skip /> + <!-- no translation found for all_apps_no_downloads (6145042636084482299) --> + <skip /> <string name="rename_folder_label" msgid="5646236631298452787">"Mappnamn"</string> <string name="rename_folder_title" msgid="4544573104191526550">"Byt namn på mapp"</string> <string name="rename_action" msgid="6016003384693240896">"OK"</string> @@ -48,7 +62,7 @@ <string name="title_select_shortcut" msgid="2858897527672831763">"Välj genväg"</string> <string name="title_select_application" msgid="8031072293115454221">"Välj program"</string> <string name="title_select_live_folder" msgid="3753447798805166749">"Välj mapp"</string> - <string name="all_apps_button_label" msgid="3953036962111614813">"Alla program"</string> + <string name="all_apps_button_label" msgid="2578400570124163469">"Program"</string> <string name="all_apps_home_button_label" msgid="1022222300329398558">"Startsida"</string> <string name="menu_add" msgid="3065046628354640854">"Lägg till"</string> <string name="menu_manage_apps" msgid="2308685199463588895">"Hantera appar"</string> @@ -57,6 +71,12 @@ <string name="menu_notifications" msgid="6424587053194766192">"Aviseringar"</string> <string name="menu_gestures" msgid="514678675575912237">"Gester"</string> <string name="menu_settings" msgid="6233960148378443661">"Inställningar"</string> + <string name="cab_menu_delete_app" msgid="1242619904941293871">"Avinstallera program"</string> + <string name="cab_menu_app_info" msgid="5180426909324882018">"Programinformation"</string> + <string name="cab_app_selection_text" msgid="606113924828167756">"1 program har valts"</string> + <string name="cab_widget_selection_text" msgid="962527270506951955">"1 widget vald"</string> + <string name="cab_folder_selection_text" msgid="8916111874189565067">"1 mapp vald"</string> + <string name="cab_shortcut_selection_text" msgid="8115847384500412878">"1 genväg har valts"</string> <string name="permlab_install_shortcut" msgid="1201690825493376489">"installera genvägar"</string> <string name="permdesc_install_shortcut" msgid="7429365847558984148">"Tillåter att ett program lägger till genvägar utan åtgärd från användaren."</string> <string name="permlab_uninstall_shortcut" msgid="7696645932555926449">"avinstallera genvägar"</string> @@ -66,4 +86,5 @@ <string name="permlab_write_settings" msgid="1360567537236705628">"skriva inställningar och genvägar för startsidan"</string> <string name="permdesc_write_settings" msgid="1098648778383349818">"Tillåter att ett program ändrar inställningar och genvägar på startsidan."</string> <string name="gadget_error_text" msgid="8359351016167075858">"Det gick inte att läsa in widgeten"</string> + <string name="uninstall_system_app_text" msgid="7488523163288397451">"Det här är ett systemprogram och kan inte avinstalleras."</string> </resources> diff --git a/res/values-tr/strings.xml b/res/values-tr/strings.xml index 3e23c32..19417f0 100644 --- a/res/values-tr/strings.xml +++ b/res/values-tr/strings.xml @@ -27,6 +27,20 @@ <string name="pick_wallpaper" msgid="5630222540525626723">"Duvar Kağıtları"</string> <string name="activity_not_found" msgid="3571057450431950427">"Uygulama telefonunuza yüklenmemiş."</string> <string name="configure_wallpaper" msgid="2820186271419674623">"Yapılandır..."</string> + <string name="widgets_tab_label" msgid="9145860100000983599">"Widget\'lar"</string> + <string name="folders_tab_label" msgid="1145293785541489736">"Klasörler"</string> + <string name="shortcuts_tab_label" msgid="8640731503933155644">"Diğer"</string> + <string name="wallpapers_tab_label" msgid="1617804870364119879">"Duvar Kağıtları"</string> + <string name="applications_tab_label" msgid="9046797126882613707">"Uygulama Kısayolları"</string> + <string name="wallpapers_temp_tab_text" msgid="1660218201190495279">"Bu duvar kağıdı sekmesi olacaktır"</string> + <string name="all_apps_tab_all" msgid="2942727589595027258">"Tümü"</string> + <string name="all_apps_tab_apps" msgid="5468972551904071712">"Uygulamalar"</string> + <string name="all_apps_tab_games" msgid="1855736784923494918">"Oyunlar"</string> + <string name="all_apps_tab_downloaded" msgid="2300935549064726963">"İndirilenler"</string> + <!-- no translation found for all_apps_no_games (5293893733372793696) --> + <skip /> + <!-- no translation found for all_apps_no_downloads (6145042636084482299) --> + <skip /> <string name="rename_folder_label" msgid="5646236631298452787">"Klasör adı"</string> <string name="rename_folder_title" msgid="4544573104191526550">"Klasörü yeniden adlandır"</string> <string name="rename_action" msgid="6016003384693240896">"Tamam"</string> @@ -48,7 +62,7 @@ <string name="title_select_shortcut" msgid="2858897527672831763">"Kısayolu seçin"</string> <string name="title_select_application" msgid="8031072293115454221">"Uygulama seç"</string> <string name="title_select_live_folder" msgid="3753447798805166749">"Klasörü seçin"</string> - <string name="all_apps_button_label" msgid="3953036962111614813">"Tüm uygulamalar"</string> + <string name="all_apps_button_label" msgid="2578400570124163469">"Uygulamalar"</string> <string name="all_apps_home_button_label" msgid="1022222300329398558">"Ana Sayfa"</string> <string name="menu_add" msgid="3065046628354640854">"Ekle"</string> <string name="menu_manage_apps" msgid="2308685199463588895">"Uyglm yönet"</string> @@ -57,6 +71,12 @@ <string name="menu_notifications" msgid="6424587053194766192">"Bildirimler"</string> <string name="menu_gestures" msgid="514678675575912237">"Hareketler"</string> <string name="menu_settings" msgid="6233960148378443661">"Ayarlar"</string> + <string name="cab_menu_delete_app" msgid="1242619904941293871">"Uygulamanın yüklemesini kaldır"</string> + <string name="cab_menu_app_info" msgid="5180426909324882018">"Uygulama ayrıntıları"</string> + <string name="cab_app_selection_text" msgid="606113924828167756">"1 uygulama seçildi"</string> + <string name="cab_widget_selection_text" msgid="962527270506951955">"1 widget seçildi"</string> + <string name="cab_folder_selection_text" msgid="8916111874189565067">"1 klasör seçildi"</string> + <string name="cab_shortcut_selection_text" msgid="8115847384500412878">"1 kısayol seçildi"</string> <string name="permlab_install_shortcut" msgid="1201690825493376489">"kısayolları yükle"</string> <string name="permdesc_install_shortcut" msgid="7429365847558984148">"Bir uygulamaya, kısayolları kullanıcı müdahale etmeden ekleme izni verir."</string> <string name="permlab_uninstall_shortcut" msgid="7696645932555926449">"kısayolları kaldır"</string> @@ -66,4 +86,5 @@ <string name="permlab_write_settings" msgid="1360567537236705628">"Ana Sayfa ayarlarını ve kısayollarını yaz"</string> <string name="permdesc_write_settings" msgid="1098648778383349818">"Bir uygulamaya Ana Sayfadaki ayarları ve kısayolları değiştirme izni verir."</string> <string name="gadget_error_text" msgid="8359351016167075858">"Widget yüklenirken sorun oluştu"</string> + <string name="uninstall_system_app_text" msgid="7488523163288397451">"Bu bir sistem uygulamasıdır ve kaldırılamaz."</string> </resources> diff --git a/res/values-xlarge-land/dimens.xml b/res/values-xlarge-land/dimens.xml new file mode 100644 index 0000000..db31cf1 --- /dev/null +++ b/res/values-xlarge-land/dimens.xml @@ -0,0 +1,25 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2010 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> + <!-- the area at the edge of the screen that makes the workspace go left + or right while you're dragging. --> + <dimen name="scroll_zone">160dip</dimen> + + <!-- Width/height gap overrides for the workspace --> + <dimen name="workspace_width_gap">16dp</dimen> + <dimen name="workspace_height_gap">5dp</dimen> +</resources>
\ No newline at end of file diff --git a/res/values-xlarge-port/dimens.xml b/res/values-xlarge-port/dimens.xml new file mode 100644 index 0000000..baa31aa --- /dev/null +++ b/res/values-xlarge-port/dimens.xml @@ -0,0 +1,25 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2010 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> + <!-- the area at the edge of the screen that makes the workspace go left + or right while you're dragging. --> + <dimen name="scroll_zone">40dp</dimen> + + <!-- Width/height gap overrides for the workspace --> + <dimen name="workspace_width_gap">0dp</dimen> + <dimen name="workspace_height_gap">32dp</dimen> +</resources>
\ No newline at end of file diff --git a/res/values-xlarge/config.xml b/res/values-xlarge/config.xml new file mode 100644 index 0000000..6a56679 --- /dev/null +++ b/res/values-xlarge/config.xml @@ -0,0 +1,48 @@ +<resources> + <!-- NOTE: Many of the all apps values here are also used for the customization drawer --> + + <!-- Duration in milliseconds of the all apps zoom-in animation. --> + <!-- NB: This should be less than the workspaceShrinkTime as they happen together. --> + <integer name="config_allAppsZoomInTime">350</integer> + + <!-- Duration in milliseconds of the all apps zoom-out animation --> + <!-- NB: This should be less than the workspaceUnshrinkTime as they happen together. --> + <integer name="config_allAppsZoomOutTime">350</integer> + + <!-- Scaling factor used in the all apps zooming animations --> + <integer name="config_allAppsZoomScaleFactor">5</integer> + + <!-- The extra distance off-screen that all apps appears from --> + <integer name="config_allAppsVerticalOffset">200</integer> + + <!-- Duration in milliseconds of the animations between all apps, customize, & home. + NOTE: If these are changed, the toolbar animation times below should also be. --> + <integer name="config_allAppsCameraPanTime">700</integer> + <integer name="config_workspaceShrinkTime">700</integer> + <integer name="config_workspaceUnshrinkTime">700</integer> + + <!-- Duration in milliseconds toolbar fade in and fade out animations. + NOTE: Fade in and fade out time should together be less the transition + animations between all apps, customize, & the workspace. --> + <integer name="config_toolbarButtonFadeInTime">350</integer> + <integer name="config_toolbarButtonFadeOutTime">350</integer> + + <!-- When dragging items on the workspace, how much bigger (in pixels) the dragged view + should be, as compared to the original view. If 0, it will not be scaled at all. + Should be an even number, for pixel alignment. --> + <integer name="config_dragViewExtraPixels">0</integer> + + <!-- When dragging items on the workspace, the number of pixels by which the position of + the drag view should be offset from the position of the original view. --> + <integer name="config_dragViewOffsetX">0</integer> + <integer name="config_dragViewOffsetY">12</integer> + + <!-- When items are dropped on the mini screens in customize mode, we have a bounce animation + of the bright green hover outline, and then fade out the outline at the end. These are + the values used in that animation --> + <integer name="config_screenOnDropScalePercent">120</integer> + <integer name="config_screenOnDropScaleUpDuration">200</integer> + <integer name="config_screenOnDropScaleDownDuration">200</integer> + <integer name="config_screenOnDropAlphaFadeDelay">350</integer> + <integer name="config_screenOnDropAlphaFadeDuration">50</integer> +</resources> diff --git a/res/values-xlarge/dimens.xml b/res/values-xlarge/dimens.xml new file mode 100644 index 0000000..667f0e3 --- /dev/null +++ b/res/values-xlarge/dimens.xml @@ -0,0 +1,48 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2009 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<resources> + <dimen name="workspace_cell_width">96dip</dimen> + <dimen name="workspace_cell_height">96dip</dimen> + + <!-- Width/height gap overrides for the workspace --> + <dimen name="workspace_width_gap">0dp</dimen> + <dimen name="workspace_height_gap">0dp</dimen> + + <!-- The corner radius to draw the external drop icon rounded rect --> + <dimen name="external_drop_icon_rect_radius">10dp</dimen> + + <!-- Size of icons in workspace --> + <dimen name="app_icon_size">72dp</dimen> + + <!-- extra horizontal spacing between mini screen thumbnails ie. in all + apps and in customization mode --> + <dimen name="smallScreenExtraSpacing">0dip</dimen> + + <!-- Vertical spacing between edge of screen and mini cell layouts when they + are minimized to the bottom in all apps --> + <dimen name="allAppsSmallScreenVerticalMarginLandscape">30dip</dimen> + <dimen name="allAppsSmallScreenVerticalMarginPortrait">60dip</dimen> + + <!-- Vertical spacing between edge of screen and mini cell layouts when they + are minimized to the top when the customization drawer is showing --> + <dimen name="customizeSmallScreenVerticalMarginLandscape">90dip</dimen> + <dimen name="customizeSmallScreenVerticalMarginPortrait">180dip</dimen> + + <dimen name="toolbar_padding">10dip</dimen> + + <dimen name="toolbar_button_spacing">20dip</dimen> +</resources> diff --git a/res/values-xlarge/styles.xml b/res/values-xlarge/styles.xml new file mode 100644 index 0000000..83cdbcc --- /dev/null +++ b/res/values-xlarge/styles.xml @@ -0,0 +1,39 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- +/* +* Copyright (C) 2008 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> + <style name="Theme" parent="android:Theme.Holo"> + <item name="android:windowNoTitle">true</item> + <item name="android:windowActionModeOverlay">true</item> + + <item name="android:windowBackground">@android:color/transparent</item> + <item name="android:colorBackgroundCacheHint">@null</item> + <item name="android:windowShowWallpaper">true</item> + </style> + + <style name="WorkspaceIcon.Portrait"> + <item name="android:drawablePadding">0dip</item> + <item name="android:paddingTop">0dip</item> + </style> + + <style name="WorkspaceIcon.Landscape"> + <item name="android:drawablePadding">0dip</item> + <item name="android:paddingTop">0dip</item> + </style> +</resources> diff --git a/res/values-xlarge/wallpapers.xml b/res/values-xlarge/wallpapers.xml new file mode 100644 index 0000000..f22654d --- /dev/null +++ b/res/values-xlarge/wallpapers.xml @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + * Copyright (C) 2009 Google Inc. + * + * 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> + <string-array name="wallpapers" translatable="false"> + <item>glow_wallpaper</item> + </string-array> +</resources> diff --git a/res/values-zh-rCN/strings.xml b/res/values-zh-rCN/strings.xml index 41ffac3..751474b 100644 --- a/res/values-zh-rCN/strings.xml +++ b/res/values-zh-rCN/strings.xml @@ -27,6 +27,20 @@ <string name="pick_wallpaper" msgid="5630222540525626723">"壁纸"</string> <string name="activity_not_found" msgid="3571057450431950427">"您的手机上未安装应用程序。"</string> <string name="configure_wallpaper" msgid="2820186271419674623">"配置..."</string> + <string name="widgets_tab_label" msgid="9145860100000983599">"窗口小部件"</string> + <string name="folders_tab_label" msgid="1145293785541489736">"文件夹"</string> + <string name="shortcuts_tab_label" msgid="8640731503933155644">"更多"</string> + <string name="wallpapers_tab_label" msgid="1617804870364119879">"壁纸"</string> + <string name="applications_tab_label" msgid="9046797126882613707">"应用程序快捷方式"</string> + <string name="wallpapers_temp_tab_text" msgid="1660218201190495279">"这将会成为壁纸标签"</string> + <string name="all_apps_tab_all" msgid="2942727589595027258">"全部"</string> + <string name="all_apps_tab_apps" msgid="5468972551904071712">"应用程序"</string> + <string name="all_apps_tab_games" msgid="1855736784923494918">"游戏"</string> + <string name="all_apps_tab_downloaded" msgid="2300935549064726963">"已下载"</string> + <!-- no translation found for all_apps_no_games (5293893733372793696) --> + <skip /> + <!-- no translation found for all_apps_no_downloads (6145042636084482299) --> + <skip /> <string name="rename_folder_label" msgid="5646236631298452787">"文件夹名称"</string> <string name="rename_folder_title" msgid="4544573104191526550">"重命名文件夹"</string> <string name="rename_action" msgid="6016003384693240896">"确定"</string> @@ -48,7 +62,7 @@ <string name="title_select_shortcut" msgid="2858897527672831763">"选择快捷方式"</string> <string name="title_select_application" msgid="8031072293115454221">"选择应用程序"</string> <string name="title_select_live_folder" msgid="3753447798805166749">"选择文件夹"</string> - <string name="all_apps_button_label" msgid="3953036962111614813">"所有应用程序"</string> + <string name="all_apps_button_label" msgid="2578400570124163469">"应用程序"</string> <string name="all_apps_home_button_label" msgid="1022222300329398558">"主屏幕"</string> <string name="menu_add" msgid="3065046628354640854">"添加"</string> <string name="menu_manage_apps" msgid="2308685199463588895">"管理应用程序"</string> @@ -57,6 +71,12 @@ <string name="menu_notifications" msgid="6424587053194766192">"通知"</string> <string name="menu_gestures" msgid="514678675575912237">"手势"</string> <string name="menu_settings" msgid="6233960148378443661">"设置"</string> + <string name="cab_menu_delete_app" msgid="1242619904941293871">"卸载应用程序"</string> + <string name="cab_menu_app_info" msgid="5180426909324882018">"应用程序详细信息"</string> + <string name="cab_app_selection_text" msgid="606113924828167756">"已选中 1 个应用程序"</string> + <string name="cab_widget_selection_text" msgid="962527270506951955">"已选中 1 个窗口小部件"</string> + <string name="cab_folder_selection_text" msgid="8916111874189565067">"已选中 1 个文件夹"</string> + <string name="cab_shortcut_selection_text" msgid="8115847384500412878">"已选中 1 个快捷方式"</string> <string name="permlab_install_shortcut" msgid="1201690825493376489">"安装快捷方式"</string> <string name="permdesc_install_shortcut" msgid="7429365847558984148">"允许应用程序在没有用户介入的情况下添加快捷方式。"</string> <string name="permlab_uninstall_shortcut" msgid="7696645932555926449">"卸载快捷方式"</string> @@ -66,4 +86,5 @@ <string name="permlab_write_settings" msgid="1360567537236705628">"写入主屏幕的设置和快捷方式"</string> <string name="permdesc_write_settings" msgid="1098648778383349818">"允许应用程序更改主屏幕的设置和快捷方式。"</string> <string name="gadget_error_text" msgid="8359351016167075858">"载入窗口小部件时出现问题"</string> + <string name="uninstall_system_app_text" msgid="7488523163288397451">"这是系统应用程序,无法卸载。"</string> </resources> diff --git a/res/values-zh-rTW/strings.xml b/res/values-zh-rTW/strings.xml index 9b01727..824ec64 100644 --- a/res/values-zh-rTW/strings.xml +++ b/res/values-zh-rTW/strings.xml @@ -27,6 +27,20 @@ <string name="pick_wallpaper" msgid="5630222540525626723">"桌布"</string> <string name="activity_not_found" msgid="3571057450431950427">"應用程式未安裝到手機。"</string> <string name="configure_wallpaper" msgid="2820186271419674623">"設定..."</string> + <string name="widgets_tab_label" msgid="9145860100000983599">"小工具"</string> + <string name="folders_tab_label" msgid="1145293785541489736">"資料夾"</string> + <string name="shortcuts_tab_label" msgid="8640731503933155644">"更多選項"</string> + <string name="wallpapers_tab_label" msgid="1617804870364119879">"桌布"</string> + <string name="applications_tab_label" msgid="9046797126882613707">"應用程式捷徑"</string> + <string name="wallpapers_temp_tab_text" msgid="1660218201190495279">"桌布標籤保留位"</string> + <string name="all_apps_tab_all" msgid="2942727589595027258">"全部"</string> + <string name="all_apps_tab_apps" msgid="5468972551904071712">"應用程式"</string> + <string name="all_apps_tab_games" msgid="1855736784923494918">"遊戲"</string> + <string name="all_apps_tab_downloaded" msgid="2300935549064726963">"下載內容"</string> + <!-- no translation found for all_apps_no_games (5293893733372793696) --> + <skip /> + <!-- no translation found for all_apps_no_downloads (6145042636084482299) --> + <skip /> <string name="rename_folder_label" msgid="5646236631298452787">"資料夾名稱"</string> <string name="rename_folder_title" msgid="4544573104191526550">"重新命名資料夾"</string> <string name="rename_action" msgid="6016003384693240896">"確定"</string> @@ -48,7 +62,7 @@ <string name="title_select_shortcut" msgid="2858897527672831763">"選取捷徑"</string> <string name="title_select_application" msgid="8031072293115454221">"選取應用程式"</string> <string name="title_select_live_folder" msgid="3753447798805166749">"選取資料夾"</string> - <string name="all_apps_button_label" msgid="3953036962111614813">"所有應用程式"</string> + <string name="all_apps_button_label" msgid="2578400570124163469">"應用程式"</string> <string name="all_apps_home_button_label" msgid="1022222300329398558">"主螢幕"</string> <string name="menu_add" msgid="3065046628354640854">"新增"</string> <string name="menu_manage_apps" msgid="2308685199463588895">"管理應用程式"</string> @@ -57,6 +71,12 @@ <string name="menu_notifications" msgid="6424587053194766192">"通知"</string> <string name="menu_gestures" msgid="514678675575912237">"觸控動作"</string> <string name="menu_settings" msgid="6233960148378443661">"設定"</string> + <string name="cab_menu_delete_app" msgid="1242619904941293871">"解除安裝應用程式"</string> + <string name="cab_menu_app_info" msgid="5180426909324882018">"應用程式詳細資料"</string> + <string name="cab_app_selection_text" msgid="606113924828167756">"已選取 1 個應用程式"</string> + <string name="cab_widget_selection_text" msgid="962527270506951955">"已選取 1 個小工具"</string> + <string name="cab_folder_selection_text" msgid="8916111874189565067">"已選取 1 個資料夾"</string> + <string name="cab_shortcut_selection_text" msgid="8115847384500412878">"已選取 1 個捷徑"</string> <string name="permlab_install_shortcut" msgid="1201690825493376489">"安裝捷徑"</string> <string name="permdesc_install_shortcut" msgid="7429365847558984148">"允許應用程式自動新增快速鍵。"</string> <string name="permlab_uninstall_shortcut" msgid="7696645932555926449">"解除安裝捷徑"</string> @@ -66,4 +86,5 @@ <string name="permlab_write_settings" msgid="1360567537236705628">"寫入首頁設定和捷徑"</string> <string name="permdesc_write_settings" msgid="1098648778383349818">"允許應用程式變更首頁中的設定和捷徑。"</string> <string name="gadget_error_text" msgid="8359351016167075858">"載入小工具時發生問題"</string> + <string name="uninstall_system_app_text" msgid="7488523163288397451">"這是系統應用程式,無法將其解除安裝。"</string> </resources> diff --git a/res/values/attrs.xml b/res/values/attrs.xml index 7839120..5d6773c 100644 --- a/res/values/attrs.xml +++ b/res/values/attrs.xml @@ -32,6 +32,10 @@ <declare-styleable name="Workspace"> <!-- The first screen the workspace should display. --> <attr name="defaultScreen" format="integer" /> + <!-- The number of horizontal cells in the CellLayout --> + <attr name="cellCountX" format="integer" /> + <!-- The number of vertical cells in the CellLayout --> + <attr name="cellCountY" format="integer" /> </declare-styleable> <!-- CellLayout specific attributes. These attributes are used to customize @@ -42,17 +46,67 @@ <!-- The height of a single cell --> <attr name="cellHeight" format="dimension" /> <!-- Padding to apply at the start of the long axis --> - <attr name="longAxisStartPadding" format="dimension" /> + <attr name="xAxisStartPadding" format="dimension" /> <!-- Padding to apply at the end of the long axis --> - <attr name="longAxisEndPadding" format="dimension" /> + <attr name="xAxisEndPadding" format="dimension" /> <!-- Padding to apply at the start of the short axis --> - <attr name="shortAxisStartPadding" format="dimension" /> + <attr name="yAxisStartPadding" format="dimension" /> <!-- Padding to apply at the end of the short axis --> - <attr name="shortAxisEndPadding" format="dimension" /> - <!-- Number of cells on the short axis of the CellLayout --> - <attr name="shortAxisCells" format="integer" /> - <!-- Number of cells on the long axis of the CellLayout --> - <attr name="longAxisCells" format="integer" /> + <attr name="yAxisEndPadding" format="dimension" /> + <!-- An override for the width and height gap to allow users to specify + a specific size for the page using spacing instead of resolving the + spacing from the width of the page --> + <attr name="widthGap" format="dimension" /> + <attr name="heightGap" format="dimension" /> + + </declare-styleable> + + <!-- PagedViewIcon specific attributes. These attributes are used to customize + a PagedViewIcon view in XML files. --> + <declare-styleable name="PagedViewIcon"> + <!-- The blur color of the holographic outline --> + <attr name="blurColor" format="color" /> + <!-- The outline color of the holographic outline --> + <attr name="outlineColor" format="color" /> + <!-- The checked blur color of the holographic outline --> + <attr name="checkedBlurColor" format="color" /> + <!-- The checked outline color of the holographic outline --> + <attr name="checkedOutlineColor" format="color" /> + </declare-styleable> + + <!-- PagedViewWidgetIcon specific attributes. These attributes are used to + customize a PagedViewWidgetIcon view in XML files. --> + <declare-styleable name="PagedViewWidgetIcon"> + <!-- The checked blur color of the holographic outline --> + <attr name="checkedBlurColor" /> + <!-- The checked outline color of the holographic outline --> + <attr name="checkedOutlineColor" /> + </declare-styleable> + + <!-- PagedView specific attributes. These attributes are used to customize + a PagedView view in XML files. --> + <declare-styleable name="PagedView"> + <!-- The number of horizontal cells in a page --> + <attr name="cellCountX" /> + <!-- The number of vertical cells in a page --> + <attr name="cellCountY" /> + <!-- A spacing override for the icons within a page --> + <attr name="pageLayoutWidthGap" format="dimension" /> + <attr name="pageLayoutHeightGap" format="dimension" /> + <!-- The padding of the pages that are dynamically created per page --> + <attr name="pageLayoutPaddingTop" format="dimension" /> + <attr name="pageLayoutPaddingBottom" format="dimension" /> + <attr name="pageLayoutPaddingLeft" format="dimension" /> + <attr name="pageLayoutPaddingRight" format="dimension" /> + <!-- The space between adjacent pages of the PagedView. --> + <attr name="pageSpacing" format="dimension" /> + </declare-styleable> + + <!-- CustomizePagedView specific attributes. These attributes are used to customize + a CustomizePagedView view in XML files. --> + <declare-styleable name="CustomizePagedView"> + <!-- The number of horizontal cells for the widget tab --> + <attr name="widgetCellCountX" format="integer" /> </declare-styleable> <!-- DeleteZone specific attributes. These attributes are used to customize diff --git a/res/values/colors.xml b/res/values/colors.xml index 9b9700f..3e964c4 100644 --- a/res/values/colors.xml +++ b/res/values/colors.xml @@ -28,4 +28,9 @@ <color name="gesture_color">#ff0563c1</color> <color name="uncertain_gesture_color">#ff848484</color> + + <color name="app_info_filter">#A50000FE</color> + <color name="dimmed_view_color">#FF7F7F7F</color> + + <color name="drag_outline_color">#9DBE12</color> </resources> diff --git a/res/values/config.xml b/res/values/config.xml index 15ec05b..9350ad1 100644 --- a/res/values/config.xml +++ b/res/values/config.xml @@ -3,4 +3,33 @@ <integer name="config_allAppsFadeOutTime">700</integer> <integer name="config_allAppsBatchLoadDelay">0</integer> <integer name="config_allAppsBatchSize">0</integer> + <bool name="config_hardwareAccelerated">false</bool> + + <integer name="config_crosshairsFadeInTime">600</integer> + + <!-- When dragging an item on the workspace, how much bigger (in pixels) the dragged view + should be, as compared to the original view. If 0, it will not be scaled at all. + Should be an even number, for pixel alignment. --> + <integer name="config_dragViewExtraPixels">40</integer> + + <!-- When dragging items on the workspace, the number of pixels by which the position of + the drag view should be offset from the position of the original view. + Setting to 1/2 of config_dragViewExtraPixels keeps it centered on its old position. --> + <integer name="config_dragViewOffsetX">20</integer> + <integer name="config_dragViewOffsetY">20</integer> + + <!-- The duration (in ms) of the fade animation on the object outlines, used when + we are dragging objects around on the home screen. --> + <integer name="config_dragOutlineFadeTime">900</integer> + + <!-- The alpha value at which to show the most recent drop visualization outline. --> + <integer name="config_dragOutlineMaxAlpha">128</integer> + + <!-- Parameters controlling the animation for when an item is dropped on the home screen, + and it animates from its old position to the new one. --> + + <integer name="config_dropAnimMaxDuration">400</integer> + + <!-- The distance at which the animation should take the max duration --> + <integer name="config_dropAnimMaxDist">800</integer> </resources> diff --git a/res/values/dimens.xml b/res/values/dimens.xml index c83986b..d6cd3ee 100644 --- a/res/values/dimens.xml +++ b/res/values/dimens.xml @@ -32,6 +32,9 @@ button cluster in landscape) --> <dimen name="half_status_bar_height">12dip</dimen> + <!-- Size of icons in workspace --> + <dimen name="app_icon_size">50dp</dimen> + <!-- height & width of the drop rectangle for the trash icon --> <dimen name="delete_zone_size">70dip</dimen> diff --git a/res/values/strings.xml b/res/values/strings.xml index a3df221..f26dfc8 100644 --- a/res/values/strings.xml +++ b/res/values/strings.xml @@ -43,6 +43,46 @@ <string name="activity_not_found">Application is not installed on your phone.</string> <!-- List item for configuring the current wallpaper --> <string name="configure_wallpaper">Configure...</string> + <!-- Labels for the tabs in the customize drawer --> + <string name="widgets_tab_label">Widgets</string> + <!-- Title of tab containing all possible folders (ie standard Folders and Live Folders) that + can be added to the home screen --> + <string name="folders_tab_label">Folders</string> + <!-- Title of tab containing all possible shortcuts (eg Contacts, Bookmarks) that can be + added to the home screen --> + <string name="shortcuts_tab_label">More</string> + <!-- Title of tab for configuring wallpapers --> + <string name="wallpapers_tab_label">Wallpapers</string> + <!-- Title of tab for configuring applications --> + <string name="applications_tab_label">App Shortcuts</string> + <!-- Placeholder text, will be removed --> + <string name="wallpapers_temp_tab_text">This will be the wallpapers tab</string> + <!-- Labels for the tabs in All Apps --> + <!-- Title of the tab for all applications (includes games and non-games) [CHAR_LIMIT=12] --> + <string name="all_apps_tab_all">All</string> + <!-- Title of the tab for all applications *except* games [CHAR_LIMIT=12] --> + <string name="all_apps_tab_apps">Apps</string> + <!-- Title of the tab for applications labeled as games [CHAR_LIMIT=12] --> + <string name="all_apps_tab_games">Games</string> + <!-- Tile of the tab for applications that were downloaded from market [CHAR_LIMIT=12] --> + <string name="all_apps_tab_downloaded">Downloaded</string> + + <!-- All Apps pane --> + <!-- Message to show when there are no games [CHAR_LIMIT=25] --> + <string name="all_apps_no_games">No games found.</string> + <!-- Message to show when there are no downloaded apps [CHAR_LIMIT=25] --> + <string name="all_apps_no_downloads">No downloaded apps found.</string> + + <!-- Customization Drawer --> + <!-- The format string for the dimensions of a widget in the drawer --> + <string name="widget_dims_format" translatable="false">%1$d x %2$d</string> + + <!-- External-drop widget pick label format string [CHAR_LIMIT=25] --> + <string name="external_drop_widget_pick_format" translatable="false">%1$s (%2$d x %3$d)</string> + <!-- External-drop widget error string --> + <string name="external_drop_widget_error">Could not install clipboard item</string> + <!-- External-drop widget pick title --> + <string name="external_drop_widget_pick_title">Select widget to create</string> <!-- Folders --> <skip /> @@ -93,8 +133,8 @@ <!-- Title of dialog when user is selecting live folder to add to homescreen --> <string name="title_select_live_folder">Select folder</string> - <!-- All applications label for accessibilty (spoken when the button gets focus). --> - <string name="all_apps_button_label">All applications</string> + <!-- All applications label --> + <string name="all_apps_button_label">Apps</string> <!-- Label for button in all applications label to go back home (to the workspace / desktop) for accessibilty (spoken when the button gets focus). --> <string name="all_apps_home_button_label">Home</string> @@ -116,6 +156,23 @@ <!-- Noun, menu item used to show the system settings --> <string name="menu_settings">Settings</string> + <!-- Strings for the contextual action bar (CAB) in All Apps --> + <skip /> + <!-- Describes the button for uninstalling the currently selected application. + Text is not displayed, but provided for accessibility. [CHAR_LIMIT=none] --> + <string name="cab_menu_delete_app">Uninstall application</string> + <!-- Describes the button for getting details/info about currently selected application. + Text is not displayed, but provided for accessibility. [CHAR_LIMIT=none] --> + <string name="cab_menu_app_info">Application details</string> + <!-- Appears in the CAB when an app is selected in All Apps or Customize mode. [CHAR_LIMIT=50] --> + <string name="cab_app_selection_text">1 application selected</string> + <!-- Appears in the CAB when a widget is selected in Customize mode. [CHAR_LIMIT=50] --> + <string name="cab_widget_selection_text">1 widget selected</string> + <!-- Appears in the CAB when a folder is selected in Customize mode. [CHAR_LIMIT=50] --> + <string name="cab_folder_selection_text">1 folder selected</string> + <!-- Appears in the CAB when a shortcut is selected in Customize mode. [CHAR_LIMIT=50] --> + <string name="cab_shortcut_selection_text">1 shortcut selected</string> + <!-- Permissions: --> <skip /> <!-- Permission short label --> @@ -151,4 +208,6 @@ <string name="default_browser_url" translatable="false"> http://www.google.com/m?client=ms-{CID}&source=android-home-hotseat</string> + <!-- Text to inform the user that they can't uninstall a system application --> + <string name="uninstall_system_app_text">This is a system application and cannot be uninstalled.</string> </resources> diff --git a/res/values/styles.xml b/res/values/styles.xml index c208211..a97b3c5 100644 --- a/res/values/styles.xml +++ b/res/values/styles.xml @@ -18,7 +18,10 @@ --> <resources> - <style name="Theme" parent="android:Theme.Wallpaper"> + <style name="Theme.Base" parent="android:Theme.Wallpaper"> + </style> + + <style name="Theme" parent="Theme.Base"> <item name="android:windowNoTitle">true</item> </style> |