diff options
Diffstat (limited to 'res')
136 files changed, 4827 insertions, 0 deletions
diff --git a/res/anim/auto_focus_blink.xml b/res/anim/auto_focus_blink.xml new file mode 100644 index 0000000..dff217d --- /dev/null +++ b/res/anim/auto_focus_blink.xml @@ -0,0 +1,19 @@ +<?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. +--> + +<alpha xmlns:android="http://schemas.android.com/apk/res/android" + android:interpolator="@android:anim/accelerate_interpolator" + android:fromAlpha="0.0" android:toAlpha="1.0" android:duration="200" /> diff --git a/res/anim/on_screen_hint_enter.xml b/res/anim/on_screen_hint_enter.xml new file mode 100644 index 0000000..0f00760 --- /dev/null +++ b/res/anim/on_screen_hint_enter.xml @@ -0,0 +1,23 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- +/* +** Copyright 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. +*/ +--> + +<alpha xmlns:android="http://schemas.android.com/apk/res/android" + android:interpolator="@android:anim/decelerate_interpolator" + android:fromAlpha="0.0" android:toAlpha="1.0" android:duration="400" +/> diff --git a/res/anim/on_screen_hint_exit.xml b/res/anim/on_screen_hint_exit.xml new file mode 100644 index 0000000..e9b38f8 --- /dev/null +++ b/res/anim/on_screen_hint_exit.xml @@ -0,0 +1,23 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- +/* +** Copyright 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. +*/ +--> + +<alpha xmlns:android="http://schemas.android.com/apk/res/android" + android:interpolator="@android:anim/accelerate_interpolator" + android:fromAlpha="1.0" android:toAlpha="0.0" android:duration="400" +/> diff --git a/res/anim/slide_in.xml b/res/anim/slide_in.xml new file mode 100644 index 0000000..d1b9e5e --- /dev/null +++ b/res/anim/slide_in.xml @@ -0,0 +1,21 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2007 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="100%p" + android:toXDelta="0" + android:startOffset="0" + android:duration="400" /> diff --git a/res/anim/slide_in_vertical.xml b/res/anim/slide_in_vertical.xml new file mode 100644 index 0000000..4727689 --- /dev/null +++ b/res/anim/slide_in_vertical.xml @@ -0,0 +1,21 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2007 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:fromYDelta="100%p" + android:toYDelta="0" + android:startOffset="0" + android:duration="400" /> diff --git a/res/anim/slide_out.xml b/res/anim/slide_out.xml new file mode 100644 index 0000000..204cf28 --- /dev/null +++ b/res/anim/slide_out.xml @@ -0,0 +1,21 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2007 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" + android:toXDelta="-100%p" + android:startOffset="0" + android:duration="400" /> diff --git a/res/anim/slide_out_vertical.xml b/res/anim/slide_out_vertical.xml new file mode 100644 index 0000000..3f3f2a0 --- /dev/null +++ b/res/anim/slide_out_vertical.xml @@ -0,0 +1,21 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2007 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:fromYDelta="0" + android:toYDelta="-100%p" + android:startOffset="0" + android:duration="400" /> diff --git a/res/anim/transition_in.xml b/res/anim/transition_in.xml new file mode 100644 index 0000000..6c2ad61 --- /dev/null +++ b/res/anim/transition_in.xml @@ -0,0 +1,24 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- +/* //device/apps/common/res/anim/fade_in.xml +** +** Copyright 2007, 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="0.0" + android:toAlpha="1.0" + android:duration="1000" /> diff --git a/res/anim/transition_out.xml b/res/anim/transition_out.xml new file mode 100644 index 0000000..76e67f4 --- /dev/null +++ b/res/anim/transition_out.xml @@ -0,0 +1,25 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- +/* //device/apps/common/res/anim/fade_out.xml +** +** Copyright 2007, 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.0" + android:duration="1000" +/> diff --git a/res/drawable/btn_camera_arrow_left.xml b/res/drawable/btn_camera_arrow_left.xml new file mode 100644 index 0000000..494899b --- /dev/null +++ b/res/drawable/btn_camera_arrow_left.xml @@ -0,0 +1,28 @@ +<?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. +--> + +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + + <item android:state_pressed="true" + android:drawable="@drawable/btn_camera_arrow_left_press" /> + + <item android:state_window_focused="true" android:state_focused="true" + android:drawable="@drawable/btn_camera_arrow_left_selected" /> + + <item + android:drawable="@drawable/btn_camera_arrow_left_default" /> + +</selector> diff --git a/res/drawable/btn_camera_arrow_left_default.png b/res/drawable/btn_camera_arrow_left_default.png Binary files differnew file mode 100644 index 0000000..a9709aa --- /dev/null +++ b/res/drawable/btn_camera_arrow_left_default.png diff --git a/res/drawable/btn_camera_arrow_left_press.png b/res/drawable/btn_camera_arrow_left_press.png Binary files differnew file mode 100644 index 0000000..262c928 --- /dev/null +++ b/res/drawable/btn_camera_arrow_left_press.png diff --git a/res/drawable/btn_camera_arrow_left_selected.png b/res/drawable/btn_camera_arrow_left_selected.png Binary files differnew file mode 100644 index 0000000..839704f --- /dev/null +++ b/res/drawable/btn_camera_arrow_left_selected.png diff --git a/res/drawable/btn_camera_arrow_right.xml b/res/drawable/btn_camera_arrow_right.xml new file mode 100644 index 0000000..1d0cc0c --- /dev/null +++ b/res/drawable/btn_camera_arrow_right.xml @@ -0,0 +1,29 @@ +<?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. +--> + +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + + + <item android:state_pressed="true" + android:drawable="@drawable/btn_camera_arrow_right_press" /> + + <item android:state_window_focused="true" android:state_focused="true" + android:drawable="@drawable/btn_camera_arrow_right_selected" /> + + <item + android:drawable="@drawable/btn_camera_arrow_right_default" /> + +</selector> diff --git a/res/drawable/btn_camera_arrow_right_default.png b/res/drawable/btn_camera_arrow_right_default.png Binary files differnew file mode 100644 index 0000000..a4f78dc --- /dev/null +++ b/res/drawable/btn_camera_arrow_right_default.png diff --git a/res/drawable/btn_camera_arrow_right_press.png b/res/drawable/btn_camera_arrow_right_press.png Binary files differnew file mode 100644 index 0000000..4b37b0d --- /dev/null +++ b/res/drawable/btn_camera_arrow_right_press.png diff --git a/res/drawable/btn_camera_arrow_right_selected.png b/res/drawable/btn_camera_arrow_right_selected.png Binary files differnew file mode 100644 index 0000000..630a606 --- /dev/null +++ b/res/drawable/btn_camera_arrow_right_selected.png diff --git a/res/drawable/camera_crop_height.png b/res/drawable/camera_crop_height.png Binary files differnew file mode 100644 index 0000000..b089aec --- /dev/null +++ b/res/drawable/camera_crop_height.png diff --git a/res/drawable/camera_crop_width.png b/res/drawable/camera_crop_width.png Binary files differnew file mode 100644 index 0000000..65216af --- /dev/null +++ b/res/drawable/camera_crop_width.png diff --git a/res/drawable/detail_photo_border.9.png b/res/drawable/detail_photo_border.9.png Binary files differnew file mode 100644 index 0000000..6de37b7 --- /dev/null +++ b/res/drawable/detail_photo_border.9.png diff --git a/res/drawable/frame_gallery_preview.xml b/res/drawable/frame_gallery_preview.xml new file mode 100644 index 0000000..5550bff --- /dev/null +++ b/res/drawable/frame_gallery_preview.xml @@ -0,0 +1,31 @@ +<?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. +--> + +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + + <item android:state_window_focused="false" + android:drawable="@drawable/frame_gallery_preview_album" /> + + <item android:state_selected="true" android:state_pressed="true" + android:drawable="@drawable/frame_gallery_preview_album_pressed" /> + + <item android:state_selected="false" android:state_pressed="true" + android:drawable="@drawable/frame_gallery_preview_album_pressed" /> + + <item android:state_selected="true" + android:drawable="@drawable/frame_gallery_preview_album_selected" /> + +</selector> diff --git a/res/drawable/frame_gallery_preview_album.png b/res/drawable/frame_gallery_preview_album.png Binary files differnew file mode 100644 index 0000000..5b92ee2 --- /dev/null +++ b/res/drawable/frame_gallery_preview_album.png diff --git a/res/drawable/frame_gallery_preview_album_mask.png b/res/drawable/frame_gallery_preview_album_mask.png Binary files differnew file mode 100644 index 0000000..b053f30 --- /dev/null +++ b/res/drawable/frame_gallery_preview_album_mask.png diff --git a/res/drawable/frame_gallery_preview_album_pressed.png b/res/drawable/frame_gallery_preview_album_pressed.png Binary files differnew file mode 100644 index 0000000..e3575ff --- /dev/null +++ b/res/drawable/frame_gallery_preview_album_pressed.png diff --git a/res/drawable/frame_gallery_preview_album_selected.png b/res/drawable/frame_gallery_preview_album_selected.png Binary files differnew file mode 100644 index 0000000..222a38a --- /dev/null +++ b/res/drawable/frame_gallery_preview_album_selected.png diff --git a/res/drawable/frame_overlay_gallery_camera.png b/res/drawable/frame_overlay_gallery_camera.png Binary files differnew file mode 100644 index 0000000..e0c24a6 --- /dev/null +++ b/res/drawable/frame_overlay_gallery_camera.png diff --git a/res/drawable/frame_overlay_gallery_folder.png b/res/drawable/frame_overlay_gallery_folder.png Binary files differnew file mode 100644 index 0000000..05f64cc --- /dev/null +++ b/res/drawable/frame_overlay_gallery_folder.png diff --git a/res/drawable/frame_overlay_gallery_video.png b/res/drawable/frame_overlay_gallery_video.png Binary files differnew file mode 100644 index 0000000..4b84854 --- /dev/null +++ b/res/drawable/frame_overlay_gallery_video.png diff --git a/res/drawable/frame_thumbnail.xml b/res/drawable/frame_thumbnail.xml new file mode 100644 index 0000000..0cbbacc --- /dev/null +++ b/res/drawable/frame_thumbnail.xml @@ -0,0 +1,21 @@ +<?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. +--> + +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:state_pressed="true" android:drawable="@drawable/frame_thumbnail_pressed" /> + <item android:state_window_focused="true" android:state_focused="true" android:drawable="@drawable/frame_thumbnail_selected" /> + <item android:drawable="@drawable/frame_thumbnail_default" /> +</selector> diff --git a/res/drawable/frame_thumbnail_default.png b/res/drawable/frame_thumbnail_default.png Binary files differnew file mode 100644 index 0000000..3db932e --- /dev/null +++ b/res/drawable/frame_thumbnail_default.png diff --git a/res/drawable/frame_thumbnail_pressed.png b/res/drawable/frame_thumbnail_pressed.png Binary files differnew file mode 100644 index 0000000..b15aea7 --- /dev/null +++ b/res/drawable/frame_thumbnail_pressed.png diff --git a/res/drawable/frame_thumbnail_selected.png b/res/drawable/frame_thumbnail_selected.png Binary files differnew file mode 100644 index 0000000..408b14a --- /dev/null +++ b/res/drawable/frame_thumbnail_selected.png diff --git a/res/drawable/grid_background.xml b/res/drawable/grid_background.xml new file mode 100644 index 0000000..fad1d2a --- /dev/null +++ b/res/drawable/grid_background.xml @@ -0,0 +1,24 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- +/* grid_background.xml +** +** Copyright 2006, 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/image_border_bg_pressed_blue" /> + <item android:state_window_focused="true" android:state_focused="true" android:drawable="@drawable/image_border_bg_focus_blue" /> + <item android:drawable="@drawable/image_border_bg_normal" /> +</selector> diff --git a/res/drawable/ic_btn_actionmenu_attach_default.png b/res/drawable/ic_btn_actionmenu_attach_default.png Binary files differnew file mode 100644 index 0000000..78d6e1b --- /dev/null +++ b/res/drawable/ic_btn_actionmenu_attach_default.png diff --git a/res/drawable/ic_btn_actionmenu_attach_pressed.png b/res/drawable/ic_btn_actionmenu_attach_pressed.png Binary files differnew file mode 100644 index 0000000..01cbe46 --- /dev/null +++ b/res/drawable/ic_btn_actionmenu_attach_pressed.png diff --git a/res/drawable/ic_btn_actionmenu_attach_selected.png b/res/drawable/ic_btn_actionmenu_attach_selected.png Binary files differnew file mode 100644 index 0000000..ee7af0b --- /dev/null +++ b/res/drawable/ic_btn_actionmenu_attach_selected.png diff --git a/res/drawable/ic_btn_actionmenu_cancel_default.png b/res/drawable/ic_btn_actionmenu_cancel_default.png Binary files differnew file mode 100644 index 0000000..cb8f7bc --- /dev/null +++ b/res/drawable/ic_btn_actionmenu_cancel_default.png diff --git a/res/drawable/ic_btn_actionmenu_cancel_pressed.png b/res/drawable/ic_btn_actionmenu_cancel_pressed.png Binary files differnew file mode 100644 index 0000000..02bdb49 --- /dev/null +++ b/res/drawable/ic_btn_actionmenu_cancel_pressed.png diff --git a/res/drawable/ic_btn_actionmenu_cancel_selected.png b/res/drawable/ic_btn_actionmenu_cancel_selected.png Binary files differnew file mode 100644 index 0000000..a0b6017 --- /dev/null +++ b/res/drawable/ic_btn_actionmenu_cancel_selected.png diff --git a/res/drawable/ic_btn_actionmenu_delete_default.png b/res/drawable/ic_btn_actionmenu_delete_default.png Binary files differnew file mode 100644 index 0000000..7e25f0d --- /dev/null +++ b/res/drawable/ic_btn_actionmenu_delete_default.png diff --git a/res/drawable/ic_btn_actionmenu_delete_pressed.png b/res/drawable/ic_btn_actionmenu_delete_pressed.png Binary files differnew file mode 100644 index 0000000..94087f6 --- /dev/null +++ b/res/drawable/ic_btn_actionmenu_delete_pressed.png diff --git a/res/drawable/ic_btn_actionmenu_delete_selected.png b/res/drawable/ic_btn_actionmenu_delete_selected.png Binary files differnew file mode 100644 index 0000000..780310b --- /dev/null +++ b/res/drawable/ic_btn_actionmenu_delete_selected.png diff --git a/res/drawable/ic_btn_actionmenu_gallery_default.png b/res/drawable/ic_btn_actionmenu_gallery_default.png Binary files differnew file mode 100644 index 0000000..a2d38db --- /dev/null +++ b/res/drawable/ic_btn_actionmenu_gallery_default.png diff --git a/res/drawable/ic_btn_actionmenu_gallery_pressed.png b/res/drawable/ic_btn_actionmenu_gallery_pressed.png Binary files differnew file mode 100644 index 0000000..a01b7f8 --- /dev/null +++ b/res/drawable/ic_btn_actionmenu_gallery_pressed.png diff --git a/res/drawable/ic_btn_actionmenu_gallery_selected.png b/res/drawable/ic_btn_actionmenu_gallery_selected.png Binary files differnew file mode 100644 index 0000000..400a63b --- /dev/null +++ b/res/drawable/ic_btn_actionmenu_gallery_selected.png diff --git a/res/drawable/ic_btn_actionmenu_play_default.png b/res/drawable/ic_btn_actionmenu_play_default.png Binary files differnew file mode 100644 index 0000000..17e0748 --- /dev/null +++ b/res/drawable/ic_btn_actionmenu_play_default.png diff --git a/res/drawable/ic_btn_actionmenu_play_pressed.png b/res/drawable/ic_btn_actionmenu_play_pressed.png Binary files differnew file mode 100644 index 0000000..c671669 --- /dev/null +++ b/res/drawable/ic_btn_actionmenu_play_pressed.png diff --git a/res/drawable/ic_btn_actionmenu_play_selected.png b/res/drawable/ic_btn_actionmenu_play_selected.png Binary files differnew file mode 100644 index 0000000..35e1425 --- /dev/null +++ b/res/drawable/ic_btn_actionmenu_play_selected.png diff --git a/res/drawable/ic_btn_actionmenu_set_as_default.png b/res/drawable/ic_btn_actionmenu_set_as_default.png Binary files differnew file mode 100644 index 0000000..0d341c7 --- /dev/null +++ b/res/drawable/ic_btn_actionmenu_set_as_default.png diff --git a/res/drawable/ic_btn_actionmenu_set_as_pressed.png b/res/drawable/ic_btn_actionmenu_set_as_pressed.png Binary files differnew file mode 100644 index 0000000..58dc85c --- /dev/null +++ b/res/drawable/ic_btn_actionmenu_set_as_pressed.png diff --git a/res/drawable/ic_btn_actionmenu_set_as_selected.png b/res/drawable/ic_btn_actionmenu_set_as_selected.png Binary files differnew file mode 100644 index 0000000..6281229 --- /dev/null +++ b/res/drawable/ic_btn_actionmenu_set_as_selected.png diff --git a/res/drawable/ic_btn_actionmenu_share_default.png b/res/drawable/ic_btn_actionmenu_share_default.png Binary files differnew file mode 100644 index 0000000..19f6ef4 --- /dev/null +++ b/res/drawable/ic_btn_actionmenu_share_default.png diff --git a/res/drawable/ic_btn_actionmenu_share_pressed.png b/res/drawable/ic_btn_actionmenu_share_pressed.png Binary files differnew file mode 100644 index 0000000..8583114 --- /dev/null +++ b/res/drawable/ic_btn_actionmenu_share_pressed.png diff --git a/res/drawable/ic_btn_actionmenu_share_selected.png b/res/drawable/ic_btn_actionmenu_share_selected.png Binary files differnew file mode 100644 index 0000000..fc9679b --- /dev/null +++ b/res/drawable/ic_btn_actionmenu_share_selected.png diff --git a/res/drawable/ic_btn_camera_background.xml b/res/drawable/ic_btn_camera_background.xml new file mode 100644 index 0000000..2e28a80 --- /dev/null +++ b/res/drawable/ic_btn_camera_background.xml @@ -0,0 +1,23 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- +/* +** Copyright 2006, 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/ic_btn_camera_pressed_background" /> + <item android:state_window_focused="true" android:state_focused="true" android:drawable="@drawable/ic_btn_camera_selected_background" /> + <item android:drawable="@drawable/ic_btn_camera_default_background" /> +</selector> diff --git a/res/drawable/ic_btn_camera_default_background.png b/res/drawable/ic_btn_camera_default_background.png Binary files differnew file mode 100644 index 0000000..c37a86e --- /dev/null +++ b/res/drawable/ic_btn_camera_default_background.png diff --git a/res/drawable/ic_btn_camera_pressed_background.png b/res/drawable/ic_btn_camera_pressed_background.png Binary files differnew file mode 100644 index 0000000..8707b8a --- /dev/null +++ b/res/drawable/ic_btn_camera_pressed_background.png diff --git a/res/drawable/ic_btn_camera_selected_background.png b/res/drawable/ic_btn_camera_selected_background.png Binary files differnew file mode 100644 index 0000000..a6bbdb1 --- /dev/null +++ b/res/drawable/ic_btn_camera_selected_background.png diff --git a/res/drawable/ic_camera_bar_indicator_record.png b/res/drawable/ic_camera_bar_indicator_record.png Binary files differnew file mode 100644 index 0000000..60f7a01 --- /dev/null +++ b/res/drawable/ic_camera_bar_indicator_record.png diff --git a/res/drawable/ic_camera_indicator_auto_focus_green.png b/res/drawable/ic_camera_indicator_auto_focus_green.png Binary files differnew file mode 100644 index 0000000..7bc09db --- /dev/null +++ b/res/drawable/ic_camera_indicator_auto_focus_green.png diff --git a/res/drawable/ic_camera_indicator_photo.png b/res/drawable/ic_camera_indicator_photo.png Binary files differnew file mode 100644 index 0000000..3b0483b --- /dev/null +++ b/res/drawable/ic_camera_indicator_photo.png diff --git a/res/drawable/ic_camera_indicator_video.png b/res/drawable/ic_camera_indicator_video.png Binary files differnew file mode 100644 index 0000000..a4cb8d0 --- /dev/null +++ b/res/drawable/ic_camera_indicator_video.png diff --git a/res/drawable/ic_error_mms_video_overlay.png b/res/drawable/ic_error_mms_video_overlay.png Binary files differnew file mode 100644 index 0000000..4f50072 --- /dev/null +++ b/res/drawable/ic_error_mms_video_overlay.png diff --git a/res/drawable/ic_gallery_empty2.png b/res/drawable/ic_gallery_empty2.png Binary files differnew file mode 100644 index 0000000..f950e08 --- /dev/null +++ b/res/drawable/ic_gallery_empty2.png diff --git a/res/drawable/ic_gallery_video_overlay.png b/res/drawable/ic_gallery_video_overlay.png Binary files differnew file mode 100644 index 0000000..ae263a7 --- /dev/null +++ b/res/drawable/ic_gallery_video_overlay.png diff --git a/res/drawable/ic_launcher_camera.png b/res/drawable/ic_launcher_camera.png Binary files differnew file mode 100644 index 0000000..9bb4c61 --- /dev/null +++ b/res/drawable/ic_launcher_camera.png diff --git a/res/drawable/ic_launcher_gallery.png b/res/drawable/ic_launcher_gallery.png Binary files differnew file mode 100644 index 0000000..965fb71 --- /dev/null +++ b/res/drawable/ic_launcher_gallery.png diff --git a/res/drawable/ic_menu_attach.xml b/res/drawable/ic_menu_attach.xml new file mode 100644 index 0000000..209f6b5 --- /dev/null +++ b/res/drawable/ic_menu_attach.xml @@ -0,0 +1,23 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- +/* +** Copyright 2006, 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/ic_btn_actionmenu_attach_pressed" /> + <item android:state_window_focused="true" android:state_focused="true" android:drawable="@drawable/ic_btn_actionmenu_attach_selected" /> + <item android:drawable="@drawable/ic_btn_actionmenu_attach_default" /> +</selector> diff --git a/res/drawable/ic_menu_camera_play.xml b/res/drawable/ic_menu_camera_play.xml new file mode 100644 index 0000000..3a70e69 --- /dev/null +++ b/res/drawable/ic_menu_camera_play.xml @@ -0,0 +1,24 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- +/* grid_background.xml +** +** Copyright 2006, 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/ic_btn_actionmenu_play_pressed" /> + <item android:state_window_focused="true" android:state_focused="true" android:drawable="@drawable/ic_btn_actionmenu_play_selected" /> + <item android:drawable="@drawable/ic_btn_actionmenu_play_default" /> +</selector> diff --git a/res/drawable/ic_menu_camera_video_view.png b/res/drawable/ic_menu_camera_video_view.png Binary files differnew file mode 100644 index 0000000..f7e52c2 --- /dev/null +++ b/res/drawable/ic_menu_camera_video_view.png diff --git a/res/drawable/ic_menu_cancel.xml b/res/drawable/ic_menu_cancel.xml new file mode 100644 index 0000000..92960d9 --- /dev/null +++ b/res/drawable/ic_menu_cancel.xml @@ -0,0 +1,23 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- +/* +** Copyright 2006, 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/ic_btn_actionmenu_cancel_pressed" /> + <item android:state_window_focused="true" android:state_focused="true" android:drawable="@drawable/ic_btn_actionmenu_cancel_selected" /> + <item android:drawable="@drawable/ic_btn_actionmenu_cancel_default" /> +</selector> diff --git a/res/drawable/ic_menu_delete.xml b/res/drawable/ic_menu_delete.xml new file mode 100644 index 0000000..efea2df --- /dev/null +++ b/res/drawable/ic_menu_delete.xml @@ -0,0 +1,24 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- +/* grid_background.xml +** +** Copyright 2006, 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/ic_btn_actionmenu_delete_pressed" /> + <item android:state_window_focused="true" android:state_focused="true" android:drawable="@drawable/ic_btn_actionmenu_delete_selected" /> + <item android:drawable="@drawable/ic_btn_actionmenu_delete_default" /> +</selector> diff --git a/res/drawable/ic_menu_gallery.xml b/res/drawable/ic_menu_gallery.xml new file mode 100644 index 0000000..4b0319a --- /dev/null +++ b/res/drawable/ic_menu_gallery.xml @@ -0,0 +1,24 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- +/* grid_background.xml +** +** Copyright 2006, 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/ic_btn_actionmenu_gallery_pressed" /> + <item android:state_window_focused="true" android:state_focused="true" android:drawable="@drawable/ic_btn_actionmenu_gallery_selected" /> + <item android:drawable="@drawable/ic_btn_actionmenu_gallery_default" /> +</selector> diff --git a/res/drawable/ic_menu_set_as.xml b/res/drawable/ic_menu_set_as.xml new file mode 100644 index 0000000..119e712 --- /dev/null +++ b/res/drawable/ic_menu_set_as.xml @@ -0,0 +1,24 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- +/* grid_background.xml +** +** Copyright 2006, 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/ic_btn_actionmenu_set_as_pressed" /> + <item android:state_window_focused="true" android:state_focused="true" android:drawable="@drawable/ic_btn_actionmenu_set_as_selected" /> + <item android:drawable="@drawable/ic_btn_actionmenu_set_as_default" /> +</selector> diff --git a/res/drawable/ic_menu_share.xml b/res/drawable/ic_menu_share.xml new file mode 100644 index 0000000..cf376ac --- /dev/null +++ b/res/drawable/ic_menu_share.xml @@ -0,0 +1,24 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- +/* grid_background.xml +** +** Copyright 2006, 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/ic_btn_actionmenu_share_pressed" /> + <item android:state_window_focused="true" android:state_focused="true" android:drawable="@drawable/ic_btn_actionmenu_share_selected" /> + <item android:drawable="@drawable/ic_btn_actionmenu_share_default" /> +</selector> diff --git a/res/drawable/ic_menu_view_details.png b/res/drawable/ic_menu_view_details.png Binary files differnew file mode 100644 index 0000000..a5a184f --- /dev/null +++ b/res/drawable/ic_menu_view_details.png diff --git a/res/drawable/ic_missing_thumbnail_picture.png b/res/drawable/ic_missing_thumbnail_picture.png Binary files differnew file mode 100644 index 0000000..ebab487 --- /dev/null +++ b/res/drawable/ic_missing_thumbnail_picture.png diff --git a/res/drawable/ic_missing_thumbnail_video.png b/res/drawable/ic_missing_thumbnail_video.png Binary files differnew file mode 100644 index 0000000..b44d821 --- /dev/null +++ b/res/drawable/ic_missing_thumbnail_video.png diff --git a/res/drawable/image_border_bg_focus_blue.9.png b/res/drawable/image_border_bg_focus_blue.9.png Binary files differnew file mode 100644 index 0000000..89debd2 --- /dev/null +++ b/res/drawable/image_border_bg_focus_blue.9.png diff --git a/res/drawable/image_border_bg_normal.9.png b/res/drawable/image_border_bg_normal.9.png Binary files differnew file mode 100644 index 0000000..18e3607 --- /dev/null +++ b/res/drawable/image_border_bg_normal.9.png diff --git a/res/drawable/image_border_bg_pressed_blue.9.png b/res/drawable/image_border_bg_pressed_blue.9.png Binary files differnew file mode 100644 index 0000000..94fa74f --- /dev/null +++ b/res/drawable/image_border_bg_pressed_blue.9.png diff --git a/res/drawable/indicator_autocrop.png b/res/drawable/indicator_autocrop.png Binary files differnew file mode 100644 index 0000000..d960b1f --- /dev/null +++ b/res/drawable/indicator_autocrop.png diff --git a/res/drawable/on_screen_hint_frame.9.png b/res/drawable/on_screen_hint_frame.9.png Binary files differnew file mode 100755 index 0000000..08c4f86 --- /dev/null +++ b/res/drawable/on_screen_hint_frame.9.png diff --git a/res/drawable/photo_frame.9.png b/res/drawable/photo_frame.9.png Binary files differnew file mode 100644 index 0000000..b153260 --- /dev/null +++ b/res/drawable/photo_frame.9.png diff --git a/res/layout/camera.xml b/res/layout/camera.xml new file mode 100644 index 0000000..d23066e --- /dev/null +++ b/res/layout/camera.xml @@ -0,0 +1,73 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2007 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. +--> + +<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" + android:id="@+id/camera" + android:layout_width="fill_parent" + android:layout_height="fill_parent" + android:orientation="horizontal"> + + <com.android.camera.VideoPreview + android:id="@+id/camera_preview" + android:layout_width="fill_parent" + android:layout_height="fill_parent" + android:layout_centerInParent="true" /> + + <View + android:id="@+id/blackout" + android:background="#ff000000" + android:layout_width="fill_parent" + android:layout_height="fill_parent" + android:visibility="invisible" /> + + <com.android.camera.ShutterButton + android:id="@+id/shutter_button" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:src="@drawable/ic_camera_indicator_photo" + android:background="@drawable/ic_btn_camera_background" + android:clickable="true" + android:focusable="true" + android:layout_alignParentRight="true" + android:layout_alignParentTop="true" + android:layout_marginRight="50dip" + android:layout_marginTop="10dip" + android:scaleType="center" /> + + <ImageView + android:id="@+id/focus_indicator" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:src="@drawable/ic_camera_indicator_auto_focus_green" + android:layout_alignLeft="@id/shutter_button" + android:layout_alignTop="@id/shutter_button" + android:layout_marginLeft="39dip" + android:layout_marginTop="16dip" + android:scaleType="center" + android:visibility="gone" /> + + <ImageView + android:visibility="gone" + android:id="@+id/last_picture_button" + android:layout_width="72dip" + android:layout_height="72dip" + android:clickable="true" + android:focusable="true" + android:layout_alignParentLeft="true" + android:layout_alignParentTop="true" + android:layout_marginLeft="10dip" + android:layout_marginTop="10dip" /> +</RelativeLayout> diff --git a/res/layout/cropimage.xml b/res/layout/cropimage.xml new file mode 100644 index 0000000..4f3dcb7 --- /dev/null +++ b/res/layout/cropimage.xml @@ -0,0 +1,58 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2007 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. +--> + +<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" + android:layout_width="fill_parent" + android:layout_height="fill_parent"> + + <RelativeLayout + android:layout_width="fill_parent" + android:layout_height="fill_parent" + android:orientation="horizontal"> + + <view class="com.android.camera.CropImage$CropImageView" android:id="@+id/image" + android:background="#55000000" + android:layout_width="fill_parent" + android:layout_height="fill_parent" + android:layout_x="0dip" + android:layout_y="0dip" + /> + <RelativeLayout android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:orientation="horizontal" + android:paddingLeft="10dip" + android:paddingRight="10dip" + android:layout_alignParentBottom="true" + android:layout_centerHorizontal="true"> + <Button + android:id="@+id/save" + android:layout_width="100dip" + android:layout_height="wrap_content" + android:layout_alignParentLeft="true" + android:text="@string/crop_save_text" + /> + <Button + android:id="@+id/discard" + android:layout_width="100dip" + android:layout_height="wrap_content" + android:layout_alignParentRight="true" + android:text="@string/crop_discard_text" + /> + </RelativeLayout> + </RelativeLayout> + +</FrameLayout> + diff --git a/res/layout/custom_gallery_title.xml b/res/layout/custom_gallery_title.xml new file mode 100644 index 0000000..0652678 --- /dev/null +++ b/res/layout/custom_gallery_title.xml @@ -0,0 +1,61 @@ +<?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. +--> + +<RelativeLayout + xmlns:android="http://schemas.android.com/apk/res/android" + android:id="@+id/screen" android:layout_width="fill_parent" + android:layout_height="fill_parent" + android:orientation="vertical"> + + <TextView android:id="@+id/left_text" + android:gravity="center_vertical" + style="?android:attr/windowTitleStyle" + android:layout_width="wrap_content" + android:layout_height="fill_parent" android:paddingLeft="5dip" + android:layout_alignParentLeft="true" /> + + <TextView android:id="@+id/right_text" + android:gravity="center_vertical" + style="?android:attr/windowTitleStyle" + android:layout_width="wrap_content" + android:layout_height="fill_parent" android:paddingRight="5dip" + android:layout_alignParentRight="true" + android:visibility="gone" /> + + <LinearLayout android:id="@+id/loading_indicator" + android:orientation="horizontal" + android:gravity="center_vertical" + android:paddingTop="2dip" + android:layout_alignParentRight="true" + android:layout_height="wrap_content" + android:layout_width="wrap_content"> + + <TextView android:id="@+id/loading_text" + android:gravity="center_vertical" + style="?android:attr/windowTitleStyle" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:paddingRight="5dip" + android:layout_alignParentRight="true" /> + + <ProgressBar android:id="@android:id/progress" + style="?android:attr/progressBarStyleSmallTitle" + android:gravity="center_vertical" + android:paddingRight="5dip" + android:layout_width="wrap_content" + android:layout_height="wrap_content" /> + </LinearLayout> +</RelativeLayout> diff --git a/res/layout/details.xml b/res/layout/details.xml new file mode 100644 index 0000000..482e567 --- /dev/null +++ b/res/layout/details.xml @@ -0,0 +1,159 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2007 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:orientation="vertical" + android:padding="10dip" + android:layout_width="fill_parent" + android:layout_height="wrap_content"> + + <LinearLayout + android:orientation="horizontal" + android:layout_width="fill_parent" + android:layout_height="wrap_content"> + + <TextView + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:text="@string/details_title_label" + android:textSize="10sp" + /> + + </LinearLayout> + + <EditText + android:id="@+id/title" + android:layout_width="fill_parent" + android:layout_height="wrap_content" + android:text="@string/details_title_text" + android:autoText="true" + android:capitalize="words" + android:textSize="10sp" + android:textColor="#FF661700" + /> + + <TextView + android:layout_width="fill_parent" + android:layout_height="wrap_content" + android:text="@string/details_description_label" + android:textSize="10sp" + /> + + <EditText + android:id="@+id/description" + android:layout_width="fill_parent" + android:layout_height="wrap_content" + android:text="@string/details_description_text" + android:autoText="true" + android:capitalize="sentences" + android:textSize="10sp" + android:textColor="#FF661700" + /> + + <TextView android:id="@+id/tags_label" + android:layout_width="fill_parent" + android:layout_height="wrap_content" + android:text="@string/details_tags_label" + android:textSize="10sp" + android:visibility="gone" + /> + + <EditText + android:id="@+id/tags" + android:layout_width="fill_parent" + android:layout_height="wrap_content" + android:text="@string/details_tags_text" + android:textSize="10sp" + android:textColor="#FF661700" + android:autoText="false" + android:capitalize="none" + android:visibility="gone" + /> + + <LinearLayout android:id="@+id/categories" + android:orientation="horizontal" + android:visibility="gone" + android:layout_width="fill_parent" + android:layout_height="wrap_content"> + + <TextView + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:text="@string/details_category_label" + android:textSize="10sp" + /> + + <Spinner android:id="@+id/category" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:drawSelectorOnTop="false" + android:textSize="10sp" + /> + </LinearLayout> + + <LinearLayout android:id="@+id/languages" + android:orientation="horizontal" + android:visibility="gone" + android:layout_width="fill_parent" + android:layout_height="wrap_content"> + + <TextView + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:text="@string/details_language_label" + android:textSize="10sp" + /> + + <Spinner android:id="@+id/language" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:drawSelectorOnTop="false" + android:textSize="10sp" + /> + </LinearLayout> + + <LinearLayout + android:orientation="horizontal" + android:layout_width="fill_parent" + android:layout_height="wrap_content"> + + <RadioGroup android:id="@+id/publicprivate" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:orientation="horizontal"> + <RadioButton android:id="@+id/publicView" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:checked="false" + android:text="@string/details_publicView_text" + /> + + <RadioButton android:id="@+id/privateView" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:checked="false" + android:text="@string/details_privateView_text" + /> + </RadioGroup> + + <Button android:id="@+id/save" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:text="@string/details_save_text" + android:layout_alignParentRight="true" + /> + </LinearLayout> +</LinearLayout> diff --git a/res/layout/detailsview.xml b/res/layout/detailsview.xml new file mode 100644 index 0000000..e28f06c --- /dev/null +++ b/res/layout/detailsview.xml @@ -0,0 +1,166 @@ +<?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. +--> + +<ScrollView xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/scroll_view" + android:orientation="vertical" + android:layout_width="300dip" + android:layout_height="fill_parent"> + + <LinearLayout + android:orientation="vertical" + android:layout_width="fill_parent" + android:layout_height="wrap_content" + android:paddingLeft="5dip" + android:paddingRight="5dip" + android:paddingBottom="10dp"> + + <LinearLayout + android:orientation="horizontal" + android:gravity="center_vertical" + android:layout_width="fill_parent" + android:layout_height="wrap_content"> + + <LinearLayout + android:orientation="horizontal" + android:gravity="center_vertical" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:background="@drawable/detail_photo_border"> + <ImageView + android:id="@+id/details_thumbnail_image" + android:layout_width="64dip" + android:layout_height="64dip"/> + </LinearLayout> + + <TextView + android:id="@+id/details_image_title" + android:layout_height="wrap_content" + android:layout_width="wrap_content" + android:textAppearance="?android:attr/textAppearanceMedium" + android:paddingLeft="6dip" + android:layout_weight="1"/> + + </LinearLayout> + + <TableLayout + android:layout_width="fill_parent" + android:layout_height="wrap_content" + android:paddingLeft="5dip" + android:layout_marginTop="10dip"> + + <TableRow> + <TextView + android:gravity="right" + android:textAppearance="?android:attr/textAppearanceSmall" + android:text="@string/details_file_size"/> + <TextView + android:id="@+id/details_file_size_value" + android:textAppearance="?android:attr/textAppearanceSmall" + android:paddingLeft="5dip" + android:textColor="?android:attr/textColorPrimary"/> + </TableRow> + + <TableRow> + <TextView + android:gravity="right" + android:textAppearance="?android:attr/textAppearanceSmall" + android:text="@string/details_image_resolution"/> + <TextView + android:id="@+id/details_resolution_value" + android:layout_height="wrap_content" + android:layout_width="fill_parent" + android:textAppearance="?android:attr/textAppearanceSmall" + android:paddingLeft="5dip" + android:textColor="?android:attr/textColorPrimary"/> + </TableRow> + <TableRow + android:id="@+id/details_duration_row"> + <TextView + android:gravity="right" + android:textAppearance="?android:attr/textAppearanceSmall" + android:text="@string/details_duration"/> + <TextView + android:id="@+id/details_duration_value" + android:textAppearance="?android:attr/textAppearanceSmall" + android:paddingLeft="5dip" + android:textColor="?android:attr/textColorPrimary"/> + </TableRow> + <TableRow + android:id="@+id/details_frame_rate_row"> + <TextView + android:gravity="right" + android:textAppearance="?android:attr/textAppearanceSmall" + android:text="@string/details_frame_rate"/> + <TextView + android:id="@+id/details_frame_rate_value" + android:textAppearance="?android:attr/textAppearanceSmall" + android:paddingLeft="5dip" + android:textColor="?android:attr/textColorPrimary"/> + </TableRow> + + <TableRow + android:id="@+id/details_bit_rate_row"> + <TextView + android:gravity="right" + android:textAppearance="?android:attr/textAppearanceSmall" + android:text="@string/details_bit_rate"/> + <TextView + android:id="@+id/details_bit_rate_value" + android:textAppearance="?android:attr/textAppearanceSmall" + android:paddingLeft="5dip" + android:textColor="?android:attr/textColorPrimary"/> + </TableRow> + <TableRow + android:id="@+id/details_format_row"> + <TextView + android:gravity="right" + android:textAppearance="?android:attr/textAppearanceSmall" + android:text="@string/details_format"/> + <TextView + android:id="@+id/details_format_value" + android:textAppearance="?android:attr/textAppearanceSmall" + android:paddingLeft="5dip" + android:textColor="?android:attr/textColorPrimary"/> + </TableRow> + <TableRow + android:id="@+id/details_codec_row"> + <TextView + android:gravity="right" + android:textAppearance="?android:attr/textAppearanceSmall" + android:text="@string/details_codec"/> + <TextView + android:id="@+id/details_codec_value" + android:textAppearance="?android:attr/textAppearanceSmall" + android:paddingLeft="5dip" + android:textColor="?android:attr/textColorPrimary"/> + </TableRow> + <TableRow + android:id="@+id/details_date_taken_row"> + <TextView + android:gravity="right" + android:textAppearance="?android:attr/textAppearanceSmall" + android:text="@string/details_date_taken"/> + <TextView + android:id="@+id/details_date_taken_value" + android:textAppearance="?android:attr/textAppearanceSmall" + android:paddingLeft="5dip" + android:textColor="?android:attr/textColorPrimary"/> + </TableRow> + </TableLayout> + + </LinearLayout> + +</ScrollView> diff --git a/res/layout/gallery.xml b/res/layout/gallery.xml new file mode 100644 index 0000000..61a0db2 --- /dev/null +++ b/res/layout/gallery.xml @@ -0,0 +1,58 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2007 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. +--> + +<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" + android:layout_width="fill_parent" + android:layout_height="fill_parent" + android:orientation="horizontal"> + + <View android:background="#FF000000" + android:layout_width="fill_parent" + android:layout_height="fill_parent" + android:layout_alignParentTop="true" + android:layout_alignParentLeft="true" + /> + + <ImageView android:id="@+id/switcher1" + android:background="#FF000000" + android:layout_width="fill_parent" + android:layout_height="fill_parent" + android:layout_alignParentTop="true" + android:layout_alignParentLeft="true" + android:visibility="invisible" + /> + + <ImageView android:id="@+id/switcher2" + android:background="#55000000" + android:layout_width="fill_parent" + android:layout_height="fill_parent" + android:layout_alignParentTop="true" + android:layout_alignParentLeft="true" + android:visibility="invisible" + /> + + <Gallery android:id="@+id/gallery" + android:background="#55000000" + android:layout_width="fill_parent" + android:layout_height="wrap_content" + android:layout_alignParentBottom="true" + android:layout_alignParentLeft="true" + + android:gravity="center_vertical" + android:spacing="16dp" + /> + +</RelativeLayout> diff --git a/res/layout/gallery_picker_item.xml b/res/layout/gallery_picker_item.xml new file mode 100644 index 0000000..62d8333 --- /dev/null +++ b/res/layout/gallery_picker_item.xml @@ -0,0 +1,38 @@ +<?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. +--> + +<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" + android:orientation="vertical" + android:layout_width="148dp" + android:layout_height="wrap_content" + android:gravity="center_horizontal"> + + <com.android.camera.GalleryPickerItem android:id="@+id/thumbnail" + android:layout_width="142dip" + android:layout_height="142dip" + android:scaleType="centerCrop" /> + + <TextView android:id="@+id/title" + android:paddingTop="3dip" + android:paddingBottom="9dip" + android:layout_width="wrap_content" + android:textSize="14sp" + android:singleLine="true" + android:textColor="#ffffffff" + android:ellipsize="middle" + android:layout_height="wrap_content" /> + +</LinearLayout> diff --git a/res/layout/gallerypicker.xml b/res/layout/gallerypicker.xml new file mode 100644 index 0000000..4bc7789 --- /dev/null +++ b/res/layout/gallerypicker.xml @@ -0,0 +1,61 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2007 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. +--> + +<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/root" + android:layout_width="fill_parent" + android:layout_height="fill_parent"> + <GridView xmlns:android="http://schemas.android.com/apk/res/android" + android:id="@+id/albums" + android:layout_width="fill_parent" + android:layout_height="fill_parent" + android:paddingTop="2dip" + android:numColumns="auto_fit" + android:columnWidth="148dp" + android:stretchMode="spacingWidthUniform" + android:drawSelectorOnTop="false" + android:cacheColorHint="#000000" + android:background="#000000"/> + + <RelativeLayout android:id="@+id/no_images" + android:visibility="gone" + android:orientation="vertical" + android:layout_centerInParent="true" + android:layout_width="fill_parent" + android:layout_height="fill_parent"> + + <ImageView + android:id="@+id/no_pictures_image" + android:layout_centerInParent="true" + android:layout_gravity="center" + android:background="@drawable/ic_gallery_empty2" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + /> + + <TextView + android:layout_below="@id/no_pictures_image" + android:layout_centerHorizontal="true" + android:paddingTop="5dip" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_gravity="center" + android:text="@string/image_gallery_NoImageView_text" + android:textColor="#FFBEBEBE" + android:textSize="18dip" + /> + </RelativeLayout> + +</RelativeLayout> diff --git a/res/layout/grid.xml b/res/layout/grid.xml new file mode 100644 index 0000000..2bdbc8a --- /dev/null +++ b/res/layout/grid.xml @@ -0,0 +1,44 @@ +<!-- +/** + * Copyright (c) 2007, 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. + */ +--> + +<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" + android:layout_width="fill_parent" + android:layout_height="fill_parent" + android:background="#FFFFFF"> + + <ImageSwitcher android:id="@+id/switcher" + android:layout_width="fill_parent" + android:layout_height="fill_parent" + android:layout_alignParentTop="true" + android:layout_alignParentLeft="true" + /> + + <GridView android:id="@+id/gallery" + android:layout_width="fill_parent" + android:layout_height="fill_parent" + + android:padding="0dp" + android:verticalSpacing="0dp" + android:horizontalSpacing="0dp" + android:stretchMode="columnWidth" + + android:gravity="center" + /> + +</RelativeLayout> + diff --git a/res/layout/image_gallery_2.xml b/res/layout/image_gallery_2.xml new file mode 100644 index 0000000..d7158a9 --- /dev/null +++ b/res/layout/image_gallery_2.xml @@ -0,0 +1,58 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2007 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. +--> + +<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/root" + android:layout_width="fill_parent" + android:layout_height="fill_parent"> + + <view class="com.android.camera.ImageGallery2$GridViewSpecial" + android:id="@+id/grid" + android:layout_width="fill_parent" + android:layout_height="fill_parent" + android:listSelector="@drawable/grid_background" + /> + + <RelativeLayout android:id="@+id/no_images" + android:visibility="gone" + android:orientation="vertical" + android:layout_centerInParent="true" + android:layout_width="fill_parent" + android:layout_height="fill_parent"> + + <ImageView + android:id="@+id/no_pictures_image" + android:layout_centerInParent="true" + android:layout_gravity="center" + android:background="@drawable/ic_gallery_empty2" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + /> + + <TextView + android:layout_below="@id/no_pictures_image" + android:layout_centerHorizontal="true" + android:paddingTop="5dip" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_gravity="center" + android:text="@string/image_gallery_NoImageView_text" + android:textColor="#FFBEBEBE" + android:textSize="18dip" + /> + </RelativeLayout> + +</RelativeLayout> + diff --git a/res/layout/movie_view.xml b/res/layout/movie_view.xml new file mode 100644 index 0000000..6344d8b --- /dev/null +++ b/res/layout/movie_view.xml @@ -0,0 +1,48 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2007 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. +--> + +<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" + android:layout_width="fill_parent" + android:layout_height="fill_parent"> + + <VideoView + android:id="@+id/surface_view" + android:layout_width="fill_parent" + android:layout_height="fill_parent" + android:layout_centerInParent="true" + /> + + <LinearLayout android:id="@+id/progress_indicator" + android:orientation="vertical" + android:layout_centerInParent="true" + android:layout_width="fill_parent" + android:layout_height="wrap_content"> + + <ProgressBar android:id="@android:id/progress" + style="?android:attr/progressBarStyleLarge" + android:layout_gravity="center" + android:layout_width="wrap_content" + android:layout_height="wrap_content" /> + + <TextView android:paddingTop="5dip" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_gravity="center" + android:text="@string/loading_video" android:textSize="14sp" + android:textColor="#ffffffff" /> + </LinearLayout> + +</RelativeLayout> diff --git a/res/layout/on_screen_hint.xml b/res/layout/on_screen_hint.xml new file mode 100644 index 0000000..a56b728 --- /dev/null +++ b/res/layout/on_screen_hint.xml @@ -0,0 +1,38 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- +/* +** Copyright 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. +*/ +--> + +<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" + android:layout_width="fill_parent" + android:layout_height="fill_parent" + android:orientation="vertical" + android:background="@drawable/on_screen_hint_frame"> + + <TextView + android:id="@+id/message" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_weight="1" + android:textAppearance="@style/OnScreenHintTextAppearance.Small" + android:textColor="#ffffffff" + android:shadowColor="#BB000000" + android:shadowRadius="2.75" + /> +</LinearLayout> + + diff --git a/res/layout/photo_frame.xml b/res/layout/photo_frame.xml new file mode 100644 index 0000000..5537b1e --- /dev/null +++ b/res/layout/photo_frame.xml @@ -0,0 +1,24 @@ +<?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. +--> + +<ImageView xmlns:android="http://schemas.android.com/apk/res/android" + android:id="@+id/photo" + android:layout_width="fill_parent" + android:layout_height="fill_parent" + android:scaleType="center" + android:cropToPadding="true" + android:background="@drawable/photo_frame" + /> diff --git a/res/layout/post_picture_panel.xml b/res/layout/post_picture_panel.xml new file mode 100644 index 0000000..17cafe2 --- /dev/null +++ b/res/layout/post_picture_panel.xml @@ -0,0 +1,39 @@ +<?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. +--> + +<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" + android:visibility="gone" + android:id="@+id/post_picture_panel" + android:layout_alignBottom="@id/shutter_button" + android:layout_toLeftOf="@id/shutter_button" + android:layout_marginRight="15dip" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:orientation="horizontal"> + + <com.android.camera.ActionMenuButton + android:id="@+id/attach" + android:drawableTop="@drawable/ic_menu_attach" + android:text="@string/camera_attach" + style="@style/OnscreenActionIcon" + /> + <com.android.camera.ActionMenuButton + android:id="@+id/cancel" + android:drawableTop="@drawable/ic_menu_cancel" + android:text="@string/camera_cancel" + style="@style/OnscreenActionIcon" + /> +</LinearLayout> diff --git a/res/layout/slide_show.xml b/res/layout/slide_show.xml new file mode 100644 index 0000000..e9bfe0f --- /dev/null +++ b/res/layout/slide_show.xml @@ -0,0 +1,27 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2007 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. +--> + +<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" + android:layout_width="fill_parent" + android:layout_height="fill_parent"> + + <view android:id="@+id/imageview" + class="com.android.camera.SlideShow$ImageViewTouch" + android:layout_width="fill_parent" + android:layout_height="fill_parent" + /> + +</FrameLayout> diff --git a/res/layout/video_camera.xml b/res/layout/video_camera.xml new file mode 100644 index 0000000..da37bcd --- /dev/null +++ b/res/layout/video_camera.xml @@ -0,0 +1,127 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2007 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. +--> + +<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" + android:layout_width="fill_parent" + android:layout_height="fill_parent" + android:orientation="horizontal"> + + <com.android.camera.VideoPreview + android:id="@+id/camera_preview" + android:layout_width="fill_parent" + android:layout_height="fill_parent" + android:layout_centerInParent="true" + /> + + <ImageView + android:id="@+id/video_frame" + android:layout_width="fill_parent" + android:layout_height="fill_parent" + android:visibility="gone" + /> + + <ImageView + android:id="@+id/blackout" + android:layout_width="fill_parent" + android:layout_height="fill_parent" + android:visibility="invisible" + /> + + <com.android.camera.ShutterButton + android:id="@+id/shutter_button" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:src="@drawable/ic_camera_indicator_video" + android:background="@drawable/ic_btn_camera_background" + android:clickable="true" + android:focusable="true" + android:layout_alignParentRight="true" + android:layout_alignParentTop="true" + android:layout_marginRight="50dip" + android:layout_marginTop="10dip" + android:scaleType="center"/> + + <!-- Note: In this TextView the paddingRight="2" + attribute is required because otherwise the + text's drop shadow will be clipped. --> + <TextView + android:id="@+id/recording_time" + android:layout_width="90dip" + android:layout_height="wrap_content" + android:layout_toLeftOf="@id/shutter_button" + android:layout_alignTop="@id/shutter_button" + android:layout_marginTop="20dip" + android:layout_marginRight="6dip" + android:paddingRight="2dip" + android:shadowColor="#c0000000" + android:shadowDx="1" + android:shadowDy="1" + android:shadowRadius="1" + android:gravity="right" + android:textColor="#ffffffff" + android:textSize="20dip" + android:textStyle="bold" + android:visibility="gone"/> + + <LinearLayout + android:visibility="gone" + android:id="@+id/post_picture_panel" + android:layout_alignTop="@id/shutter_button" + android:layout_toLeftOf="@id/shutter_button" + android:layout_marginRight="15dip" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:orientation="horizontal"> + + <com.android.camera.ActionMenuButton + android:id="@+id/gallery" + android:drawableTop="@drawable/ic_menu_gallery" + android:text="@string/camera_gallery" + style="@style/OnscreenActionIcon" + /> + <com.android.camera.ActionMenuButton + android:id="@+id/play" + android:drawableTop="@drawable/ic_menu_camera_play" + android:text="@string/camera_play" + style="@style/OnscreenActionIcon" + /> + <com.android.camera.ActionMenuButton + android:id="@+id/share" + android:drawableTop="@drawable/ic_menu_share" + android:text="@string/camera_share" + style="@style/OnscreenActionIcon" + /> + <com.android.camera.ActionMenuButton + android:id="@+id/discard" + android:drawableTop="@drawable/ic_menu_delete" + android:text="@string/camera_toss" + style="@style/OnscreenActionIcon" + /> + <com.android.camera.ActionMenuButton + android:id="@+id/attach" + android:drawableTop="@drawable/ic_menu_attach" + android:text="@string/camera_attach" + style="@style/OnscreenActionIcon" + /> + <com.android.camera.ActionMenuButton + android:id="@+id/cancel" + android:drawableTop="@drawable/ic_menu_cancel" + android:text="@string/camera_cancel" + style="@style/OnscreenActionIcon" + /> + </LinearLayout> +</RelativeLayout> + diff --git a/res/layout/viewimage.xml b/res/layout/viewimage.xml new file mode 100644 index 0000000..99d76b0 --- /dev/null +++ b/res/layout/viewimage.xml @@ -0,0 +1,160 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2007 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. +--> + +<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" + android:id="@+id/rootLayout" + android:layout_width="fill_parent" + android:layout_height="fill_parent"> + + <AbsoluteLayout android:id="@+id/slideShowContainer" + android:layout_width="fill_parent" + android:layout_height="fill_parent"> + <view android:id="@+id/image1_slideShow" + class="com.android.camera.ViewImage$ImageViewTouch" + android:background="#00000000" + android:layout_width="fill_parent" + android:layout_height="fill_parent" + /> + <view android:id="@+id/image2_slideShow" + class="com.android.camera.ViewImage$ImageViewTouch" + android:background="#00000000" + android:layout_width="fill_parent" + android:layout_height="fill_parent" + /> + </AbsoluteLayout> + + <AbsoluteLayout android:id="@+id/abs" + android:layout_width="fill_parent" + android:layout_height="fill_parent"> + <view class="com.android.camera.ViewImage$ScrollHandler" android:id="@+id/scroller" + android:layout_width="fill_parent" + android:layout_height="fill_parent" + android:orientation="horizontal" + + android:background="#FF000000" + android:layout_x="0dip" + android:layout_y="0dip"> + + <view android:id="@+id/image1" + class="com.android.camera.ViewImage$ImageViewTouch" + android:background="#FF000000" + android:layout_width="0dip" + android:layout_height="fill_parent" /> + + <View android:id="@+id/padding1" + android:layout_height="fill_parent" + android:layout_width="0dip" /> + + <view android:id="@+id/image2" + class="com.android.camera.ViewImage$ImageViewTouch" + android:background="#FF000000" + android:layout_width="0dip" + android:layout_height="fill_parent"/> + + <View android:id="@+id/padding2" + android:layout_height="fill_parent" + android:layout_width="0dip" /> + + <view android:id="@+id/image3" + class="com.android.camera.ViewImage$ImageViewTouch" + android:background="#FF000000" + android:layout_width="0dip" + android:layout_height="fill_parent"/> + </view> + </AbsoluteLayout> + + <ImageView + android:visibility="gone" + android:id="@+id/shutter_button" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:src="@drawable/ic_camera_indicator_photo" + android:background="@drawable/ic_btn_camera_background" + android:clickable="true" + android:focusable="true" + android:layout_alignParentRight="true" + android:layout_alignParentTop="true" + android:layout_marginRight="50dip" + android:layout_marginTop="10dip" + android:scaleType="center"/> + + <LinearLayout + android:visibility="gone" + android:id="@+id/action_icon_panel" + android:layout_alignBottom="@id/shutter_button" + android:layout_toLeftOf="@id/shutter_button" + android:layout_marginRight="15dip" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:orientation="horizontal"> + + <com.android.camera.ActionMenuButton + android:id="@+id/gallery" + android:drawableTop="@drawable/ic_menu_gallery" + android:text="@string/camera_gallery" + style="@style/OnscreenActionIcon" + /> + <com.android.camera.ActionMenuButton + android:id="@+id/setas" + android:drawableTop="@drawable/ic_menu_set_as" + android:text="@string/camera_set" + style="@style/OnscreenActionIcon" + /> + <com.android.camera.ActionMenuButton + android:id="@+id/share" + android:drawableTop="@drawable/ic_menu_share" + android:text="@string/camera_share" + style="@style/OnscreenActionIcon" + /> + <com.android.camera.ActionMenuButton + android:id="@+id/discard" + android:drawableTop="@drawable/ic_menu_delete" + android:text="@string/camera_toss" + style="@style/OnscreenActionIcon" + /> + <com.android.camera.ActionMenuButton + android:id="@+id/attach" + android:drawableTop="@drawable/ic_menu_attach" + android:text="@string/camera_attach" + style="@style/OnscreenActionIcon" + /> + <com.android.camera.ActionMenuButton + android:id="@+id/cancel" + android:drawableTop="@drawable/ic_menu_cancel" + android:text="@string/camera_cancel" + style="@style/OnscreenActionIcon" + /> + </LinearLayout> + <ImageView android:id="@+id/prev_image" + android:clickable="true" + android:layout_width="wrap_content" android:layout_height="wrap_content" + android:layout_alignParentLeft="true" + android:layout_centerVertical="true" + android:visibility="invisible" + android:src="@drawable/btn_camera_arrow_left" + /> + + <ImageView android:id="@+id/next_image" + android:clickable="true" + android:layout_width="wrap_content" android:layout_height="wrap_content" + android:layout_alignParentRight="true" + android:layout_centerVertical="true" + android:visibility="invisible" + android:src="@drawable/btn_camera_arrow_right" + /> + +</RelativeLayout> + diff --git a/res/raw/camera_click.ogg b/res/raw/camera_click.ogg Binary files differnew file mode 100644 index 0000000..0a769ff --- /dev/null +++ b/res/raw/camera_click.ogg diff --git a/res/values-cs/arrays.xml b/res/values-cs/arrays.xml new file mode 100644 index 0000000..0583b87 --- /dev/null +++ b/res/values-cs/arrays.xml @@ -0,0 +1,24 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- Copyright (C) 2009 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <!-- no translation found for pref_camera_videoquality_entries:0 (4921712231611437934) --> + <!-- no translation found for pref_camera_videoquality_entries:1 (3206329580124804732) --> + <string-array name="pref_camera_videoquality_entryvalues"> + <item>"0"</item> + <item>"1"</item> + </string-array> +</resources> diff --git a/res/values-cs/strings.xml b/res/values-cs/strings.xml new file mode 100644 index 0000000..b0e06c1 --- /dev/null +++ b/res/values-cs/strings.xml @@ -0,0 +1,155 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- Copyright (C) 2009 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="all_images">"Všechny fotografie"</string> + <string name="all_videos">"Všechna videa"</string> + <string name="camera_label">"Fotoaparát"</string> + <string name="gallery_picker_label">"Galerie"</string> + <string name="gallery_camera_bucket_name">"Pořízené fotografie"</string> + <string name="gallery_camera_videos_bucket_name">"Pořízená videa"</string> + <string name="switch_to_video_lable">"Přepnout do režimu video"</string> + <string name="switch_to_camera_lable">"Přepnout do režimu fotoaparát"</string> + <string name="crop_label">"Oříznout fotografii"</string> + <string name="view_label">"Zobrazit fotografii"</string> + <string name="preferences_label">"Nastavení fotoaparátu"</string> + <string name="wait">"Čekejte prosím..."</string> + <string name="no_storage">"Než začnete používat fotoaparát, vložte kartu SD."</string> + <string name="not_enough_space">"Vaše karta SD je plná."</string> + <string name="preparing_sd">"Příprava karty SD..."</string> + <string name="wallpaper">"Nastavování tapety, čekejte prosím..."</string> + <string name="savingImage">"Ukládání fotografie..."</string> + <string name="runningFaceDetection">"Čekejte prosím..."</string> + <string name="flip_orientation">"Změnit orientaci"</string> + <string name="settings">"Nastavení"</string> + <string name="view">"Zobrazit"</string> + <string name="details">"Podrobnosti"</string> + <string name="rotate">"Otočit"</string> + <string name="rotate_left">"Otočit doleva"</string> + <string name="rotate_right">"Otočit doprava"</string> + <string name="slide_show">"Prezentace"</string> + <string name="capture_picture">"Fotografovat"</string> + <string name="capture_video">"Natočit video"</string> + <string name="crop_save_text">"Uložit"</string> + <string name="crop_discard_text">"Zahodit"</string> + <string name="confirm_delete_title">"Smazat"</string> + <string name="confirm_delete_message">"Fotografie bude smazána."</string> + <string name="confirm_delete_video_message">"Video bude smazáno."</string> + <string name="camera_toss">"Smazat"</string> + <string name="camera_gallery">"Galerie"</string> + <string name="camera_share">"Sdílet"</string> + <string name="camera_set">"Použít jako"</string> + <string name="camera_play">"Přehrát"</string> + <string name="camera_attach">"Připojit přílohu"</string> + <string name="camera_cancel">"Zrušit"</string> + <string name="camera_crop">"Oříznout"</string> + <string name="camera_tossing">"Mazání..."</string> + <string name="no_way_to_share_image">"Tuto fotografii nelze sdílet."</string> + <string name="no_way_to_share_video">"Toto video nelze sdílet."</string> + <string name="camera_gallery_photos_text">"Galerie"</string> + <string name="camera_pick_wallpaper">"Fotografie"</string> + <string name="camera_setas_wallpaper">"Tapeta"</string> + <string name="pref_gallery_category">"Obecné nastavení"</string> + <string name="pref_slideshow_category">"Nastavení prezentace"</string> + <string name="pref_camera_general_settings_category">"Obecné nastavení"</string> + <string name="pref_gallery_size_title">"Zobrazovaná velikost"</string> + <string name="pref_gallery_size_summary">"Vyberte zobrazovanou velikost obrázků a videí"</string> + <string name="pref_gallery_size_dialogtitle">"Velikost fotografie"</string> + <string-array name="pref_gallery_size_choices"> + <item>"Velké"</item> + <item>"Malé"</item> + </string-array> + <string name="pref_gallery_sort_title">"Řazení"</string> + <string name="pref_gallery_sort_summary">"Vyberte způsob řazení obrázků a videí"</string> + <string name="pref_gallery_sort_dialogtitle">"Řazení fotografií"</string> + <string-array name="pref_gallery_sort_choices"> + <item>"Od nejnovějších"</item> + <item>"Od nejstarších"</item> + </string-array> + <string name="pref_gallery_slideshow_interval_title">"Interval prezentace"</string> + <string name="pref_gallery_slideshow_interval_summary">"Vyberte, jak dlouho má být zobrazen každý snímek"</string> + <string name="pref_gallery_slideshow_interval_dialogtitle">"Interval prezentace"</string> + <string-array name="pref_gallery_slideshow_interval_choices"> + <item>"2 sekundy"</item> + <item>"3 sekundy"</item> + <item>"4 sekundy"</item> + </string-array> + <string name="pref_gallery_slideshow_transition_title">"Přechod v prezentaci"</string> + <string name="pref_gallery_slideshow_transition_summary">"Vyberte efekt, který má být použit při přechodu z jednoho snímku na další"</string> + <string name="pref_gallery_slideshow_transition_dialogtitle">"Přechod v prezentaci"</string> + <string-array name="pref_gallery_slideshow_transition_choices"> + <item>"Prolínat"</item> + <item>"Posouvat zleva doprava"</item> + <item>"Posouvat shora dolů"</item> + <item>"Náhodný výběr"</item> + </string-array> + <string name="pref_gallery_slideshow_repeat_title">"Opakovat prezentaci"</string> + <string name="pref_gallery_slideshow_repeat_summary">"Přehrát prezentaci více než jednou"</string> + <string name="pref_gallery_slideshow_shuffle_title">"Náhodné pořadí snímků"</string> + <string name="pref_gallery_slideshow_shuffle_summary">"Zobrazit fotografie v náhodném pořadí"</string> + <string name="pref_camera_recordlocation_title">"K fotografiím ukládat místo pořízení"</string> + <string name="pref_camera_recordlocation_summary">"V datech fotografie zaznamenat místo pořízení"</string> + <string name="pref_camera_videoquality_category">"Kvalita videa"</string> + <string name="pref_camera_videoquality_title">"Vybrat kvalitu videa"</string> + <string name="pref_camera_videoquality_entry_0">"Nízká (pro zprávy MMS)"</string> + <string name="pref_camera_videoquality_entry_1">"Vysoká (pro kartu SD)"</string> + <string name="pref_camera_videoquality_dialogtitle">"Kvalita videa"</string> + <string name="camerasettings">"Nastavení"</string> + <string name="image_gallery_NoImageView_text">"Žádná média nebyla nalezena."</string> + <string name="pref_gallery_confirm_delete_title">"Potvrdit smazání"</string> + <string name="pref_gallery_confirm_delete_summary">"Žádat potvrzení před smazáním obrázku nebo videa"</string> + <string name="details_panel_title">"Podrobnosti"</string> + <string name="details_file_size">"Velikost souboru:"</string> + <string name="details_image_resolution">"Rozlišení:"</string> + <string name="details_duration">"Délka:"</string> + <string name="details_date_taken">"Datum pořízení:"</string> + <string name="details_frame_rate">"Počet snímků za sekundu:"</string> + <string name="details_bit_rate">"Bitová rychlost:"</string> + <string name="details_codec">"Kodek:"</string> + <string name="details_format">"Formát:"</string> + <string name="details_dimension_x">"%1$d x %2$d"</string> + <string name="details_ms">"%1$02d:%2$02d"</string> + <string name="details_hms">"%1$d:%2$02d:%3$02d"</string> + <string name="details_fps">"%1$d snímků/s"</string> + <string name="details_kbps">"%1$d Kb/s"</string> + <string name="details_mbps">"%1$g Mb/s"</string> + <string name="details_ok">"OK"</string> + <string name="context_menu_header">"Možnosti fotografií"</string> + <string name="video_context_menu_header">"Možnosti videa"</string> + <string name="multiface_crop_help">"Začněte klepnutím na obličej."</string> + <string name="photos_gallery_title">"Galerie"</string> + <string name="pick_photos_gallery_title">"Vyberte fotografii"</string> + <string name="videos_gallery_title">"Galerie"</string> + <string name="pick_videos_gallery_title">"Vybrat video"</string> + <string name="loading_progress_format_string">"Zbývá <xliff:g id="COUNTER">%d</xliff:g>"</string> + <string name="sendImage">"Sdílet fotografii pomocí"</string> + <string name="setImage">"Fotografie bude použita jako"</string> + <string name="sendVideo">"Sdílet video pomocí"</string> + <string name="movieviewlabel">"Filmy"</string> + <string name="loading_video">"Načítání videa..."</string> + <string name="spaceIsLow_title">"Dochází volné místo"</string> + <string name="spaceIsLow_content">"Na vaší kartě SD je málo místa. Změňte nastavení kvality nebo smažte položky z Galerie."</string> + <string name="resume_playing_title">"Pokračovat v přehrávání videa"</string> + <string name="resume_playing_message">"Pokračovat v přehrávání od %s?"</string> + <string name="resume_playing_resume">"Pokračovat v přehrávání"</string> + <string name="resume_playing_restart">"Začít znovu"</string> + <string name="gadget_title">"Rámeček fotografie"</string> + <string name="video_file_name_format">"\'video\'-yyyy-MM-dd-HH-mm-ss"</string> + <!-- no translation found for file_info_title (1628963357466012538) --> + <skip /> + <!-- no translation found for video_exceed_mms_limit (3835075281230780010) --> + <skip /> +</resources> diff --git a/res/values-de/arrays.xml b/res/values-de/arrays.xml new file mode 100644 index 0000000..0583b87 --- /dev/null +++ b/res/values-de/arrays.xml @@ -0,0 +1,24 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- Copyright (C) 2009 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <!-- no translation found for pref_camera_videoquality_entries:0 (4921712231611437934) --> + <!-- no translation found for pref_camera_videoquality_entries:1 (3206329580124804732) --> + <string-array name="pref_camera_videoquality_entryvalues"> + <item>"0"</item> + <item>"1"</item> + </string-array> +</resources> diff --git a/res/values-de/strings.xml b/res/values-de/strings.xml new file mode 100644 index 0000000..c166287 --- /dev/null +++ b/res/values-de/strings.xml @@ -0,0 +1,155 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- Copyright (C) 2009 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="all_images">"Alle Bilder"</string> + <string name="all_videos">"Alle Videos"</string> + <string name="camera_label">"Kamera"</string> + <string name="gallery_picker_label">"Galerie"</string> + <string name="gallery_camera_bucket_name">"Kamerabilder"</string> + <string name="gallery_camera_videos_bucket_name">"Kameravideos"</string> + <string name="switch_to_video_lable">"Zu Video wechseln"</string> + <string name="switch_to_camera_lable">"Zu Kamera wechseln"</string> + <string name="crop_label">"Bild zuschneiden"</string> + <string name="view_label">"Bild anzeigen"</string> + <string name="preferences_label">"Kameraeinstellungen"</string> + <string name="wait">"Bitte warten..."</string> + <string name="no_storage">"Legen Sie vor Verwendung der Kamera eine SD-Karte ein."</string> + <string name="not_enough_space">"Ihre SD-Karte ist voll."</string> + <string name="preparing_sd">"SD-Karte wird vorbereitet..."</string> + <string name="wallpaper">"Hintergrund wird eingestellt, bitte warten..."</string> + <string name="savingImage">"Bild wird gespeichert..."</string> + <string name="runningFaceDetection">"Bitte warten..."</string> + <string name="flip_orientation">"Ausrichtung drehen"</string> + <string name="settings">"Einstellungen"</string> + <string name="view">"Anzeigen"</string> + <string name="details">"Details"</string> + <string name="rotate">"Drehen"</string> + <string name="rotate_left">"Nach links drehen"</string> + <string name="rotate_right">"Nach rechts drehen"</string> + <string name="slide_show">"Diashow"</string> + <string name="capture_picture">"Bild aufnehmen"</string> + <string name="capture_video">"Video aufnehmen"</string> + <string name="crop_save_text">"Speichern"</string> + <string name="crop_discard_text">"Verwerfen"</string> + <string name="confirm_delete_title">"Löschen"</string> + <string name="confirm_delete_message">"Das Bild wird gelöscht."</string> + <string name="confirm_delete_video_message">"Das Video wird gelöscht."</string> + <string name="camera_toss">"Löschen"</string> + <string name="camera_gallery">"Galerie"</string> + <string name="camera_share">"Senden"</string> + <string name="camera_set">"Festlegen als"</string> + <string name="camera_play">"Wiedergeben"</string> + <string name="camera_attach">"Anhängen"</string> + <string name="camera_cancel">"Abbrechen"</string> + <string name="camera_crop">"Zuschneiden"</string> + <string name="camera_tossing">"Löschvorgang..."</string> + <string name="no_way_to_share_image">"Dieses Bild kann nicht weitergeleitet werden."</string> + <string name="no_way_to_share_video">"Dieses Video kann nicht weitergeleitet werden."</string> + <string name="camera_gallery_photos_text">"Galerie"</string> + <string name="camera_pick_wallpaper">"Bilder"</string> + <string name="camera_setas_wallpaper">"Hintergrund"</string> + <string name="pref_gallery_category">"Allgemeine Einstellungen"</string> + <string name="pref_slideshow_category">"Einstellungen für Diashow"</string> + <string name="pref_camera_general_settings_category">"Allgemeine Einstellungen"</string> + <string name="pref_gallery_size_title">"Anzeigegröße"</string> + <string name="pref_gallery_size_summary">"Anzeigegröße für Bilder und Videos auswählen"</string> + <string name="pref_gallery_size_dialogtitle">"Bildgröße"</string> + <string-array name="pref_gallery_size_choices"> + <item>"Groß"</item> + <item>"Klein"</item> + </string-array> + <string name="pref_gallery_sort_title">"Sortierreihenfolge"</string> + <string name="pref_gallery_sort_summary">"Sortierreihenfolge für Bilder und Videos auswählen"</string> + <string name="pref_gallery_sort_dialogtitle">"Sortierreihenfolge für Bilder"</string> + <string-array name="pref_gallery_sort_choices"> + <item>"Neue zuerst"</item> + <item>"Neue zuletzt"</item> + </string-array> + <string name="pref_gallery_slideshow_interval_title">"Diashow-Intervall"</string> + <string name="pref_gallery_slideshow_interval_summary">"Auswählen, wie lange jedes Bild in der Diashow angezeigt werden soll"</string> + <string name="pref_gallery_slideshow_interval_dialogtitle">"Diashow-Intervall"</string> + <string-array name="pref_gallery_slideshow_interval_choices"> + <item>"2 Sekunden"</item> + <item>"3 Sekunden"</item> + <item>"4 Sekunden"</item> + </string-array> + <string name="pref_gallery_slideshow_transition_title">"Diashow - Übergang"</string> + <string name="pref_gallery_slideshow_transition_summary">"Effekt auswählen, der beim Wechsel zum nächsten Bild angewendet wird"</string> + <string name="pref_gallery_slideshow_transition_dialogtitle">"Diashow - Übergang"</string> + <string-array name="pref_gallery_slideshow_transition_choices"> + <item>"Ein- und ausblenden"</item> + <item>"Einblendung von links - rechts"</item> + <item>"Einblendung von oben - unten"</item> + <item>"Zufällige Auswahl"</item> + </string-array> + <string name="pref_gallery_slideshow_repeat_title">"Diashow erneut anzeigen?"</string> + <string name="pref_gallery_slideshow_repeat_summary">"Diashow mehrmals anzeigen"</string> + <string name="pref_gallery_slideshow_shuffle_title">"Bilder mischen"</string> + <string name="pref_gallery_slideshow_shuffle_summary">"Bilder in zufälliger Reihenfolge anzeigen"</string> + <string name="pref_camera_recordlocation_title">"Aufnahmeort in Bildern speichern"</string> + <string name="pref_camera_recordlocation_summary">"Aufnahmeort in Bilddaten speichern"</string> + <string name="pref_camera_videoquality_category">"Videoqualität"</string> + <string name="pref_camera_videoquality_title">"Videoqualität auswählen"</string> + <string name="pref_camera_videoquality_entry_0">"Niedrig (für MMS-Mitteilungen)"</string> + <string name="pref_camera_videoquality_entry_1">"Hoch (für SD-Karte)"</string> + <string name="pref_camera_videoquality_dialogtitle">"Videoqualität"</string> + <string name="camerasettings">"Einstellungen"</string> + <string name="image_gallery_NoImageView_text">"Keine Medien gefunden."</string> + <string name="pref_gallery_confirm_delete_title">"Löschvorgang bestätigen"</string> + <string name="pref_gallery_confirm_delete_summary">"Bestätigung vor dem Löschen eines Bildes oder Videos anzeigen"</string> + <string name="details_panel_title">"Details"</string> + <string name="details_file_size">"Dateigröße:"</string> + <string name="details_image_resolution">"Auflösung:"</string> + <string name="details_duration">"Dauer:"</string> + <string name="details_date_taken">"Aufnahmedatum:"</string> + <string name="details_frame_rate">"Framerate:"</string> + <string name="details_bit_rate">"Bitrate:"</string> + <string name="details_codec">"Codec:"</string> + <string name="details_format">"Format:"</string> + <string name="details_dimension_x">"%1$d x %2$d"</string> + <string name="details_ms">"%1$02d:%2$02d"</string> + <string name="details_hms">"%1$d:%2$02d:%3$02d"</string> + <string name="details_fps">"%1$d fps"</string> + <string name="details_kbps">"%1$d Kbit/s"</string> + <string name="details_mbps">"%1$g Mbit/s"</string> + <string name="details_ok">"OK"</string> + <string name="context_menu_header">"Bildoptionen"</string> + <string name="video_context_menu_header">"Videooptionen"</string> + <string name="multiface_crop_help">"Tippen Sie zum Beginnen auf ein Gesicht."</string> + <string name="photos_gallery_title">"Galerie"</string> + <string name="pick_photos_gallery_title">"Bild auswählen"</string> + <string name="videos_gallery_title">"Galerie"</string> + <string name="pick_videos_gallery_title">"Video auswählen"</string> + <string name="loading_progress_format_string">"noch <xliff:g id="COUNTER">%d</xliff:g>"</string> + <string name="sendImage">"Bild senden via"</string> + <string name="setImage">"Bild festlegen als"</string> + <string name="sendVideo">"Video weiterleiten via"</string> + <string name="movieviewlabel">"Filme"</string> + <string name="loading_video">"Video wird geladen..."</string> + <string name="spaceIsLow_title">"Geringer Speicherplatz"</string> + <string name="spaceIsLow_content">"Auf Ihrer SD-Karte ist nicht mehr genügend Speicherplatz vorhanden. Ändern Sie die Qualitätseinstellung oder löschen Sie Elemente aus der Galerie."</string> + <string name="resume_playing_title">"Mit Video fortfahren"</string> + <string name="resume_playing_message">"Mit Wiedergabe fortfahren ab %s ?"</string> + <string name="resume_playing_resume">"Mit Wiedergabe fortfahren"</string> + <string name="resume_playing_restart">"Starten"</string> + <string name="gadget_title">"Bildrahmen"</string> + <string name="video_file_name_format">"\'video\'-yyyy-MM-dd-HH-mm-ss"</string> + <!-- no translation found for file_info_title (1628963357466012538) --> + <skip /> + <!-- no translation found for video_exceed_mms_limit (3835075281230780010) --> + <skip /> +</resources> diff --git a/res/values-es/arrays.xml b/res/values-es/arrays.xml new file mode 100644 index 0000000..0583b87 --- /dev/null +++ b/res/values-es/arrays.xml @@ -0,0 +1,24 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- Copyright (C) 2009 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <!-- no translation found for pref_camera_videoquality_entries:0 (4921712231611437934) --> + <!-- no translation found for pref_camera_videoquality_entries:1 (3206329580124804732) --> + <string-array name="pref_camera_videoquality_entryvalues"> + <item>"0"</item> + <item>"1"</item> + </string-array> +</resources> diff --git a/res/values-es/strings.xml b/res/values-es/strings.xml new file mode 100644 index 0000000..5225151 --- /dev/null +++ b/res/values-es/strings.xml @@ -0,0 +1,155 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- Copyright (C) 2009 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="all_images">"Todas las imágenes"</string> + <string name="all_videos">"Todos los vídeos"</string> + <string name="camera_label">"Cámara"</string> + <string name="gallery_picker_label">"Galería"</string> + <string name="gallery_camera_bucket_name">"Imágenes de cámara"</string> + <string name="gallery_camera_videos_bucket_name">"Vídeos de cámara"</string> + <string name="switch_to_video_lable">"Cambiar a vídeo"</string> + <string name="switch_to_camera_lable">"Cambiar a cámara"</string> + <string name="crop_label">"Recortar imagen"</string> + <string name="view_label">"Ver imagen"</string> + <string name="preferences_label">"Configuración de cámara"</string> + <string name="wait">"Por favor, espera..."</string> + <string name="no_storage">"Antes de utilizar la cámara, debes insertar una tarjeta SD."</string> + <string name="not_enough_space">"La tarjeta SD está llena."</string> + <string name="preparing_sd">"Preparando tarjeta SD…"</string> + <string name="wallpaper">"Estableciendo fondo de pantalla; por favor, espera..."</string> + <string name="savingImage">"Guardando imagen..."</string> + <string name="runningFaceDetection">"Por favor, espera..."</string> + <string name="flip_orientation">"Cambiar orientación"</string> + <string name="settings">"Ajustes"</string> + <string name="view">"Ver"</string> + <string name="details">"Detalles"</string> + <string name="rotate">"Girar"</string> + <string name="rotate_left">"Girar a la izquierda"</string> + <string name="rotate_right">"Girar a la derecha"</string> + <string name="slide_show">"Presentación"</string> + <string name="capture_picture">"Capturar imagen"</string> + <string name="capture_video">"Capturar vídeo"</string> + <string name="crop_save_text">"Guardar"</string> + <string name="crop_discard_text">"Descartar"</string> + <string name="confirm_delete_title">"Suprimir"</string> + <string name="confirm_delete_message">"Se eliminará la imagen."</string> + <string name="confirm_delete_video_message">"Se eliminará el vídeo."</string> + <string name="camera_toss">"Suprimir"</string> + <string name="camera_gallery">"Galería"</string> + <string name="camera_share">"Compartir"</string> + <string name="camera_set">"Establecer como"</string> + <string name="camera_play">"Reproducir"</string> + <string name="camera_attach">"Adjuntar"</string> + <string name="camera_cancel">"Cancelar"</string> + <string name="camera_crop">"Recortar"</string> + <string name="camera_tossing">"Eliminando..."</string> + <string name="no_way_to_share_image">"Esta imagen no se puede compartir."</string> + <string name="no_way_to_share_video">"Este vídeo no se puede compartir."</string> + <string name="camera_gallery_photos_text">"Galería"</string> + <string name="camera_pick_wallpaper">"Imágenes"</string> + <string name="camera_setas_wallpaper">"Fondo de pantalla"</string> + <string name="pref_gallery_category">"Configuración general"</string> + <string name="pref_slideshow_category">"Configuración de presentación"</string> + <string name="pref_camera_general_settings_category">"Configuración general"</string> + <string name="pref_gallery_size_title">"Tamaño de visualización"</string> + <string name="pref_gallery_size_summary">"Seleccionar el tamaño de visualización de imágenes y vídeos"</string> + <string name="pref_gallery_size_dialogtitle">"Tamaño de imagen"</string> + <string-array name="pref_gallery_size_choices"> + <item>"Grande"</item> + <item>"Pequeña"</item> + </string-array> + <string name="pref_gallery_sort_title">"Orden"</string> + <string name="pref_gallery_sort_summary">"Seleccionar el orden de imágenes y vídeos"</string> + <string name="pref_gallery_sort_dialogtitle">"Ordenación de imágenes"</string> + <string-array name="pref_gallery_sort_choices"> + <item>"Más recientes primero"</item> + <item>"Más recientes al final"</item> + </string-array> + <string name="pref_gallery_slideshow_interval_title">"Intervalo de presentación"</string> + <string name="pref_gallery_slideshow_interval_summary">"Seleccionar la duración de cada diapositiva"</string> + <string name="pref_gallery_slideshow_interval_dialogtitle">"Intervalo de presentación"</string> + <string-array name="pref_gallery_slideshow_interval_choices"> + <item>"2 segundos"</item> + <item>"3 segundos"</item> + <item>"4 segundos"</item> + </string-array> + <string name="pref_gallery_slideshow_transition_title">"Transición de diapositivas"</string> + <string name="pref_gallery_slideshow_transition_summary">"Seleccionar el efecto que se aplicará al pasar de una diapositiva a otra"</string> + <string name="pref_gallery_slideshow_transition_dialogtitle">"Transición de diapositivas"</string> + <string-array name="pref_gallery_slideshow_transition_choices"> + <item>"Fundido de entrada y salida"</item> + <item>"Transición de izquierda a derecha"</item> + <item>"Transición de arriba a abajo"</item> + <item>"Selección aleatoria"</item> + </string-array> + <string name="pref_gallery_slideshow_repeat_title">"Repetir presentación"</string> + <string name="pref_gallery_slideshow_repeat_summary">"Mostrar presentación más de una vez"</string> + <string name="pref_gallery_slideshow_shuffle_title">"Reproducir diapositivas en orden aleatorio"</string> + <string name="pref_gallery_slideshow_shuffle_summary">"Mostrar imágenes en orden aleatorio"</string> + <string name="pref_camera_recordlocation_title">"Almacenar ubicación en imágenes"</string> + <string name="pref_camera_recordlocation_summary">"Registrar ubicación en datos de imagen"</string> + <string name="pref_camera_videoquality_category">"Calidad de vídeo"</string> + <string name="pref_camera_videoquality_title">"Seleccionar calidad de vídeo"</string> + <string name="pref_camera_videoquality_entry_0">"Baja (para mensajes MMS)"</string> + <string name="pref_camera_videoquality_entry_1">"Alta (para tarjeta SD)"</string> + <string name="pref_camera_videoquality_dialogtitle">"Calidad de vídeo"</string> + <string name="camerasettings">"Ajustes"</string> + <string name="image_gallery_NoImageView_text">"No se ha encontrado ningún elemento."</string> + <string name="pref_gallery_confirm_delete_title">"Confirmar eliminaciones"</string> + <string name="pref_gallery_confirm_delete_summary">"Mostrar confirmación antes de eliminar una imagen o un vídeo"</string> + <string name="details_panel_title">"Detalles"</string> + <string name="details_file_size">"Tamaño de archivo:"</string> + <string name="details_image_resolution">"Resolución:"</string> + <string name="details_duration">"Duración:"</string> + <string name="details_date_taken">"Fecha de realización:"</string> + <string name="details_frame_rate">"Frecuencia de imagen:"</string> + <string name="details_bit_rate">"Velocidad binaria:"</string> + <string name="details_codec">"Códec:"</string> + <string name="details_format">"Formato:"</string> + <string name="details_dimension_x">"%1$d x %2$d"</string> + <string name="details_ms">"%1$02d:%2$02d"</string> + <string name="details_hms">"%1$d:%2$02d:%3$02d"</string> + <string name="details_fps">"%1$d fps"</string> + <string name="details_kbps">"%1$d Kbps"</string> + <string name="details_mbps">"%1$g Mbps"</string> + <string name="details_ok">"Aceptar"</string> + <string name="context_menu_header">"Opciones de imagen"</string> + <string name="video_context_menu_header">"Opciones de vídeo"</string> + <string name="multiface_crop_help">"Selecciona una cara para empezar."</string> + <string name="photos_gallery_title">"Galería"</string> + <string name="pick_photos_gallery_title">"Seleccionar imagen"</string> + <string name="videos_gallery_title">"Galería"</string> + <string name="pick_videos_gallery_title">"Seleccionar vídeo"</string> + <string name="loading_progress_format_string">"<xliff:g id="COUNTER">%d</xliff:g> restantes"</string> + <string name="sendImage">"Compartir imagen por"</string> + <string name="setImage">"Establecer imagen como"</string> + <string name="sendVideo">"Compartir vídeo a través de"</string> + <string name="movieviewlabel">"Películas"</string> + <string name="loading_video">"Cargando vídeo…"</string> + <string name="spaceIsLow_title">"Poco espacio"</string> + <string name="spaceIsLow_content">"No queda espacio en la tarjeta SD. Cambia la configuración de calidad o elimina elementos de la galería."</string> + <string name="resume_playing_title">"Reanudar vídeo"</string> + <string name="resume_playing_message">"Reanudar reproducción a partir de %s ?"</string> + <string name="resume_playing_resume">"Reanudar reproducción"</string> + <string name="resume_playing_restart">"Volver a reproducir"</string> + <string name="gadget_title">"Picture frame"</string> + <string name="video_file_name_format">"\'video\'-yyyy-MM-dd-HH-mm-ss"</string> + <!-- no translation found for file_info_title (1628963357466012538) --> + <skip /> + <!-- no translation found for video_exceed_mms_limit (3835075281230780010) --> + <skip /> +</resources> diff --git a/res/values-fr/arrays.xml b/res/values-fr/arrays.xml new file mode 100644 index 0000000..0583b87 --- /dev/null +++ b/res/values-fr/arrays.xml @@ -0,0 +1,24 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- Copyright (C) 2009 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <!-- no translation found for pref_camera_videoquality_entries:0 (4921712231611437934) --> + <!-- no translation found for pref_camera_videoquality_entries:1 (3206329580124804732) --> + <string-array name="pref_camera_videoquality_entryvalues"> + <item>"0"</item> + <item>"1"</item> + </string-array> +</resources> diff --git a/res/values-fr/strings.xml b/res/values-fr/strings.xml new file mode 100644 index 0000000..f0e6a1f --- /dev/null +++ b/res/values-fr/strings.xml @@ -0,0 +1,155 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- Copyright (C) 2009 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="all_images">"Toutes les images"</string> + <string name="all_videos">"Toutes les vidéos"</string> + <string name="camera_label">"Appareil photo"</string> + <string name="gallery_picker_label">"Galerie"</string> + <string name="gallery_camera_bucket_name">"Photos de l\'appareil"</string> + <string name="gallery_camera_videos_bucket_name">"Vidéos de la caméra"</string> + <string name="switch_to_video_lable">"Passer en mode vidéo"</string> + <string name="switch_to_camera_lable">"Passer en mode appareil photo"</string> + <string name="crop_label">"Rogner l\'image"</string> + <string name="view_label">"Afficher l\'image"</string> + <string name="preferences_label">"Paramètres de l\'appareil photo"</string> + <string name="wait">"Veuillez patienter..."</string> + <string name="no_storage">"Veuillez insérer une carte SD avant d\'utiliser l\'appareil photo."</string> + <string name="not_enough_space">"Votre carte SD est pleine."</string> + <string name="preparing_sd">"Préparation de la carte SD..."</string> + <string name="wallpaper">"Configuration de l\'arrière-plan en cours. Veuillez patienter..."</string> + <string name="savingImage">"Enregistrement de l\'image"</string> + <string name="runningFaceDetection">"Veuillez patienter..."</string> + <string name="flip_orientation">"Orientation"</string> + <string name="settings">"Paramètres"</string> + <string name="view">"Afficher"</string> + <string name="details">"Détails"</string> + <string name="rotate">"Faire pivoter"</string> + <string name="rotate_left">"Faire pivoter à gauche"</string> + <string name="rotate_right">"Faire pivoter à droite"</string> + <string name="slide_show">"Diaporama"</string> + <string name="capture_picture">"Prendre une photo"</string> + <string name="capture_video">"Prendre une vidéo"</string> + <string name="crop_save_text">"Enregistrer"</string> + <string name="crop_discard_text">"Annuler"</string> + <string name="confirm_delete_title">"Supprimer"</string> + <string name="confirm_delete_message">"L\'image sera supprimée."</string> + <string name="confirm_delete_video_message">"La vidéo va être supprimée."</string> + <string name="camera_toss">"Supprimer"</string> + <string name="camera_gallery">"Galerie"</string> + <string name="camera_share">"Partager"</string> + <string name="camera_set">"Définir comme"</string> + <string name="camera_play">"Lire"</string> + <string name="camera_attach">"Joindre"</string> + <string name="camera_cancel">"Annuler"</string> + <string name="camera_crop">"Rogner"</string> + <string name="camera_tossing">"Suppression..."</string> + <string name="no_way_to_share_image">"Impossible de partager cette image."</string> + <string name="no_way_to_share_video">"Cette vidéo ne peut pas être partagée."</string> + <string name="camera_gallery_photos_text">"Galerie"</string> + <string name="camera_pick_wallpaper">"Images"</string> + <string name="camera_setas_wallpaper">"Arrière-plan"</string> + <string name="pref_gallery_category">"Paramètres généraux"</string> + <string name="pref_slideshow_category">"Paramètres du diaporama"</string> + <string name="pref_camera_general_settings_category">"Paramètres généraux"</string> + <string name="pref_gallery_size_title">"Taille d\'affichage"</string> + <string name="pref_gallery_size_summary">"Sélectionner la taille d\'affichage des images et des vidéos"</string> + <string name="pref_gallery_size_dialogtitle">"Taille de l\'image"</string> + <string-array name="pref_gallery_size_choices"> + <item>"Grande"</item> + <item>"Petite"</item> + </string-array> + <string name="pref_gallery_sort_title">"Ordre de tri"</string> + <string name="pref_gallery_sort_summary">"Sélectionner l\'ordre de tri des images et des vidéos"</string> + <string name="pref_gallery_sort_dialogtitle">"Trier les images"</string> + <string-array name="pref_gallery_sort_choices"> + <item>"La plus récente en premier"</item> + <item>"La plus récente en dernier"</item> + </string-array> + <string name="pref_gallery_slideshow_interval_title">"Intervalle du diaporama"</string> + <string name="pref_gallery_slideshow_interval_summary">"Sélectionner la durée d\'affichage de chaque diapositive dans le diaporama"</string> + <string name="pref_gallery_slideshow_interval_dialogtitle">"Intervalle du diaporama"</string> + <string-array name="pref_gallery_slideshow_interval_choices"> + <item>"2 secondes"</item> + <item>"3 secondes"</item> + <item>"4 secondes"</item> + </string-array> + <string name="pref_gallery_slideshow_transition_title">"Transition du diaporama"</string> + <string name="pref_gallery_slideshow_transition_summary">"Sélectionner l\'effet utilisé lors de la transition d\'une diapositive à une autre"</string> + <string name="pref_gallery_slideshow_transition_dialogtitle">"Transition du diaporama"</string> + <string-array name="pref_gallery_slideshow_transition_choices"> + <item>"Ouverture et fermeture en fondu"</item> + <item>"Glisser de gauche à droite"</item> + <item>"Glisser de haut en bas"</item> + <item>"Sélection aléatoire"</item> + </string-array> + <string name="pref_gallery_slideshow_repeat_title">"Rejouer le diaporama"</string> + <string name="pref_gallery_slideshow_repeat_summary">"Rejouer le diaporama plusieurs fois"</string> + <string name="pref_gallery_slideshow_shuffle_title">"Lecture aléatoire"</string> + <string name="pref_gallery_slideshow_shuffle_summary">"Afficher les images"</string> + <string name="pref_camera_recordlocation_title">"Enregistrer le lieu"</string> + <string name="pref_camera_recordlocation_summary">"Enregistrer la position géographique dans les données d\'image"</string> + <string name="pref_camera_videoquality_category">"Paramètres vidéo"</string> + <string name="pref_camera_videoquality_title">"Qualité vidéo"</string> + <string name="pref_camera_videoquality_entry_0">"Basse (pour les MMS)"</string> + <string name="pref_camera_videoquality_entry_1">"Haute (pour la carte SD)"</string> + <string name="pref_camera_videoquality_dialogtitle">"Qualité vidéo"</string> + <string name="camerasettings">"Paramètres"</string> + <string name="image_gallery_NoImageView_text">"Aucun fichier trouvé."</string> + <string name="pref_gallery_confirm_delete_title">"Confirmer suppressions"</string> + <string name="pref_gallery_confirm_delete_summary">"Afficher une confirmation avant de supprimer une image ou une vidéo"</string> + <string name="details_panel_title">"Détails"</string> + <string name="details_file_size">"Taille du fichier :"</string> + <string name="details_image_resolution">"Résolution :"</string> + <string name="details_duration">"Durée :"</string> + <string name="details_date_taken">"Date de création :"</string> + <string name="details_frame_rate">"Fréquence d\'images :"</string> + <string name="details_bit_rate">"Débit :"</string> + <string name="details_codec">"Codec :"</string> + <string name="details_format">"Format :"</string> + <string name="details_dimension_x">"%1$d x %2$d"</string> + <string name="details_ms">"%1$02d:%2$02d"</string> + <string name="details_hms">"%1$d:%2$02d:%3$02d"</string> + <string name="details_fps">"%1$d ips"</string> + <string name="details_kbps">"%1$d Kbits/s"</string> + <string name="details_mbps">"%1$g Mbits/s"</string> + <string name="details_ok">"OK"</string> + <string name="context_menu_header">"Options de l\'image"</string> + <string name="video_context_menu_header">"Options vidéo"</string> + <string name="multiface_crop_help">"Cliquez sur un visage pour commencer."</string> + <string name="photos_gallery_title">"Galerie"</string> + <string name="pick_photos_gallery_title">"Sélectionnez une image"</string> + <string name="videos_gallery_title">"Galerie"</string> + <string name="pick_videos_gallery_title">"Sélectionnez une vidéo"</string> + <string name="loading_progress_format_string">"<xliff:g id="COUNTER">%d</xliff:g> vignettes restantes"</string> + <string name="sendImage">"Partager l\'image via"</string> + <string name="setImage">"Définir l\'image comme"</string> + <string name="sendVideo">"Partager la vidéo via"</string> + <string name="movieviewlabel">"Films"</string> + <string name="loading_video">"Chargement de la vidéo..."</string> + <string name="spaceIsLow_title">"L\'espace restant est faible"</string> + <string name="spaceIsLow_content">"Votre carte SD est pleine. Modifiez le paramètre de qualité ou supprimez des éléments de la galerie."</string> + <string name="resume_playing_title">"Reprendre la vidéo"</string> + <string name="resume_playing_message">"Reprendre la lecture à partir de %s ?"</string> + <string name="resume_playing_resume">"Reprendre la lecture"</string> + <string name="resume_playing_restart">"Démarrer"</string> + <string name="gadget_title">"Cadre d\'image"</string> + <string name="video_file_name_format">"\'video\'-yyyy-MM-dd-HH-mm-ss"</string> + <!-- no translation found for file_info_title (1628963357466012538) --> + <skip /> + <!-- no translation found for video_exceed_mms_limit (3835075281230780010) --> + <skip /> +</resources> diff --git a/res/values-it/arrays.xml b/res/values-it/arrays.xml new file mode 100644 index 0000000..0583b87 --- /dev/null +++ b/res/values-it/arrays.xml @@ -0,0 +1,24 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- Copyright (C) 2009 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <!-- no translation found for pref_camera_videoquality_entries:0 (4921712231611437934) --> + <!-- no translation found for pref_camera_videoquality_entries:1 (3206329580124804732) --> + <string-array name="pref_camera_videoquality_entryvalues"> + <item>"0"</item> + <item>"1"</item> + </string-array> +</resources> diff --git a/res/values-it/strings.xml b/res/values-it/strings.xml new file mode 100644 index 0000000..3db66bc --- /dev/null +++ b/res/values-it/strings.xml @@ -0,0 +1,155 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- Copyright (C) 2009 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="all_images">"Tutte le foto"</string> + <string name="all_videos">"Tutti i video"</string> + <string name="camera_label">"Fotocamera"</string> + <string name="gallery_picker_label">"Galleria"</string> + <string name="gallery_camera_bucket_name">"Foto"</string> + <string name="gallery_camera_videos_bucket_name">"Video fotocamera"</string> + <string name="switch_to_video_lable">"Passa a video"</string> + <string name="switch_to_camera_lable">"Passa a fotocamera"</string> + <string name="crop_label">"Ritaglia foto"</string> + <string name="view_label">"Visualizza foto"</string> + <string name="preferences_label">"Impostazioni fotocamera"</string> + <string name="wait">"Attendere..."</string> + <string name="no_storage">"Per usare la fotocamera devi inserire una scheda SD."</string> + <string name="not_enough_space">"La scheda SD è piena."</string> + <string name="preparing_sd">"Preparazione scheda SD…"</string> + <string name="wallpaper">"Impostazione sfondo, attendi..."</string> + <string name="savingImage">"Salvataggio foto..."</string> + <string name="runningFaceDetection">"Attendere..."</string> + <string name="flip_orientation">"Capovolgi orientamento"</string> + <string name="settings">"Impostazioni"</string> + <string name="view">"Visualizza"</string> + <string name="details">"Dettagli"</string> + <string name="rotate">"Ruota"</string> + <string name="rotate_left">"Ruota a sinistra"</string> + <string name="rotate_right">"Ruota a destra"</string> + <string name="slide_show">"Presentazione"</string> + <string name="capture_picture">"Scatta foto"</string> + <string name="capture_video">"Registra video"</string> + <string name="crop_save_text">"Salva"</string> + <string name="crop_discard_text">"Annulla"</string> + <string name="confirm_delete_title">"Elimina"</string> + <string name="confirm_delete_message">"La foto verrà eliminata."</string> + <string name="confirm_delete_video_message">"Il video verrà eliminato."</string> + <string name="camera_toss">"Elimina"</string> + <string name="camera_gallery">"Galleria"</string> + <string name="camera_share">"Condividi"</string> + <string name="camera_set">"Imposta come"</string> + <string name="camera_play">"Riproduci"</string> + <string name="camera_attach">"Allega"</string> + <string name="camera_cancel">"Annulla"</string> + <string name="camera_crop">"Ritaglia"</string> + <string name="camera_tossing">"Eliminazione..."</string> + <string name="no_way_to_share_image">"Impossibile condividere la foto."</string> + <string name="no_way_to_share_video">"Impossibile condividere il video."</string> + <string name="camera_gallery_photos_text">"Galleria"</string> + <string name="camera_pick_wallpaper">"Foto"</string> + <string name="camera_setas_wallpaper">"Sfondo"</string> + <string name="pref_gallery_category">"Impostazioni generali"</string> + <string name="pref_slideshow_category">"Impostazioni presentazione"</string> + <string name="pref_camera_general_settings_category">"Impostazioni generali"</string> + <string name="pref_gallery_size_title">"Dimensioni schermo"</string> + <string name="pref_gallery_size_summary">"Seleziona dimensioni di visualizz. di foto e video"</string> + <string name="pref_gallery_size_dialogtitle">"Dimensioni foto"</string> + <string-array name="pref_gallery_size_choices"> + <item>"Grandi"</item> + <item>"Piccole"</item> + </string-array> + <string name="pref_gallery_sort_title">"Ordinamento"</string> + <string name="pref_gallery_sort_summary">"Seleziona l\'ordinamento di foto e video"</string> + <string name="pref_gallery_sort_dialogtitle">"Ordine foto"</string> + <string-array name="pref_gallery_sort_choices"> + <item>"Da più recente"</item> + <item>"Da meno recente"</item> + </string-array> + <string name="pref_gallery_slideshow_interval_title">"Intervallo presentazione"</string> + <string name="pref_gallery_slideshow_interval_summary">"Seleziona la durata di ogni diapositiva"</string> + <string name="pref_gallery_slideshow_interval_dialogtitle">"Intervallo presentazione"</string> + <string-array name="pref_gallery_slideshow_interval_choices"> + <item>"2 secondi"</item> + <item>"3 secondi"</item> + <item>"4 secondi"</item> + </string-array> + <string name="pref_gallery_slideshow_transition_title">"Transizione presentazione"</string> + <string name="pref_gallery_slideshow_transition_summary">"Seleziona l\'effetto da usare per passare da una diapositiva all\'altra"</string> + <string name="pref_gallery_slideshow_transition_dialogtitle">"Transizione diapositive"</string> + <string-array name="pref_gallery_slideshow_transition_choices"> + <item>"Dissolvenza"</item> + <item>"Da sinistra a destra"</item> + <item>"Dall\'alto verso il basso"</item> + <item>"Selezione casuale"</item> + </string-array> + <string name="pref_gallery_slideshow_repeat_title">"Ripeti presentazione"</string> + <string name="pref_gallery_slideshow_repeat_summary">"Riproduci più volte la presentazione"</string> + <string name="pref_gallery_slideshow_shuffle_title">"Riproduzione casuale"</string> + <string name="pref_gallery_slideshow_shuffle_summary">"Mostra le foto in ordine casuale"</string> + <string name="pref_camera_recordlocation_title">"Salva località nelle foto"</string> + <string name="pref_camera_recordlocation_summary">"Registra località nei dati della foto"</string> + <string name="pref_camera_videoquality_category">"Qualità video"</string> + <string name="pref_camera_videoquality_title">"Seleziona la qualità video"</string> + <string name="pref_camera_videoquality_entry_0">"Bassa (per MMS)"</string> + <string name="pref_camera_videoquality_entry_1">"Alta (per scheda SD)"</string> + <string name="pref_camera_videoquality_dialogtitle">"Qualità video"</string> + <string name="camerasettings">"Impostazioni"</string> + <string name="image_gallery_NoImageView_text">"Nessun media trovato."</string> + <string name="pref_gallery_confirm_delete_title">"Conferma eliminazioni"</string> + <string name="pref_gallery_confirm_delete_summary">"Mostra conferma prima di eliminare una foto o un video"</string> + <string name="details_panel_title">"Dettagli"</string> + <string name="details_file_size">"Dim. file:"</string> + <string name="details_image_resolution">"Risoluzione:"</string> + <string name="details_duration">"Durata:"</string> + <string name="details_date_taken">"Data scatto:"</string> + <string name="details_frame_rate">"Frequenza fotogrammi:"</string> + <string name="details_bit_rate">"Velocità in bit:"</string> + <string name="details_codec">"Codec:"</string> + <string name="details_format">"Formato:"</string> + <string name="details_dimension_x">"%1$d x %2$d"</string> + <string name="details_ms">"%1$02d:%2$02d"</string> + <string name="details_hms">"%1$d:%2$02d:%3$02d"</string> + <string name="details_fps">"%1$d fps"</string> + <string name="details_kbps">"%1$d Kbps"</string> + <string name="details_mbps">"%1$g Mbps"</string> + <string name="details_ok">"OK"</string> + <string name="context_menu_header">"Opzioni foto"</string> + <string name="video_context_menu_header">"Opzioni video"</string> + <string name="multiface_crop_help">"Tocca un viso per iniziare."</string> + <string name="photos_gallery_title">"Galleria"</string> + <string name="pick_photos_gallery_title">"Seleziona foto"</string> + <string name="videos_gallery_title">"Galleria"</string> + <string name="pick_videos_gallery_title">"Seleziona video"</string> + <string name="loading_progress_format_string">"<xliff:g id="COUNTER">%d</xliff:g> rimanenti"</string> + <string name="sendImage">"Condividi foto via"</string> + <string name="setImage">"Imposta foto come"</string> + <string name="sendVideo">"Condividi video via"</string> + <string name="movieviewlabel">"Film"</string> + <string name="loading_video">"Caricamento video..."</string> + <string name="spaceIsLow_title">"Spazio in esaurimento"</string> + <string name="spaceIsLow_content">"Lo spazio della scheda SD si sta esaurendo. Cambia l\'impostazione di qualità o elimina elementi nella galleria."</string> + <string name="resume_playing_title">"Riprendi video"</string> + <string name="resume_playing_message">"Riprendi riproduzione da %s ?"</string> + <string name="resume_playing_resume">"Riprendi riproduzione"</string> + <string name="resume_playing_restart">"Ricomincia"</string> + <string name="gadget_title">"Cornice immagine"</string> + <string name="video_file_name_format">"\'video\'-yyyy-MM-dd-HH-mm-ss"</string> + <!-- no translation found for file_info_title (1628963357466012538) --> + <skip /> + <!-- no translation found for video_exceed_mms_limit (3835075281230780010) --> + <skip /> +</resources> diff --git a/res/values-ja/arrays.xml b/res/values-ja/arrays.xml new file mode 100644 index 0000000..0583b87 --- /dev/null +++ b/res/values-ja/arrays.xml @@ -0,0 +1,24 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- Copyright (C) 2009 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <!-- no translation found for pref_camera_videoquality_entries:0 (4921712231611437934) --> + <!-- no translation found for pref_camera_videoquality_entries:1 (3206329580124804732) --> + <string-array name="pref_camera_videoquality_entryvalues"> + <item>"0"</item> + <item>"1"</item> + </string-array> +</resources> diff --git a/res/values-ja/strings.xml b/res/values-ja/strings.xml new file mode 100644 index 0000000..f5e5b1b --- /dev/null +++ b/res/values-ja/strings.xml @@ -0,0 +1,155 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- Copyright (C) 2009 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="all_images">"すべての写真"</string> + <string name="all_videos">"すべての動画"</string> + <string name="camera_label">"カメラ"</string> + <string name="gallery_picker_label">"ギャラリー"</string> + <string name="gallery_camera_bucket_name">"カメラ (写真)"</string> + <string name="gallery_camera_videos_bucket_name">"カメラ (動画)"</string> + <string name="switch_to_video_lable">"ムービーに切替"</string> + <string name="switch_to_camera_lable">"写真に切替"</string> + <string name="crop_label">"写真のトリミング"</string> + <string name="view_label">"写真を表示"</string> + <string name="preferences_label">"カメラ設定"</string> + <string name="wait">"お待ちください..."</string> + <string name="no_storage">"カメラを使用する前にSDカードを挿入してください。"</string> + <string name="not_enough_space">"SDカードがいっぱいです。"</string> + <string name="preparing_sd">"SDカードの準備中..."</string> + <string name="wallpaper">"壁紙を設定しています。しばらくお待ちください..."</string> + <string name="savingImage">"写真を保存中..."</string> + <string name="runningFaceDetection">"お待ちください..."</string> + <string name="flip_orientation">"画面の向きを変更"</string> + <string name="settings">"設定"</string> + <string name="view">"表示"</string> + <string name="details">"詳細"</string> + <string name="rotate">"回転"</string> + <string name="rotate_left">"左に回転"</string> + <string name="rotate_right">"右に回転"</string> + <string name="slide_show">"スライドショー"</string> + <string name="capture_picture">"写真撮影"</string> + <string name="capture_video">"ムービー撮影"</string> + <string name="crop_save_text">"保存"</string> + <string name="crop_discard_text">"破棄"</string> + <string name="confirm_delete_title">"削除"</string> + <string name="confirm_delete_message">"写真を削除します。"</string> + <string name="confirm_delete_video_message">"動画を削除します。"</string> + <string name="camera_toss">"削除"</string> + <string name="camera_gallery">"ギャラリー"</string> + <string name="camera_share">"共有"</string> + <string name="camera_set">"設定"</string> + <string name="camera_play">"再生"</string> + <string name="camera_attach">"添付"</string> + <string name="camera_cancel">"キャンセル"</string> + <string name="camera_crop">"トリミング"</string> + <string name="camera_tossing">"削除中..."</string> + <string name="no_way_to_share_image">"この写真は共有できません。"</string> + <string name="no_way_to_share_video">"この動画は共有できません。"</string> + <string name="camera_gallery_photos_text">"ギャラリー"</string> + <string name="camera_pick_wallpaper">"写真"</string> + <string name="camera_setas_wallpaper">"壁紙"</string> + <string name="pref_gallery_category">"全般設定"</string> + <string name="pref_slideshow_category">"スライドショー設定"</string> + <string name="pref_camera_general_settings_category">"全般設定"</string> + <string name="pref_gallery_size_title">"表示サイズ"</string> + <string name="pref_gallery_size_summary">"写真と動画の表示サイズを選択"</string> + <string name="pref_gallery_size_dialogtitle">"写真サイズ"</string> + <string-array name="pref_gallery_size_choices"> + <item>"大"</item> + <item>"小"</item> + </string-array> + <string name="pref_gallery_sort_title">"並び替え順"</string> + <string name="pref_gallery_sort_summary">"写真と動画の並び替え順を選択"</string> + <string name="pref_gallery_sort_dialogtitle">"写真の並べ替え"</string> + <string-array name="pref_gallery_sort_choices"> + <item>"日付の新しい順"</item> + <item>"日付の古い順"</item> + </string-array> + <string name="pref_gallery_slideshow_interval_title">"スライドショーの間隔"</string> + <string name="pref_gallery_slideshow_interval_summary">"各スライドの表示時間"</string> + <string name="pref_gallery_slideshow_interval_dialogtitle">"スライドショーの間隔"</string> + <string-array name="pref_gallery_slideshow_interval_choices"> + <item>"2秒"</item> + <item>"3秒"</item> + <item>"4秒"</item> + </string-array> + <string name="pref_gallery_slideshow_transition_title">"スライドショーのトランジション"</string> + <string name="pref_gallery_slideshow_transition_summary">"スライドが切り替わるときの効果を選択"</string> + <string name="pref_gallery_slideshow_transition_dialogtitle">"スライドショーのトランジション"</string> + <string-array name="pref_gallery_slideshow_transition_choices"> + <item>"フェードイン&アウト"</item> + <item>"左右にスライド"</item> + <item>"上下にスライド"</item> + <item>"ランダムに選択"</item> + </string-array> + <string name="pref_gallery_slideshow_repeat_title">"スライドショーを繰り返す"</string> + <string name="pref_gallery_slideshow_repeat_summary">"スライドショーを繰り返す"</string> + <string name="pref_gallery_slideshow_shuffle_title">"スライドのシャッフル"</string> + <string name="pref_gallery_slideshow_shuffle_summary">"写真をランダムに表示"</string> + <string name="pref_camera_recordlocation_title">"位置情報を写真に記録する"</string> + <string name="pref_camera_recordlocation_summary">"写真データに位置情報を記録します"</string> + <string name="pref_camera_videoquality_category">"動画のクオリティ"</string> + <string name="pref_camera_videoquality_title">"動画の画質を選択"</string> + <string name="pref_camera_videoquality_entry_0">"低 (MMSメッセージ向け)"</string> + <string name="pref_camera_videoquality_entry_1">"高 (SDカード向け)"</string> + <string name="pref_camera_videoquality_dialogtitle">"動画のクオリティ"</string> + <string name="camerasettings">"設定"</string> + <string name="image_gallery_NoImageView_text">"メディアが見つかりません。"</string> + <string name="pref_gallery_confirm_delete_title">"削除を確認"</string> + <string name="pref_gallery_confirm_delete_summary">"写真や動画を削除する前に確認メッセージを表示"</string> + <string name="details_panel_title">"詳細"</string> + <string name="details_file_size">"ファイルサイズ:"</string> + <string name="details_image_resolution">"解像度:"</string> + <string name="details_duration">"再生時間:"</string> + <string name="details_date_taken">"撮影日:"</string> + <string name="details_frame_rate">"フレームレート:"</string> + <string name="details_bit_rate">"ビットレート:"</string> + <string name="details_codec">"コーデック:"</string> + <string name="details_format">"形式:"</string> + <string name="details_dimension_x">"%1$dx%2$d"</string> + <string name="details_ms">"%1$02d:%2$02d"</string> + <string name="details_hms">"%1$d:%2$02d:%3$02d"</string> + <string name="details_fps">"%1$dfps"</string> + <string name="details_kbps">"%1$dKbps"</string> + <string name="details_mbps">"%1$gMbps"</string> + <string name="details_ok">"OK"</string> + <string name="context_menu_header">"写真オプション"</string> + <string name="video_context_menu_header">"動画オプション"</string> + <string name="multiface_crop_help">"顔をタップして開始します。"</string> + <string name="photos_gallery_title">"ギャラリー"</string> + <string name="pick_photos_gallery_title">"写真を選択"</string> + <string name="videos_gallery_title">"ギャラリー"</string> + <string name="pick_videos_gallery_title">"動画を選択"</string> + <string name="loading_progress_format_string">"残り<xliff:g id="COUNTER">%d</xliff:g>件"</string> + <string name="sendImage">"写真を共有"</string> + <string name="setImage">"写真を設定"</string> + <string name="sendVideo">"動画を共有"</string> + <string name="movieviewlabel">"映画"</string> + <string name="loading_video">"動画を読み込み中..."</string> + <string name="spaceIsLow_title">"空き容量が残り少なくなっています"</string> + <string name="spaceIsLow_content">"SDカードの容量が足りません。クオリティ設定を変更するか、ギャラリーからアイテムを削除してください。"</string> + <string name="resume_playing_title">"動画の再開"</string> + <string name="resume_playing_message">"再生を%sから再開しますか?"</string> + <string name="resume_playing_resume">"再生を再開"</string> + <string name="resume_playing_restart">"最初から再生"</string> + <string name="gadget_title">"写真フレーム"</string> + <string name="video_file_name_format">"\'video\'-yyyy-MM-dd-HH-mm-ss"</string> + <!-- no translation found for file_info_title (1628963357466012538) --> + <skip /> + <!-- no translation found for video_exceed_mms_limit (3835075281230780010) --> + <skip /> +</resources> diff --git a/res/values-ko/arrays.xml b/res/values-ko/arrays.xml new file mode 100644 index 0000000..0583b87 --- /dev/null +++ b/res/values-ko/arrays.xml @@ -0,0 +1,24 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- Copyright (C) 2009 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <!-- no translation found for pref_camera_videoquality_entries:0 (4921712231611437934) --> + <!-- no translation found for pref_camera_videoquality_entries:1 (3206329580124804732) --> + <string-array name="pref_camera_videoquality_entryvalues"> + <item>"0"</item> + <item>"1"</item> + </string-array> +</resources> diff --git a/res/values-ko/strings.xml b/res/values-ko/strings.xml new file mode 100644 index 0000000..304b544 --- /dev/null +++ b/res/values-ko/strings.xml @@ -0,0 +1,155 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- Copyright (C) 2009 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="all_images">"모든 사진"</string> + <string name="all_videos">"모든 동영상"</string> + <string name="camera_label">"카메라"</string> + <string name="gallery_picker_label">"갤러리"</string> + <string name="gallery_camera_bucket_name">"카메라 사진"</string> + <string name="gallery_camera_videos_bucket_name">"카메라 동영상"</string> + <string name="switch_to_video_lable">"동영상으로 전환"</string> + <string name="switch_to_camera_lable">"카메라로 전환"</string> + <string name="crop_label">"사진 자르기"</string> + <string name="view_label">"사진 보기"</string> + <string name="preferences_label">"카메라 설정"</string> + <string name="wait">"잠시 기다려 주세요..."</string> + <string name="no_storage">"카메라를 사용하기 전에 먼저 SD 카드를 넣으세요."</string> + <string name="not_enough_space">"SD 카드가 꽉 찼습니다."</string> + <string name="preparing_sd">"SD 카드 준비중..."</string> + <string name="wallpaper">"배경화면 설정 중. 잠시 기다려 주세요..."</string> + <string name="savingImage">"사진 저장 중..."</string> + <string name="runningFaceDetection">"잠시 기다려 주세요..."</string> + <string name="flip_orientation">"방향 바꾸기"</string> + <string name="settings">"설정"</string> + <string name="view">"보기"</string> + <string name="details">"상세정보"</string> + <string name="rotate">"회전"</string> + <string name="rotate_left">"왼쪽으로 회전"</string> + <string name="rotate_right">"오른쪽으로 회전"</string> + <string name="slide_show">"슬라이드쇼"</string> + <string name="capture_picture">"사진촬영"</string> + <string name="capture_video">"동영상 캡처"</string> + <string name="crop_save_text">"저장"</string> + <string name="crop_discard_text">"무시"</string> + <string name="confirm_delete_title">"삭제"</string> + <string name="confirm_delete_message">"사진이 삭제됩니다."</string> + <string name="confirm_delete_video_message">"동영상이 삭제됩니다."</string> + <string name="camera_toss">"삭제"</string> + <string name="camera_gallery">"갤러리"</string> + <string name="camera_share">"공유"</string> + <string name="camera_set">"사진 설정"</string> + <string name="camera_play">"재생"</string> + <string name="camera_attach">"첨부"</string> + <string name="camera_cancel">"취소"</string> + <string name="camera_crop">"자르기"</string> + <string name="camera_tossing">"삭제 중..."</string> + <string name="no_way_to_share_image">"공유할 수 없는 사진입니다."</string> + <string name="no_way_to_share_video">"공유할 수 없는 동영상입니다."</string> + <string name="camera_gallery_photos_text">"갤러리"</string> + <string name="camera_pick_wallpaper">"사진"</string> + <string name="camera_setas_wallpaper">"배경화면"</string> + <string name="pref_gallery_category">"일반 설정"</string> + <string name="pref_slideshow_category">"슬라이드쇼 설정"</string> + <string name="pref_camera_general_settings_category">"일반 설정"</string> + <string name="pref_gallery_size_title">"디스플레이 크기"</string> + <string name="pref_gallery_size_summary">"사진 및 동영상 표시 크기 선택"</string> + <string name="pref_gallery_size_dialogtitle">"사진 크기"</string> + <string-array name="pref_gallery_size_choices"> + <item>"크게"</item> + <item>"작게"</item> + </string-array> + <string name="pref_gallery_sort_title">"정렬 순서"</string> + <string name="pref_gallery_sort_summary">"사진 및 동영상 정렬 순서 선택"</string> + <string name="pref_gallery_sort_dialogtitle">"사진 정렬"</string> + <string-array name="pref_gallery_sort_choices"> + <item>"가장 최근 사진 먼저"</item> + <item>"가장 최근 사진 마지막에"</item> + </string-array> + <string name="pref_gallery_slideshow_interval_title">"슬라이드쇼 간격"</string> + <string name="pref_gallery_slideshow_interval_summary">"쇼에서 각 슬라이드를 표시할 시간 선택"</string> + <string name="pref_gallery_slideshow_interval_dialogtitle">"슬라이드쇼 간격"</string> + <string-array name="pref_gallery_slideshow_interval_choices"> + <item>"2초"</item> + <item>"3초"</item> + <item>"4초"</item> + </string-array> + <string name="pref_gallery_slideshow_transition_title">"슬라이드쇼 화면전환"</string> + <string name="pref_gallery_slideshow_transition_summary">"슬라이드 간에 이동할 때 사용할 효과 선택"</string> + <string name="pref_gallery_slideshow_transition_dialogtitle">"슬라이드쇼 화면전환"</string> + <string-array name="pref_gallery_slideshow_transition_choices"> + <item>"페이드 인/아웃"</item> + <item>"왼쪽에서 오른쪽으로/오른쪽에서 왼쪽으로"</item> + <item>"위에서 아래로/아래에서 위로"</item> + <item>"무작위 선택"</item> + </string-array> + <string name="pref_gallery_slideshow_repeat_title">"슬라이드쇼 반복"</string> + <string name="pref_gallery_slideshow_repeat_summary">"슬라이드쇼를 한 번 이상 재생"</string> + <string name="pref_gallery_slideshow_shuffle_title">"슬라이드 섞기"</string> + <string name="pref_gallery_slideshow_shuffle_summary">"사진을 무작위 순서로 표시"</string> + <string name="pref_camera_recordlocation_title">"사진에 위치 저장"</string> + <string name="pref_camera_recordlocation_summary">"사진 데이터에 위치 기록"</string> + <string name="pref_camera_videoquality_category">"동영상 화질"</string> + <string name="pref_camera_videoquality_title">"동영상 화질 선택"</string> + <string name="pref_camera_videoquality_entry_0">"낮음(MMS 메시지용)"</string> + <string name="pref_camera_videoquality_entry_1">"높음(SD 카드용)"</string> + <string name="pref_camera_videoquality_dialogtitle">"동영상 화질"</string> + <string name="camerasettings">"설정"</string> + <string name="image_gallery_NoImageView_text">"미디어 파일이 없습니다."</string> + <string name="pref_gallery_confirm_delete_title">"삭제 확인"</string> + <string name="pref_gallery_confirm_delete_summary">"사진 및 동영상 삭제 전 확인 표시"</string> + <string name="details_panel_title">"상세정보"</string> + <string name="details_file_size">"파일 크기:"</string> + <string name="details_image_resolution">"해상도:"</string> + <string name="details_duration">"재생 시간:"</string> + <string name="details_date_taken">"찍은 날짜:"</string> + <string name="details_frame_rate">"프레임 속도:"</string> + <string name="details_bit_rate">"비트 전송률:"</string> + <string name="details_codec">"코덱:"</string> + <string name="details_format">"형식:"</string> + <string name="details_dimension_x">"%1$d x %2$d"</string> + <string name="details_ms">"%1$02d:%2$02d"</string> + <string name="details_hms">"%1$d:%2$02d:%3$02d"</string> + <string name="details_fps">"%1$dfps"</string> + <string name="details_kbps">"%1$dKbps"</string> + <string name="details_mbps">"%1$gMbps"</string> + <string name="details_ok">"확인"</string> + <string name="context_menu_header">"사진 옵션"</string> + <string name="video_context_menu_header">"동영상 옵션"</string> + <string name="multiface_crop_help">"시작하려면 얼굴을 탭하세요."</string> + <string name="photos_gallery_title">"갤러리"</string> + <string name="pick_photos_gallery_title">"사진 선택"</string> + <string name="videos_gallery_title">"갤러리"</string> + <string name="pick_videos_gallery_title">"동영상 선택"</string> + <string name="loading_progress_format_string">"<xliff:g id="COUNTER">%d</xliff:g>개 남음"</string> + <string name="sendImage">"사진 공유 응용프로그램"</string> + <string name="setImage">"사진 설정"</string> + <string name="sendVideo">"동영상 공유 응용프로그램"</string> + <string name="movieviewlabel">"영화"</string> + <string name="loading_video">"동영상 로드 중..."</string> + <string name="spaceIsLow_title">"공간부족"</string> + <string name="spaceIsLow_content">"SD 카드의 공간이 부족합니다. 화질 설정을 변경하거나 갤러리에서 항목을 삭제하세요."</string> + <string name="resume_playing_title">"동영상 다시 시작"</string> + <string name="resume_playing_message">"%s에서 재생을 다시 시작하시겠습니까?"</string> + <string name="resume_playing_resume">"재생 다시 시작"</string> + <string name="resume_playing_restart">"시작"</string> + <string name="gadget_title">"사진 프레임"</string> + <string name="video_file_name_format">"\'video\'-yyyy-MM-dd-HH-mm-ss"</string> + <!-- no translation found for file_info_title (1628963357466012538) --> + <skip /> + <!-- no translation found for video_exceed_mms_limit (3835075281230780010) --> + <skip /> +</resources> diff --git a/res/values-nb/strings.xml b/res/values-nb/strings.xml new file mode 100644 index 0000000..c268ecb --- /dev/null +++ b/res/values-nb/strings.xml @@ -0,0 +1,156 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- Copyright (C) 2009 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="all_images">"Alle bilder"</string> + <string name="all_videos">"Alle videoer"</string> + <string name="camera_label">"Kamera"</string> + <string name="gallery_picker_label">"Galleri"</string> + <string name="gallery_camera_bucket_name">"Bilder fra kamera"</string> + <string name="gallery_camera_videos_bucket_name">"Videoer fra kamera"</string> + <string name="switch_to_video_lable">"Bytt til video"</string> + <string name="switch_to_camera_lable">"Bytt til kamera"</string> + <string name="crop_label">"Beskjær bilde"</string> + <string name="view_label">"Se på bilde"</string> + <string name="preferences_label">"Kamerainnstillinger"</string> + <string name="wait">"Vent litt…"</string> + <string name="no_storage">"Sett inn et minnekort før du bruker kameraet."</string> + <string name="not_enough_space">"Minnekortet er fullt."</string> + <string name="preparing_sd">"Forbereder minnekort…"</string> + <string name="wallpaper">"Setter bakgrunnsbilde, vent litt…"</string> + <string name="savingImage">"Lagrer bilde…"</string> + <string name="runningFaceDetection">"Vent litt…"</string> + <string name="flip_orientation">"Roter skjerm"</string> + <string name="settings">"Innstillinger"</string> + <string name="view">"Vis"</string> + <string name="details">"Detaljer"</string> + <string name="rotate">"Roter"</string> + <string name="rotate_left">"Roter mot venstre"</string> + <string name="rotate_right">"Roter mot høyre"</string> + <string name="slide_show">"Lysbildevisning"</string> + <string name="capture_picture">"Ta bilde"</string> + <string name="capture_video">"Ta opp video"</string> + <string name="crop_save_text">"Lagre"</string> + <string name="crop_discard_text">"Forkast"</string> + <string name="confirm_delete_title">"Slett"</string> + <string name="confirm_delete_message">"Bildet vil bli slettet."</string> + <string name="confirm_delete_video_message">"Videoen vil bli slettet."</string> + <string name="camera_toss">"Slett"</string> + <string name="camera_gallery">"Galleri"</string> + <string name="camera_share">"Del"</string> + <string name="camera_set">"Bruk som"</string> + <string name="camera_play">"Spill"</string> + <string name="camera_attach">"Legg ved"</string> + <string name="camera_cancel">"Avbryt"</string> + <string name="camera_crop">"Beskjær"</string> + <string name="camera_tossing">"Sletter…"</string> + <string name="no_way_to_share_image">"Bildet kan ikke deles."</string> + <string name="no_way_to_share_video">"Videoen kan ikke deles."</string> + <string name="camera_gallery_photos_text">"Galleri"</string> + <string name="camera_pick_wallpaper">"Bilder"</string> + <string name="camera_setas_wallpaper">"Bakgrunnsbilder"</string> + <string name="pref_gallery_category">"Generelle innstillinger"</string> + <string name="pref_slideshow_category">"Innstillinger for lysbildevisning"</string> + <string name="pref_camera_general_settings_category">"Generelle innstillinger"</string> + <string name="pref_gallery_size_title">"Bildestørrelse"</string> + <string name="pref_gallery_size_summary">"Velg hvor stort bilder skal vises"</string> + <string name="pref_gallery_size_dialogtitle">"Bildestørrelse"</string> + <string-array name="pref_gallery_size_choices"> + <item>"Stor"</item> + <item>"Liten"</item> + </string-array> + <string name="pref_gallery_sort_title">"Bildesortering"</string> + <string name="pref_gallery_sort_summary">"Velg i hvilken rekkefølge bildene skal sorteres"</string> + <string name="pref_gallery_sort_dialogtitle">"Bildesortering"</string> + <string-array name="pref_gallery_sort_choices"> + <item>"Nyeste først"</item> + <item>"Nyeste sist"</item> + </string-array> + <string name="pref_gallery_slideshow_interval_title">"Pause i lysbildevisning"</string> + <string name="pref_gallery_slideshow_interval_summary">"Velg hvor lenge hvert lysbilde skal vises"</string> + <string name="pref_gallery_slideshow_interval_dialogtitle">"Pause i lysbildevisning"</string> + <string-array name="pref_gallery_slideshow_interval_choices"> + <item>"2 sekunder"</item> + <item>"3 sekunder"</item> + <item>"4 sekunder"</item> + </string-array> + <string name="pref_gallery_slideshow_transition_title">"Lysbildeovergang"</string> + <string name="pref_gallery_slideshow_transition_summary">"Velg effekten som skal brukes mellom lysbilder"</string> + <string name="pref_gallery_slideshow_transition_dialogtitle">"Lysbildevergang"</string> + <string-array name="pref_gallery_slideshow_transition_choices"> + <item>"Ton inn og ut"</item> + <item>"Skli venstre - høyre"</item> + <item>"Skli opp - ned"</item> + <item>"Tilfeldig"</item> + </string-array> + <string name="pref_gallery_slideshow_repeat_title">"Gjenta lysbildeserie"</string> + <string name="pref_gallery_slideshow_repeat_summary">"Vis lydbildeserie mer enn en gang"</string> + <string name="pref_gallery_slideshow_shuffle_title">"Stokk lysbilder"</string> + <string name="pref_gallery_slideshow_shuffle_summary">"Vis bilder i tilfeldig rekkefølge"</string> + <string name="pref_camera_recordlocation_title">"Lagre sted i bilder"</string> + <string name="pref_camera_recordlocation_summary">"Lagre sted i bildedata"</string> + <string name="pref_camera_videoquality_category">"Videokvalitet"</string> + <string name="pref_camera_videoquality_title">"Videokvalitet"</string> + <string name="pref_camera_videoquality_entry_0">"Lav (for MMS-meldinger)"</string> + <string name="pref_camera_videoquality_entry_1">"Høy (for minnekort)"</string> + <string name="pref_camera_videoquality_dialogtitle">"Videokvalitet"</string> + <string name="camerasettings">"Innstillinger"</string> + <string name="image_gallery_NoImageView_text">"Fant ingen bilder."</string> + <string name="pref_gallery_confirm_delete_title">"Bekreft sletting"</string> + <string name="pref_gallery_confirm_delete_summary">"Vis bekreftelse før bilder slettes"</string> + <string name="details_panel_title">"Detaljer"</string> + <string name="details_file_size">"Filstørrelse:"</string> + <string name="details_image_resolution">"Oppløsning:"</string> + <string name="details_duration">"Varighet:"</string> + <string name="details_date_taken">"Dato tatt:"</string> + <string name="details_frame_rate">"Bildefrekvens:"</string> + <string name="details_bit_rate">"Bitrate:"</string> + <string name="details_codec">"Kodek:"</string> + <string name="details_format">"Format:"</string> + <string name="details_dimension_x">"%1$d x %2$d"</string> + <string name="details_ms">"%1$02d:%2$02d"</string> + <string name="details_hms">"%1$d:%2$02d:%3$02d"</string> + <string name="details_fps">"%1$d fps"</string> + <string name="details_kbps">"%1$d kbps"</string> + <string name="details_mbps">"%1$g Mbps"</string> + <string name="details_ok">"OK"</string> + <string name="context_menu_header">"Bildeinnstillinger"</string> + <string name="video_context_menu_header">"Videoinnstillinger"</string> + <string name="multiface_crop_help">"Trykk på et ansikt for å begynne."</string> + <string name="photos_gallery_title">"Galleri"</string> + <string name="pick_photos_gallery_title">"Velg bilde"</string> + <string name="videos_gallery_title">"Galleri"</string> + <string name="pick_videos_gallery_title">"Velg video"</string> + <string name="loading_progress_format_string">"<xliff:g id="COUNTER">%d</xliff:g> gjenstår"</string> + <string name="sendImage">"Del bilde via"</string> + <string name="setImage">"Bruk bilde som"</string> + <string name="sendVideo">"Del video via"</string> + <string name="movieviewlabel">"Filmer"</string> + <string name="loading_video">"Laster video…"</string> + <string name="spaceIsLow_title">"Lite plass"</string> + <string name="spaceIsLow_content">"Minnekortet begynner å gå tom for plass. Endre kvalitetsinnstillingen eller slett bilder fra galleriet."</string> + <string name="resume_playing_title">"Fortsett avspilling"</string> + <string name="resume_playing_message">"Fortsett avspilling fra %s?"</string> + <string name="resume_playing_resume">"Fortsett avspilling"</string> + <string name="resume_playing_restart">"Begynn på nytt"</string> + <string name="gadget_title">"Bilderamme"</string> + <!-- no translation found for video_file_name_format (8555507706353616970) --> + <skip /> + <!-- no translation found for file_info_title (1628963357466012538) --> + <skip /> + <!-- no translation found for video_exceed_mms_limit (3835075281230780010) --> + <skip /> +</resources> diff --git a/res/values-nl/arrays.xml b/res/values-nl/arrays.xml new file mode 100644 index 0000000..0583b87 --- /dev/null +++ b/res/values-nl/arrays.xml @@ -0,0 +1,24 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- Copyright (C) 2009 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <!-- no translation found for pref_camera_videoquality_entries:0 (4921712231611437934) --> + <!-- no translation found for pref_camera_videoquality_entries:1 (3206329580124804732) --> + <string-array name="pref_camera_videoquality_entryvalues"> + <item>"0"</item> + <item>"1"</item> + </string-array> +</resources> diff --git a/res/values-nl/strings.xml b/res/values-nl/strings.xml new file mode 100644 index 0000000..c02a861 --- /dev/null +++ b/res/values-nl/strings.xml @@ -0,0 +1,155 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- Copyright (C) 2009 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="all_images">"Alle foto\'s"</string> + <string name="all_videos">"Alle video\'s"</string> + <string name="camera_label">"Camera"</string> + <string name="gallery_picker_label">"Galerij"</string> + <string name="gallery_camera_bucket_name">"Camerafoto\'s"</string> + <string name="gallery_camera_videos_bucket_name">"Cameravideo\'s"</string> + <string name="switch_to_video_lable">"Overschakelen naar video"</string> + <string name="switch_to_camera_lable">"Overschakelen naar camera"</string> + <string name="crop_label">"Foto bijsnijden"</string> + <string name="view_label">"Foto weergeven"</string> + <string name="preferences_label">"Camera-instellingen"</string> + <string name="wait">"Een ogenblik geduld..."</string> + <string name="no_storage">"Plaats een SD-kaart voordat u de camera gebruikt."</string> + <string name="not_enough_space">"De SD-kaart is vol."</string> + <string name="preparing_sd">"SD-kaart voorbereiden…"</string> + <string name="wallpaper">"Achtergrond wordt ingesteld. Een ogenblik geduld..."</string> + <string name="savingImage">"Foto opslaan..."</string> + <string name="runningFaceDetection">"Een ogenblik geduld..."</string> + <string name="flip_orientation">"Stand draaien"</string> + <string name="settings">"Instellingen"</string> + <string name="view">"Weergeven"</string> + <string name="details">"Details"</string> + <string name="rotate">"Draaien"</string> + <string name="rotate_left">"Linksom draaien"</string> + <string name="rotate_right">"Rechtsom draaien"</string> + <string name="slide_show">"Diavoorstelling"</string> + <string name="capture_picture">"Foto nemen"</string> + <string name="capture_video">"Video opnemen"</string> + <string name="crop_save_text">"Opslaan"</string> + <string name="crop_discard_text">"Ongedaan maken"</string> + <string name="confirm_delete_title">"Verwijderen"</string> + <string name="confirm_delete_message">"De foto wordt verwijderd."</string> + <string name="confirm_delete_video_message">"De video wordt verwijderd"</string> + <string name="camera_toss">"Verwijderen"</string> + <string name="camera_gallery">"Galerij"</string> + <string name="camera_share">"Delen"</string> + <string name="camera_set">"Instellen als"</string> + <string name="camera_play">"Afspelen"</string> + <string name="camera_attach">"Bijvoegen"</string> + <string name="camera_cancel">"Annuleren"</string> + <string name="camera_crop">"Bijsnijden"</string> + <string name="camera_tossing">"Verwijderen..."</string> + <string name="no_way_to_share_image">"Deze foto kan niet worden gedeeld."</string> + <string name="no_way_to_share_video">"Deze video kan niet worden gedeeld."</string> + <string name="camera_gallery_photos_text">"Galerij"</string> + <string name="camera_pick_wallpaper">"Foto\'s"</string> + <string name="camera_setas_wallpaper">"Achtergrond"</string> + <string name="pref_gallery_category">"Algemene instellingen"</string> + <string name="pref_slideshow_category">"Instellingen van diavoorstelling"</string> + <string name="pref_camera_general_settings_category">"Algemene instellingen"</string> + <string name="pref_gallery_size_title">"Weergavegrootte"</string> + <string name="pref_gallery_size_summary">"De weergavegrootte van foto\'s en video\'s selecteren"</string> + <string name="pref_gallery_size_dialogtitle">"Grootte van foto"</string> + <string-array name="pref_gallery_size_choices"> + <item>"Groot"</item> + <item>"Klein"</item> + </string-array> + <string name="pref_gallery_sort_title">"Sorteervolgorde"</string> + <string name="pref_gallery_sort_summary">"De sorteervolgorde van foto\'s en video\'s selecteren"</string> + <string name="pref_gallery_sort_dialogtitle">"Foto\'s sorteren"</string> + <string-array name="pref_gallery_sort_choices"> + <item>"Nieuwste eerst"</item> + <item>"Nieuwste eerst"</item> + </string-array> + <string name="pref_gallery_slideshow_interval_title">"Interval in diavoorstelling"</string> + <string name="pref_gallery_slideshow_interval_summary">"Selecteren hoe lang elke dia wordt weergegeven in de voorstelling"</string> + <string name="pref_gallery_slideshow_interval_dialogtitle">"Interval in diavoorstelling"</string> + <string-array name="pref_gallery_slideshow_interval_choices"> + <item>"2 seconden"</item> + <item>"3 seconden"</item> + <item>"4 seconden"</item> + </string-array> + <string name="pref_gallery_slideshow_transition_title">"Overgangen in diavoorstellingen"</string> + <string name="pref_gallery_slideshow_transition_summary">"Het effect selecteren dat wordt gebruikt om naar de volgende dia te gaan"</string> + <string name="pref_gallery_slideshow_transition_dialogtitle">"Overgangen in diavoorstellingen"</string> + <string-array name="pref_gallery_slideshow_transition_choices"> + <item>"Infaden/uitfaden"</item> + <item>"Dia vanaf linkerkant/rechterkant"</item> + <item>"Dia vanaf bovenkant/onderkant"</item> + <item>"Willekeurige selectie"</item> + </string-array> + <string name="pref_gallery_slideshow_repeat_title">"Diavoorstelling herhalen"</string> + <string name="pref_gallery_slideshow_repeat_summary">"Diavoorstelling meerdere keren afspelen"</string> + <string name="pref_gallery_slideshow_shuffle_title">"Dia\'s in willekeurige volgorde weergeven"</string> + <string name="pref_gallery_slideshow_shuffle_summary">"Foto\'s in willekeurige volgorde weergeven"</string> + <string name="pref_camera_recordlocation_title">"Locatie opslaan in foto\'s"</string> + <string name="pref_camera_recordlocation_summary">"Locatie vastleggen in de gegevens van de foto"</string> + <string name="pref_camera_videoquality_category">"Videokwaliteit"</string> + <string name="pref_camera_videoquality_title">"Videokwaliteit selecteren"</string> + <string name="pref_camera_videoquality_entry_0">"Laag (voor MMS-berichten)"</string> + <string name="pref_camera_videoquality_entry_1">"Hoog (voor SD-kaart)"</string> + <string name="pref_camera_videoquality_dialogtitle">"Videokwaliteit"</string> + <string name="camerasettings">"Instellingen"</string> + <string name="image_gallery_NoImageView_text">"Geen medium gevonden."</string> + <string name="pref_gallery_confirm_delete_title">"Verwijderen bevestigen"</string> + <string name="pref_gallery_confirm_delete_summary">"Bevestiging weergeven voordat een foto of video wordt verwijderd"</string> + <string name="details_panel_title">"Details"</string> + <string name="details_file_size">"Bestandsgrootte:"</string> + <string name="details_image_resolution">"Resolutie:"</string> + <string name="details_duration">"Duur:"</string> + <string name="details_date_taken">"Gemaakt op:"</string> + <string name="details_frame_rate">"Framesnelheid:"</string> + <string name="details_bit_rate">"Bitsnelheid:"</string> + <string name="details_codec">"Codec:"</string> + <string name="details_format">"Indeling:"</string> + <string name="details_dimension_x">"%1$d x %2$d"</string> + <string name="details_ms">"%1$02d:%2$02d"</string> + <string name="details_hms">"%1$d:%2$02d:%3$02d"</string> + <string name="details_fps">"%1$d fps"</string> + <string name="details_kbps">"%1$d Kbps"</string> + <string name="details_mbps">"%1$g Mbps"</string> + <string name="details_ok">"OK"</string> + <string name="context_menu_header">"Opties voor foto\'s"</string> + <string name="video_context_menu_header">"Video-opties"</string> + <string name="multiface_crop_help">"Tik op een gezicht om te beginnen."</string> + <string name="photos_gallery_title">"Galerij"</string> + <string name="pick_photos_gallery_title">"Foto selecteren"</string> + <string name="videos_gallery_title">"Galerij"</string> + <string name="pick_videos_gallery_title">"Video selecteren"</string> + <string name="loading_progress_format_string">"<xliff:g id="COUNTER">%d</xliff:g> resterend"</string> + <string name="sendImage">"Foto delen via"</string> + <string name="setImage">"Foto instellen als"</string> + <string name="sendVideo">"Video delen via"</string> + <string name="movieviewlabel">"Films"</string> + <string name="loading_video">"Video laden..."</string> + <string name="spaceIsLow_title">"Er is weinig ruimte"</string> + <string name="spaceIsLow_content">"Er is weinig ruimte beschikbaar op uw SD-kaart. U kunt de kwaliteitsinstelling wijzigen of items uit de galerij verwijderen."</string> + <string name="resume_playing_title">"Video hervatten"</string> + <string name="resume_playing_message">"Afspelen hervatten vanaf %s ?"</string> + <string name="resume_playing_resume">"Afspelen hervatten"</string> + <string name="resume_playing_restart">"Opnieuw starten"</string> + <string name="gadget_title">"Fotolijstje"</string> + <string name="video_file_name_format">"\'video\'-yyyy-MM-dd-HH-mm-ss"</string> + <!-- no translation found for file_info_title (1628963357466012538) --> + <skip /> + <!-- no translation found for video_exceed_mms_limit (3835075281230780010) --> + <skip /> +</resources> diff --git a/res/values-pl/arrays.xml b/res/values-pl/arrays.xml new file mode 100644 index 0000000..0583b87 --- /dev/null +++ b/res/values-pl/arrays.xml @@ -0,0 +1,24 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- Copyright (C) 2009 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <!-- no translation found for pref_camera_videoquality_entries:0 (4921712231611437934) --> + <!-- no translation found for pref_camera_videoquality_entries:1 (3206329580124804732) --> + <string-array name="pref_camera_videoquality_entryvalues"> + <item>"0"</item> + <item>"1"</item> + </string-array> +</resources> diff --git a/res/values-pl/strings.xml b/res/values-pl/strings.xml new file mode 100644 index 0000000..7023e80 --- /dev/null +++ b/res/values-pl/strings.xml @@ -0,0 +1,155 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- Copyright (C) 2009 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="all_images">"Wszystkie zdjęcia"</string> + <string name="all_videos">"Wszystkie filmy"</string> + <string name="camera_label">"Aparat"</string> + <string name="gallery_picker_label">"Galeria"</string> + <string name="gallery_camera_bucket_name">"Zdjęcia z aparatu"</string> + <string name="gallery_camera_videos_bucket_name">"Filmy z aparatu"</string> + <string name="switch_to_video_lable">"Przełącz na wideo"</string> + <string name="switch_to_camera_lable">"Przełącz na aparat"</string> + <string name="crop_label">"Przytnij zdjęcie"</string> + <string name="view_label">"Wyświetl zdjęcie"</string> + <string name="preferences_label">"Ustawienia aparatu"</string> + <string name="wait">"Poczekaj…"</string> + <string name="no_storage">"Zanim zaczniesz korzystać z aparatu fotograficznego, włóż kartę SD."</string> + <string name="not_enough_space">"Karta SD jest pełna."</string> + <string name="preparing_sd">"Przygotowywanie karty SD..."</string> + <string name="wallpaper">"Ustawianie tapety, poczekaj…"</string> + <string name="savingImage">"Trwa zapisywanie zdjęcia…"</string> + <string name="runningFaceDetection">"Poczekaj…"</string> + <string name="flip_orientation">"Zmień orientację"</string> + <string name="settings">"Ustawienia"</string> + <string name="view">"Wyświetl"</string> + <string name="details">"Szczegóły"</string> + <string name="rotate">"Obróć"</string> + <string name="rotate_left">"Obróć w lewo"</string> + <string name="rotate_right">"Obróć w prawo"</string> + <string name="slide_show">"Pokaz slajdów"</string> + <string name="capture_picture">"Zrób zdjęcie"</string> + <string name="capture_video">"Nagraj film wideo"</string> + <string name="crop_save_text">"Zapisz"</string> + <string name="crop_discard_text">"Odrzuć"</string> + <string name="confirm_delete_title">"Usuń"</string> + <string name="confirm_delete_message">"Zdjęcie zostanie usunięte."</string> + <string name="confirm_delete_video_message">"Film wideo zostanie usunięty."</string> + <string name="camera_toss">"Usuń"</string> + <string name="camera_gallery">"Galeria"</string> + <string name="camera_share">"Prześlij"</string> + <string name="camera_set">"Ustaw jako"</string> + <string name="camera_play">"Odtwórz"</string> + <string name="camera_attach">"Załącz"</string> + <string name="camera_cancel">"Anuluj"</string> + <string name="camera_crop">"Przytnij"</string> + <string name="camera_tossing">"Trwa usuwanie…"</string> + <string name="no_way_to_share_image">"Nie można przesłać tego zdjęcia."</string> + <string name="no_way_to_share_video">"Nie można przesłać tego filmu."</string> + <string name="camera_gallery_photos_text">"Galeria"</string> + <string name="camera_pick_wallpaper">"Zdjęcia"</string> + <string name="camera_setas_wallpaper">"Tapeta"</string> + <string name="pref_gallery_category">"Ustawienia ogólne"</string> + <string name="pref_slideshow_category">"Ustawienia pokazu slajdów"</string> + <string name="pref_camera_general_settings_category">"Ustawienia ogólne"</string> + <string name="pref_gallery_size_title">"Rozmiar zdjęć i filmów"</string> + <string name="pref_gallery_size_summary">"Ustaw wyświetlany rozmiar zdjęć i filmów"</string> + <string name="pref_gallery_size_dialogtitle">"Rozmiar"</string> + <string-array name="pref_gallery_size_choices"> + <item>"Duży"</item> + <item>"Mały"</item> + </string-array> + <string name="pref_gallery_sort_title">"Kolejność sortowania"</string> + <string name="pref_gallery_sort_summary">"Wybierz kolejność sortowania zdjęć i filmów"</string> + <string name="pref_gallery_sort_dialogtitle">"Sortowanie zdjęć"</string> + <string-array name="pref_gallery_sort_choices"> + <item>"Od najnowszego"</item> + <item>"Od najstarszego"</item> + </string-array> + <string name="pref_gallery_slideshow_interval_title">"Pokaz slajdów – interwał"</string> + <string name="pref_gallery_slideshow_interval_summary">"Wybierz, jak długo mają być wyświetlane poszczególne zdjęcia w pokazie slajdów"</string> + <string name="pref_gallery_slideshow_interval_dialogtitle">"Pokaz slajdów – interwał"</string> + <string-array name="pref_gallery_slideshow_interval_choices"> + <item>"2 sekundy"</item> + <item>"3 sekundy"</item> + <item>"4 sekundy"</item> + </string-array> + <string name="pref_gallery_slideshow_transition_title">"Pokaz slajdów – efekty"</string> + <string name="pref_gallery_slideshow_transition_summary">"Wybierz efekt używany przy przejściu z jednego zdjęcia do kolejnego"</string> + <string name="pref_gallery_slideshow_transition_dialogtitle">"Pokaz slajdów – efekty"</string> + <string-array name="pref_gallery_slideshow_transition_choices"> + <item>"Pojawianie i znikanie"</item> + <item>"Przesuwanie z lewa w prawo"</item> + <item>"Przesuwanie góra-dół"</item> + <item>"Wybór losowy"</item> + </string-array> + <string name="pref_gallery_slideshow_repeat_title">"Powtórz pokaz slajdów"</string> + <string name="pref_gallery_slideshow_repeat_summary">"Wyświetlaj pokaz slajdów więcej niż raz"</string> + <string name="pref_gallery_slideshow_shuffle_title">"Losowa kolejność"</string> + <string name="pref_gallery_slideshow_shuffle_summary">"Wyświetlaj zdjęcia w kolejności losowej"</string> + <string name="pref_camera_recordlocation_title">"Zapisuj lokalizację w zdjęciach"</string> + <string name="pref_camera_recordlocation_summary">"Zapisz lokalizację w danych zdjęcia"</string> + <string name="pref_camera_videoquality_category">"Jakość wideo"</string> + <string name="pref_camera_videoquality_title">"Wybierz jakość wideo"</string> + <string name="pref_camera_videoquality_entry_0">"Niska (dla wiadomości MMS)"</string> + <string name="pref_camera_videoquality_entry_1">"Wysoka (dla karty SD)"</string> + <string name="pref_camera_videoquality_dialogtitle">"Jakość wideo"</string> + <string name="camerasettings">"Ustawienia"</string> + <string name="image_gallery_NoImageView_text">"Brak plików."</string> + <string name="pref_gallery_confirm_delete_title">"Potwierdzanie usuwania"</string> + <string name="pref_gallery_confirm_delete_summary">"Wyświetl potwierdzenie przed usunięciem zdjęcia lub filmu"</string> + <string name="details_panel_title">"Szczegóły"</string> + <string name="details_file_size">"Rozmiar pliku:"</string> + <string name="details_image_resolution">"Rozdzielczość:"</string> + <string name="details_duration">"Czas trwania:"</string> + <string name="details_date_taken">"Data zrobienia zdjęcia:"</string> + <string name="details_frame_rate">"Szybkość klatek:"</string> + <string name="details_bit_rate">"Szybkość transmisji:"</string> + <string name="details_codec">"Kodek:"</string> + <string name="details_format">"Format:"</string> + <string name="details_dimension_x">"%1$d x %2$d"</string> + <string name="details_ms">"%1$02d:%2$02d"</string> + <string name="details_hms">"%1$d:%2$02d:%3$02d"</string> + <string name="details_fps">"%1$d ramek/s"</string> + <string name="details_kbps">"%1$d Kb/s"</string> + <string name="details_mbps">"%1$g Mb/s"</string> + <string name="details_ok">"OK"</string> + <string name="context_menu_header">"Opcje zdjęć"</string> + <string name="video_context_menu_header">"Opcje wideo"</string> + <string name="multiface_crop_help">"Dotknij twarzy, aby rozpocząć"</string> + <string name="photos_gallery_title">"Galeria"</string> + <string name="pick_photos_gallery_title">"Wybierz zdjęcie"</string> + <string name="videos_gallery_title">"Galeria"</string> + <string name="pick_videos_gallery_title">"Wybierz film wideo"</string> + <string name="loading_progress_format_string">"Pozostało <xliff:g id="COUNTER">%d</xliff:g>"</string> + <string name="sendImage">"Prześlij zdjęcie następującą drogą:"</string> + <string name="setImage">"Ustaw zdjęcie jako"</string> + <string name="sendVideo">"Prześlij film następującą drogą:"</string> + <string name="movieviewlabel">"Filmy"</string> + <string name="loading_video">"Ładowanie filmu..."</string> + <string name="spaceIsLow_title">"Miejsca jest mało"</string> + <string name="spaceIsLow_content">"Na karcie SD brakuje miejsca. Zmień ustawienie jakości lub usuń elementy z Galerii."</string> + <string name="resume_playing_title">"Wznów film"</string> + <string name="resume_playing_message">"Wznowić odtwarzanie od %s?"</string> + <string name="resume_playing_resume">"Wznów odtwarzanie"</string> + <string name="resume_playing_restart">"Rozpocznij"</string> + <string name="gadget_title">"Ramka zdjęcia"</string> + <string name="video_file_name_format">"\'video\'-yyyy-MM-dd-HH-mm-ss"</string> + <!-- no translation found for file_info_title (1628963357466012538) --> + <skip /> + <!-- no translation found for video_exceed_mms_limit (3835075281230780010) --> + <skip /> +</resources> diff --git a/res/values-ru/arrays.xml b/res/values-ru/arrays.xml new file mode 100644 index 0000000..0583b87 --- /dev/null +++ b/res/values-ru/arrays.xml @@ -0,0 +1,24 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- Copyright (C) 2009 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <!-- no translation found for pref_camera_videoquality_entries:0 (4921712231611437934) --> + <!-- no translation found for pref_camera_videoquality_entries:1 (3206329580124804732) --> + <string-array name="pref_camera_videoquality_entryvalues"> + <item>"0"</item> + <item>"1"</item> + </string-array> +</resources> diff --git a/res/values-ru/strings.xml b/res/values-ru/strings.xml new file mode 100644 index 0000000..34cbfd3 --- /dev/null +++ b/res/values-ru/strings.xml @@ -0,0 +1,155 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- Copyright (C) 2009 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="all_images">"Все изображения"</string> + <string name="all_videos">"Все видео"</string> + <string name="camera_label">"Камера"</string> + <string name="gallery_picker_label">"Галерея"</string> + <string name="gallery_camera_bucket_name">"Фотографии с камеры"</string> + <string name="gallery_camera_videos_bucket_name">"Видео с камеры"</string> + <string name="switch_to_video_lable">"Перейти в режим видео"</string> + <string name="switch_to_camera_lable">"Перейти в режим камеры"</string> + <string name="crop_label">"Обрезать изображение"</string> + <string name="view_label">"Просмотреть изображение"</string> + <string name="preferences_label">"Настройки камеры"</string> + <string name="wait">"Подождите…"</string> + <string name="no_storage">"Перед использованием камеры вставьте карту SD."</string> + <string name="not_enough_space">"Карта SD заполнена."</string> + <string name="preparing_sd">"Подготовка карты SD..."</string> + <string name="wallpaper">"Установка фонового рисунка, подождите…"</string> + <string name="savingImage">"Идет сохранение изображения…"</string> + <string name="runningFaceDetection">"Подождите…"</string> + <string name="flip_orientation">"Изменить ориентацию"</string> + <string name="settings">"Настройки"</string> + <string name="view">"Просмотреть"</string> + <string name="details">"Сведения"</string> + <string name="rotate">"Повернуть"</string> + <string name="rotate_left">"Повернуть налево"</string> + <string name="rotate_right">"Повернуть направо"</string> + <string name="slide_show">"Слайд-шоу"</string> + <string name="capture_picture">"Сделать фотографию"</string> + <string name="capture_video">"Снять видео"</string> + <string name="crop_save_text">"Сохранить"</string> + <string name="crop_discard_text">"Отменить"</string> + <string name="confirm_delete_title">"Удаление"</string> + <string name="confirm_delete_message">"Изображение будет удалено."</string> + <string name="confirm_delete_video_message">"Видео будет удалено."</string> + <string name="camera_toss">"Удаление"</string> + <string name="camera_gallery">"Галерея"</string> + <string name="camera_share">"Отправить"</string> + <string name="camera_set">"Установить как"</string> + <string name="camera_play">"Воспроизвести"</string> + <string name="camera_attach">"Вложить"</string> + <string name="camera_cancel">"Отмена"</string> + <string name="camera_crop">"Обрезать"</string> + <string name="camera_tossing">"Идет удаление…"</string> + <string name="no_way_to_share_image">"Отправить это изображение нельзя."</string> + <string name="no_way_to_share_video">"Отправить это видео нельзя."</string> + <string name="camera_gallery_photos_text">"Галерея"</string> + <string name="camera_pick_wallpaper">"Изображения"</string> + <string name="camera_setas_wallpaper">"Фоновый рисунок"</string> + <string name="pref_gallery_category">"Общие настройки"</string> + <string name="pref_slideshow_category">"Настройки слайд-шоу"</string> + <string name="pref_camera_general_settings_category">"Общие настройки"</string> + <string name="pref_gallery_size_title">"Отображаемый размер"</string> + <string name="pref_gallery_size_summary">"Выбор отображаемого размера изображений и видео"</string> + <string name="pref_gallery_size_dialogtitle">"Размер изображения"</string> + <string-array name="pref_gallery_size_choices"> + <item>"Крупный"</item> + <item>"Мелкий"</item> + </string-array> + <string name="pref_gallery_sort_title">"Порядок сортировки"</string> + <string name="pref_gallery_sort_summary">"Выберите порядок сортировки изображений и видео"</string> + <string name="pref_gallery_sort_dialogtitle">"Сортировка изображений"</string> + <string-array name="pref_gallery_sort_choices"> + <item>"Начиная с новых"</item> + <item>"Заканчивая новыми"</item> + </string-array> + <string name="pref_gallery_slideshow_interval_title">"Интервал слайд-шоу"</string> + <string name="pref_gallery_slideshow_interval_summary">"Выберите время отображения каждого слайда"</string> + <string name="pref_gallery_slideshow_interval_dialogtitle">"Интервал слайд-шоу"</string> + <string-array name="pref_gallery_slideshow_interval_choices"> + <item>"2 секунды"</item> + <item>"3 секунды"</item> + <item>"4 секунды"</item> + </string-array> + <string name="pref_gallery_slideshow_transition_title">"Переходы слайд-шоу"</string> + <string name="pref_gallery_slideshow_transition_summary">"Выберите эффект для перехода от одного слайда к другому"</string> + <string name="pref_gallery_slideshow_transition_dialogtitle">"Переходы слайд-шоу"</string> + <string-array name="pref_gallery_slideshow_transition_choices"> + <item>"Затемнение"</item> + <item>"Слайды слева направо"</item> + <item>"Слайды сверху вниз"</item> + <item>"Случайный выбор"</item> + </string-array> + <string name="pref_gallery_slideshow_repeat_title">"Повторить слайд-шоу"</string> + <string name="pref_gallery_slideshow_repeat_summary">"Воспроизвести слайд-шоу несколько раз"</string> + <string name="pref_gallery_slideshow_shuffle_title">"Перемешать слайды"</string> + <string name="pref_gallery_slideshow_shuffle_summary">"Показывать изображения в случайном порядке"</string> + <string name="pref_camera_recordlocation_title">"Сохранять адрес в изображениях"</string> + <string name="pref_camera_recordlocation_summary">"Записывать адрес в данные изображения"</string> + <string name="pref_camera_videoquality_category">"Качество видео"</string> + <string name="pref_camera_videoquality_title">"Выбор качества видео"</string> + <string name="pref_camera_videoquality_entry_0">"Низкое (для MMS)"</string> + <string name="pref_camera_videoquality_entry_1">"Высокое (для карты SD)"</string> + <string name="pref_camera_videoquality_dialogtitle">"Качество видео"</string> + <string name="camerasettings">"Настройки"</string> + <string name="image_gallery_NoImageView_text">"Нет мультимедийных материалов."</string> + <string name="pref_gallery_confirm_delete_title">"Подтверждение удаления"</string> + <string name="pref_gallery_confirm_delete_summary">"Запрашивать подтверждения перед удалением изображения или видео"</string> + <string name="details_panel_title">"Сведения"</string> + <string name="details_file_size">"Размер файла:"</string> + <string name="details_image_resolution">"Разрешение:"</string> + <string name="details_duration">"Продолжительность:"</string> + <string name="details_date_taken">"Дата съемки:"</string> + <string name="details_frame_rate">"Частота кадров:"</string> + <string name="details_bit_rate">"Битрейт:"</string> + <string name="details_codec">"Кодек:"</string> + <string name="details_format">"Формат:"</string> + <string name="details_dimension_x">"%1$d на %2$d"</string> + <string name="details_ms">"%1$02d:%2$02d"</string> + <string name="details_hms">"%1$d:%2$02d:%3$02d"</string> + <string name="details_fps">"%1$d кадров/с"</string> + <string name="details_kbps">"%1$d кбит/с"</string> + <string name="details_mbps">"%1$g мбит/с"</string> + <string name="details_ok">"ОК"</string> + <string name="context_menu_header">"Параметры изображения"</string> + <string name="video_context_menu_header">"Параметры видео"</string> + <string name="multiface_crop_help">"Чтобы начать, выберите лицо."</string> + <string name="photos_gallery_title">"Галерея"</string> + <string name="pick_photos_gallery_title">"Выбор изображения"</string> + <string name="videos_gallery_title">"Галерея"</string> + <string name="pick_videos_gallery_title">"Выбрать видео"</string> + <string name="loading_progress_format_string">"Осталось: <xliff:g id="COUNTER">%d</xliff:g>"</string> + <string name="sendImage">"Отправить изображение при помощи"</string> + <string name="setImage">"Установить изображение как"</string> + <string name="sendVideo">"Отправить видео при помощи"</string> + <string name="movieviewlabel">"Фильмы"</string> + <string name="loading_video">"Идет загрузка видео…"</string> + <string name="spaceIsLow_title">"Осталось мало места"</string> + <string name="spaceIsLow_content">"Место на карте SD заканчивается. Измените настройки качества или удалите элементы из галереи."</string> + <string name="resume_playing_title">"Продолжение просмотра видео"</string> + <string name="resume_playing_message">"Продолжить воспроизведение с %s ?"</string> + <string name="resume_playing_resume">"Продолжить воспроизведение"</string> + <string name="resume_playing_restart">"Начать с начала"</string> + <string name="gadget_title">"Рамка фотографии"</string> + <string name="video_file_name_format">"\'video\'-yyyy-MM-dd-HH-mm-ss"</string> + <!-- no translation found for file_info_title (1628963357466012538) --> + <skip /> + <!-- no translation found for video_exceed_mms_limit (3835075281230780010) --> + <skip /> +</resources> diff --git a/res/values-zh-rCN/arrays.xml b/res/values-zh-rCN/arrays.xml new file mode 100644 index 0000000..0583b87 --- /dev/null +++ b/res/values-zh-rCN/arrays.xml @@ -0,0 +1,24 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- Copyright (C) 2009 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <!-- no translation found for pref_camera_videoquality_entries:0 (4921712231611437934) --> + <!-- no translation found for pref_camera_videoquality_entries:1 (3206329580124804732) --> + <string-array name="pref_camera_videoquality_entryvalues"> + <item>"0"</item> + <item>"1"</item> + </string-array> +</resources> diff --git a/res/values-zh-rCN/strings.xml b/res/values-zh-rCN/strings.xml new file mode 100644 index 0000000..f89c694 --- /dev/null +++ b/res/values-zh-rCN/strings.xml @@ -0,0 +1,155 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- Copyright (C) 2009 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="all_images">"所有图片"</string> + <string name="all_videos">"所有视频"</string> + <string name="camera_label">"相机"</string> + <string name="gallery_picker_label">"图片库"</string> + <string name="gallery_camera_bucket_name">"相机照片"</string> + <string name="gallery_camera_videos_bucket_name">"相机视频"</string> + <string name="switch_to_video_lable">"切换到视频"</string> + <string name="switch_to_camera_lable">"切换到相机"</string> + <string name="crop_label">"裁切图片"</string> + <string name="view_label">"查看图片"</string> + <string name="preferences_label">"相机设置"</string> + <string name="wait">"请稍候..."</string> + <string name="no_storage">"请在使用相机之前插入 SD 卡。"</string> + <string name="not_enough_space">"您的 SD 卡已满。"</string> + <string name="preparing_sd">"正在准备 SD 卡..."</string> + <string name="wallpaper">"正在设置壁纸,请稍候..."</string> + <string name="savingImage">"正在保存图片..."</string> + <string name="runningFaceDetection">"请稍候..."</string> + <string name="flip_orientation">"反转方向"</string> + <string name="settings">"设置"</string> + <string name="view">"查看"</string> + <string name="details">"详细信息"</string> + <string name="rotate">"旋转"</string> + <string name="rotate_left">"向左旋转"</string> + <string name="rotate_right">"向右旋转"</string> + <string name="slide_show">"幻灯片演示"</string> + <string name="capture_picture">"拍摄照片"</string> + <string name="capture_video">"拍摄视频"</string> + <string name="crop_save_text">"保存"</string> + <string name="crop_discard_text">"放弃"</string> + <string name="confirm_delete_title">"删除"</string> + <string name="confirm_delete_message">"会删除该图片。"</string> + <string name="confirm_delete_video_message">"会删除该视频。"</string> + <string name="camera_toss">"删除"</string> + <string name="camera_gallery">"图片库"</string> + <string name="camera_share">"共享"</string> + <string name="camera_set">"设置为"</string> + <string name="camera_play">"播放"</string> + <string name="camera_attach">"附加"</string> + <string name="camera_cancel">"取消"</string> + <string name="camera_crop">"裁切"</string> + <string name="camera_tossing">"正在删除..."</string> + <string name="no_way_to_share_image">"无法共享此图片。"</string> + <string name="no_way_to_share_video">"无法共享此视频。"</string> + <string name="camera_gallery_photos_text">"图片库"</string> + <string name="camera_pick_wallpaper">"图片"</string> + <string name="camera_setas_wallpaper">"壁纸"</string> + <string name="pref_gallery_category">"常规设置"</string> + <string name="pref_slideshow_category">"幻灯片演示设置"</string> + <string name="pref_camera_general_settings_category">"常规设置"</string> + <string name="pref_gallery_size_title">"显示大小"</string> + <string name="pref_gallery_size_summary">"选择图片和视频的显示大小"</string> + <string name="pref_gallery_size_dialogtitle">"图片大小"</string> + <string-array name="pref_gallery_size_choices"> + <item>"大"</item> + <item>"小"</item> + </string-array> + <string name="pref_gallery_sort_title">"排序顺序"</string> + <string name="pref_gallery_sort_summary">"选择图片和视频的排序顺序"</string> + <string name="pref_gallery_sort_dialogtitle">"图片排序"</string> + <string-array name="pref_gallery_sort_choices"> + <item>"最新的在最前面"</item> + <item>"最新的在最后面"</item> + </string-array> + <string name="pref_gallery_slideshow_interval_title">"幻灯片演示间隔"</string> + <string name="pref_gallery_slideshow_interval_summary">"选择每张幻灯片在演示中显示的时间长度"</string> + <string name="pref_gallery_slideshow_interval_dialogtitle">"幻灯片演示间隔"</string> + <string-array name="pref_gallery_slideshow_interval_choices"> + <item>"2 秒"</item> + <item>"3 秒"</item> + <item>"4 秒"</item> + </string-array> + <string name="pref_gallery_slideshow_transition_title">"幻灯片演示过渡"</string> + <string name="pref_gallery_slideshow_transition_summary">"选择从一张幻灯片移动到下一张时使用的效果"</string> + <string name="pref_gallery_slideshow_transition_dialogtitle">"幻灯片演示过渡"</string> + <string-array name="pref_gallery_slideshow_transition_choices"> + <item>"逐渐增强和逐渐减弱"</item> + <item>"自左至右滑动"</item> + <item>"自上至下滑动"</item> + <item>"随机选择"</item> + </string-array> + <string name="pref_gallery_slideshow_repeat_title">"重复幻灯片演示"</string> + <string name="pref_gallery_slideshow_repeat_summary">"多次播放幻灯片演示"</string> + <string name="pref_gallery_slideshow_shuffle_title">"随机演示幻灯片"</string> + <string name="pref_gallery_slideshow_shuffle_summary">"以随机顺序显示图片"</string> + <string name="pref_camera_recordlocation_title">"在图片中存储位置"</string> + <string name="pref_camera_recordlocation_summary">"通过图片数据记录位置"</string> + <string name="pref_camera_videoquality_category">"视频质量"</string> + <string name="pref_camera_videoquality_title">"选择视频质量"</string> + <string name="pref_camera_videoquality_entry_0">"低(对于彩信)"</string> + <string name="pref_camera_videoquality_entry_1">"高(对于 SD 卡)"</string> + <string name="pref_camera_videoquality_dialogtitle">"视频质量"</string> + <string name="camerasettings">"设置"</string> + <string name="image_gallery_NoImageView_text">"找不到媒体。"</string> + <string name="pref_gallery_confirm_delete_title">"确认删除"</string> + <string name="pref_gallery_confirm_delete_summary">"在删除图片或视频前显示确认"</string> + <string name="details_panel_title">"详细信息"</string> + <string name="details_file_size">"文件大小:"</string> + <string name="details_image_resolution">"分辨率:"</string> + <string name="details_duration">"持续时间:"</string> + <string name="details_date_taken">"拍摄日期:"</string> + <string name="details_frame_rate">"帧频:"</string> + <string name="details_bit_rate">"比特率:"</string> + <string name="details_codec">"编解码器:"</string> + <string name="details_format">"格式:"</string> + <string name="details_dimension_x">"%1$d x %2$d"</string> + <string name="details_ms">"%1$02d:%2$02d"</string> + <string name="details_hms">"%1$d:%2$02d:%3$02d"</string> + <string name="details_fps">"%1$d fps"</string> + <string name="details_kbps">"%1$d Kbps"</string> + <string name="details_mbps">"%1$g Mbps"</string> + <string name="details_ok">"确定"</string> + <string name="context_menu_header">"图片选项"</string> + <string name="video_context_menu_header">"视频选项"</string> + <string name="multiface_crop_help">"轻击一张脸开始裁切。"</string> + <string name="photos_gallery_title">"图片库"</string> + <string name="pick_photos_gallery_title">"选择图片"</string> + <string name="videos_gallery_title">"图片库"</string> + <string name="pick_videos_gallery_title">"选择视频"</string> + <string name="loading_progress_format_string">"还剩 <xliff:g id="COUNTER">%d</xliff:g>"</string> + <string name="sendImage">"共享图片的方式"</string> + <string name="setImage">"将图片设置为"</string> + <string name="sendVideo">"共享视频的方式"</string> + <string name="movieviewlabel">"电影"</string> + <string name="loading_video">"正在载入视频..."</string> + <string name="spaceIsLow_title">"空间不足"</string> + <string name="spaceIsLow_content">"您的 SD 卡已满。请更改质量设置或删除图片库中的内容。"</string> + <string name="resume_playing_title">"重新播放视频"</string> + <string name="resume_playing_message">"从 %s 开始重新播放?"</string> + <string name="resume_playing_resume">"重新播放"</string> + <string name="resume_playing_restart">"重新开始"</string> + <string name="gadget_title">"相框"</string> + <string name="video_file_name_format">"\'video\'-yyyy-MM-dd-HH-mm-ss"</string> + <!-- no translation found for file_info_title (1628963357466012538) --> + <skip /> + <!-- no translation found for video_exceed_mms_limit (3835075281230780010) --> + <skip /> +</resources> diff --git a/res/values-zh-rTW/arrays.xml b/res/values-zh-rTW/arrays.xml new file mode 100644 index 0000000..0583b87 --- /dev/null +++ b/res/values-zh-rTW/arrays.xml @@ -0,0 +1,24 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- Copyright (C) 2009 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <!-- no translation found for pref_camera_videoquality_entries:0 (4921712231611437934) --> + <!-- no translation found for pref_camera_videoquality_entries:1 (3206329580124804732) --> + <string-array name="pref_camera_videoquality_entryvalues"> + <item>"0"</item> + <item>"1"</item> + </string-array> +</resources> diff --git a/res/values-zh-rTW/strings.xml b/res/values-zh-rTW/strings.xml new file mode 100644 index 0000000..c311294 --- /dev/null +++ b/res/values-zh-rTW/strings.xml @@ -0,0 +1,155 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- Copyright (C) 2009 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="all_images">"所有相片"</string> + <string name="all_videos">"所有影片"</string> + <string name="camera_label">"相機"</string> + <string name="gallery_picker_label">"圖庫"</string> + <string name="gallery_camera_bucket_name">"攝影機圖片"</string> + <string name="gallery_camera_videos_bucket_name">"攝影機影片"</string> + <string name="switch_to_video_lable">"切換為影片"</string> + <string name="switch_to_camera_lable">"切換為攝影機"</string> + <string name="crop_label">"裁切相片"</string> + <string name="view_label">"檢視相片"</string> + <string name="preferences_label">"相機設定"</string> + <string name="wait">"請稍候…"</string> + <string name="no_storage">"使用相機前請先插入 SD 卡。"</string> + <string name="not_enough_space">"SD 卡已滿。"</string> + <string name="preparing_sd">"正在準備 SD 卡..."</string> + <string name="wallpaper">"設定桌布中,請稍候…"</string> + <string name="savingImage">"儲存相片中…"</string> + <string name="runningFaceDetection">"請稍候…"</string> + <string name="flip_orientation">"旋轉方向"</string> + <string name="settings">"設定"</string> + <string name="view">"檢視"</string> + <string name="details">"詳細資料"</string> + <string name="rotate">"旋轉"</string> + <string name="rotate_left">"向左旋轉"</string> + <string name="rotate_right">"向右旋轉"</string> + <string name="slide_show">"投影片"</string> + <string name="capture_picture">"拍攝圖片"</string> + <string name="capture_video">"拍攝影片"</string> + <string name="crop_save_text">"儲存"</string> + <string name="crop_discard_text">"放棄"</string> + <string name="confirm_delete_title">"刪除"</string> + <string name="confirm_delete_message">"此相片會被刪除。"</string> + <string name="confirm_delete_video_message">"將刪除此影片。"</string> + <string name="camera_toss">"刪除"</string> + <string name="camera_gallery">"圖庫"</string> + <string name="camera_share">"分享"</string> + <string name="camera_set">"設為"</string> + <string name="camera_play">"播放"</string> + <string name="camera_attach">"附加"</string> + <string name="camera_cancel">"取消"</string> + <string name="camera_crop">"裁切"</string> + <string name="camera_tossing">"刪除中…"</string> + <string name="no_way_to_share_image">"此相片無法分享。"</string> + <string name="no_way_to_share_video">"此影片無法分享。"</string> + <string name="camera_gallery_photos_text">"圖庫"</string> + <string name="camera_pick_wallpaper">"相片"</string> + <string name="camera_setas_wallpaper">"桌布"</string> + <string name="pref_gallery_category">"一般設定"</string> + <string name="pref_slideshow_category">"投影片設定"</string> + <string name="pref_camera_general_settings_category">"一般設定"</string> + <string name="pref_gallery_size_title">"顯示大小"</string> + <string name="pref_gallery_size_summary">"選取相片和影片顯示大小"</string> + <string name="pref_gallery_size_dialogtitle">"相片大小"</string> + <string-array name="pref_gallery_size_choices"> + <item>"大"</item> + <item>"小"</item> + </string-array> + <string name="pref_gallery_sort_title">"排序順序"</string> + <string name="pref_gallery_sort_summary">"選取相片和影片排序順序"</string> + <string name="pref_gallery_sort_dialogtitle">"圖片排序"</string> + <string-array name="pref_gallery_sort_choices"> + <item>"最新的優先"</item> + <item>"最舊的優先"</item> + </string-array> + <string name="pref_gallery_slideshow_interval_title">"投影片顯示間隔"</string> + <string name="pref_gallery_slideshow_interval_summary">"選取每張投影片顯示時間"</string> + <string name="pref_gallery_slideshow_interval_dialogtitle">"投影片顯示間隔"</string> + <string-array name="pref_gallery_slideshow_interval_choices"> + <item>"2 秒"</item> + <item>"3 秒"</item> + <item>"4 秒"</item> + </string-array> + <string name="pref_gallery_slideshow_transition_title">"投影片轉場效果"</string> + <string name="pref_gallery_slideshow_transition_summary">"選取相片更換時的轉場效果"</string> + <string name="pref_gallery_slideshow_transition_dialogtitle">"投影片轉場效果"</string> + <string-array name="pref_gallery_slideshow_transition_choices"> + <item>"淡入淡出"</item> + <item>"左右滑動"</item> + <item>"上下滑動"</item> + <item>"隨機選取"</item> + </string-array> + <string name="pref_gallery_slideshow_repeat_title">"重複播放投影片"</string> + <string name="pref_gallery_slideshow_repeat_summary">"播放投影片多次"</string> + <string name="pref_gallery_slideshow_shuffle_title">"隨機播放投影片"</string> + <string name="pref_gallery_slideshow_shuffle_summary">"隨機顯示相片"</string> + <string name="pref_camera_recordlocation_title">"在相片儲存位置資訊"</string> + <string name="pref_camera_recordlocation_summary">"在相片中紀錄位置資訊"</string> + <string name="pref_camera_videoquality_category">"影片品質"</string> + <string name="pref_camera_videoquality_title">"選取影片品質"</string> + <string name="pref_camera_videoquality_entry_0">"低 (適用於多媒體簡訊)"</string> + <string name="pref_camera_videoquality_entry_1">"高 (適用於 SD 卡)"</string> + <string name="pref_camera_videoquality_dialogtitle">"影片品質"</string> + <string name="camerasettings">"設定"</string> + <string name="image_gallery_NoImageView_text">"找不到媒體。"</string> + <string name="pref_gallery_confirm_delete_title">"刪除確認"</string> + <string name="pref_gallery_confirm_delete_summary">"刪除相片或影片前要顯示確認"</string> + <string name="details_panel_title">"詳細資料"</string> + <string name="details_file_size">"檔案大小:"</string> + <string name="details_image_resolution">"解析度:"</string> + <string name="details_duration">"所需時間:"</string> + <string name="details_date_taken">"拍攝日期:"</string> + <string name="details_frame_rate">"影格速率:"</string> + <string name="details_bit_rate">"位元速率:"</string> + <string name="details_codec">"編碼器:"</string> + <string name="details_format">"格式:"</string> + <string name="details_dimension_x">"%1$d x %2$d"</string> + <string name="details_ms">"%1$02d:%2$02d"</string> + <string name="details_hms">"%1$d:%2$02d:%3$02d"</string> + <string name="details_fps">"%1$d fps"</string> + <string name="details_kbps">"%1$d Kbps"</string> + <string name="details_mbps">"%1$g Mbps"</string> + <string name="details_ok">"確定"</string> + <string name="context_menu_header">"圖片選項"</string> + <string name="video_context_menu_header">"影片選項"</string> + <string name="multiface_crop_help">"選取版面開始裁切"</string> + <string name="photos_gallery_title">"圖庫"</string> + <string name="pick_photos_gallery_title">"選取相片"</string> + <string name="videos_gallery_title">"圖庫"</string> + <string name="pick_videos_gallery_title">"選取影片"</string> + <string name="loading_progress_format_string">"還有 <xliff:g id="COUNTER">%d</xliff:g> 張"</string> + <string name="sendImage">"透過…分享圖片"</string> + <string name="setImage">"設定相片為…"</string> + <string name="sendVideo">"透過…分享影片"</string> + <string name="movieviewlabel">"電影"</string> + <string name="loading_video">"正在載入影片…"</string> + <string name="spaceIsLow_title">"空間不足"</string> + <string name="spaceIsLow_content">"您的 SD 卡空間已快用完。請變更品質設定或刪除圖庫中的項目。"</string> + <string name="resume_playing_title">"繼續播放影片"</string> + <string name="resume_playing_message">"要從 %s 繼續播放嗎?"</string> + <string name="resume_playing_resume">"繼續播放"</string> + <string name="resume_playing_restart">"重新開始"</string> + <string name="gadget_title">"相框"</string> + <string name="video_file_name_format">"\'video\'-yyyy-MM-dd-HH-mm-ss"</string> + <!-- no translation found for file_info_title (1628963357466012538) --> + <skip /> + <!-- no translation found for video_exceed_mms_limit (3835075281230780010) --> + <skip /> +</resources> diff --git a/res/values/arrays.xml b/res/values/arrays.xml new file mode 100644 index 0000000..95501e4 --- /dev/null +++ b/res/values/arrays.xml @@ -0,0 +1,31 @@ +<?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> + <!-- Camera Preferences Video Quality dialog box entries --> + <string-array name="pref_camera_videoquality_entries"> + <item>@string/pref_camera_videoquality_entry_0</item> + <item>@string/pref_camera_videoquality_entry_1</item> + </string-array> + + <!-- Do not localize entryvalues --> + <string-array name="pref_camera_videoquality_entryvalues"> + <item>0</item> + <item>1</item> + </string-array> + +</resources> diff --git a/res/values/colors.xml b/res/values/colors.xml new file mode 100644 index 0000000..d07f3b9 --- /dev/null +++ b/res/values/colors.xml @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- +/* //device/apps/common/assets/res/any/colors.xml +** +** Copyright 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> + <color name="bubble_dark_background">#B2191919</color> +</resources> diff --git a/res/values/dimens.xml b/res/values/dimens.xml new file mode 100644 index 0000000..5ec105b --- /dev/null +++ b/res/values/dimens.xml @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- +/* //device/apps/common/assets/res/any/dimens.xml +** +** Copyright 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="hint_y_offset">64dip</dimen> +</resources> diff --git a/res/values/ids.xml b/res/values/ids.xml new file mode 100644 index 0000000..367bfa2 --- /dev/null +++ b/res/values/ids.xml @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- +** +** Copyright 2007, 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> +</resources> + + diff --git a/res/values/strings.xml b/res/values/strings.xml new file mode 100644 index 0000000..ab7d88e --- /dev/null +++ b/res/values/strings.xml @@ -0,0 +1,458 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2007 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <!-- General strings --> + + <!-- label for the icon meaning 'show me all the images' --> + <string name="all_images">All pictures</string> + + <!-- label for the icon meaning 'show me all the videos' --> + <string name="all_videos">All videos</string> + + <!-- label for the icon meaning 'show me all the images that were taken with the camera' --> + <string name="camera_label">Camera</string> + + <!-- label for the 'pictures application shown in the top level 'all applications' --> + <string name="gallery_picker_label">Gallery</string> + + <!-- unused (do not translate) --> + <string name="gallery_label">Pictures</string> + + <!-- label for the folder that contains Camera pictures in the gallery --> + <string name="gallery_camera_bucket_name">Camera pictures</string> + + <!-- label for the folder that contains Camera videos in the gallery --> + <string name="gallery_camera_videos_bucket_name">Camera videos</string> + + <!-- menu pick: switch to Video cam mode --> + <string name="switch_to_video_lable">Switch to video</string> + + <!-- menu pick: switch to camera mode --> + <string name="switch_to_camera_lable">Switch to camera</string> + + <!-- menu pick: crop the currently selected image --> + <string name="crop_label">Crop picture</string> + + <!-- menu pick: view the currently selected image --> + <string name="view_label">View picture</string> + + <!-- menu pick: go to the preferences screen for the camera or image gallery --> + <string name="preferences_label">Camera settings</string> + + <!-- alert to the user to wait for some operation to complete --> + <string name="wait">Please wait\u2026</string> + + <!-- alert to the user to that an SD card must be installed before using the camera --> + <string name="no_storage">Please insert an SD card before using the camera.</string> + + <!-- alert to the user to that the SD card is too full to complete the operation --> + <string name="not_enough_space">Your SD card is full.</string> + + <!-- alert to the user to that the SD card is being disk-checked --> + <string name="preparing_sd">Preparing SD card\u2026</string> + + <!-- Toast/alert after saving wallpaper --> + <string name="wallpaper">Setting wallpaper, please wait\u2026</string> + + <!-- Settings stuff --> + + <!-- Toast/alert that the image is being saved to the SD card --> + <string name="savingImage">Saving picture\u2026</string> + + <!-- Toast/alert that the face detection is being run --> + <string name="runningFaceDetection">Please wait\u2026</string> + + + <!-- Menu items: --> + <!-- menu pick to change the orientation of the screen --> + <string name="flip_orientation">Flip orientation</string> + + <!-- menu pick to go to the settings screen --> + <string name="settings">Settings</string> + + <!-- menu pick to view the currently selected image --> + <string name="view">View</string> + + <!-- menu pick to view the details of the currently selected image --> + <string name="details">Details</string> + + <!-- menu pick to rotate the currently selected image (brings up submenu) --> + <string name="rotate">Rotate</string> + + <!-- menu pick to rotate the currently selected image to the left --> + <string name="rotate_left">Rotate left</string> + + <!-- menu pick to rotate the currently selected image to the right --> + <string name="rotate_right">Rotate right</string> + + <!-- menu pick to start a slide show --> + <string name="slide_show">Slideshow</string> + + <!-- menu pick to go to camera mode to capture a picture --> + <string name="capture_picture">Capture picture</string> + <!-- menu pick to go to video mode to capture a video --> + <string name="capture_video">Capture video</string> + + <!-- button indicating that the cropped image should be saved --> + <string name="crop_save_text">Save</string> + <!-- button indicating that the cropped image should be reverted back to the original --> + <string name="crop_discard_text">Discard</string> + + <!-- Confirmation dialog title after deleting a picture --> + <string name="confirm_delete_title">Delete</string> + <!-- Confirmation dialog message after deleting a picture --> + <string name="confirm_delete_message">The picture will be deleted.</string> + <!-- Confirmation dialog message after deleting a video --> + <string name="confirm_delete_video_message">The video will be deleted.</string> + <!-- button indicating that the picture just taken should be deleted --> + <string name="camera_toss">Delete</string> + + <!-- Lable for the button that takes the user to the camera pictures Gallery --> + <string name="camera_gallery">Gallery</string> + + <!-- button indicating that the picture just taken should be shared by email, mms, etc --> + <string name="camera_share">Share</string> + + <!-- button indicating that the picture just taken should be set as a contact photo, wallpaper, etc --> + <string name="camera_set">Set as</string> + + <!-- button indicating that the video just taken should be played --> + <string name="camera_play">Play</string> + + <!-- button indicating that the video just taken should be accepted as an attachment --> + <string name="camera_attach">Attach</string> + + <!-- button indicating that the video recording session should be canceled --> + <string name="camera_cancel">Cancel</string> + + <!-- button indicating that the picture just taken should be cropped --> + <string name="camera_crop">Crop</string> + + <!-- Toast after deleting a picture --> + <string name="camera_tossing">Deleting\u2026</string> + + <!-- Toast after trying to share a picture indicating that there are no applications which are capable of so doing. --> + <string name="no_way_to_share_image">This picture cannot be shared.</string> + + <!-- Toast after trying to share a video indicating that there are no applications which are capable of so doing. --> + <string name="no_way_to_share_video">This video cannot be shared.</string> + + <!-- Do not translate --> + <string name="video_play">Play</string> + + <!-- Button indicating to go to the image gallery --> + <string name="camera_gallery_photos_text">Gallery</string> + + <!-- String indicating an action of picking a picture to use as wallpaper (e.g. set wallpaper from "Pictures") --> + <string name="camera_pick_wallpaper">Pictures</string> + <string name="camera_setas_wallpaper">Wallpaper</string> + + <!-- Settings screen, section heading --> + <string name="pref_gallery_category">General settings</string> + + <!-- Settings screen, section heading --> + <string name="pref_slideshow_category">Slideshow settings</string> + <string name="pref_camera_general_settings_category">General settings</string> + + <!-- Settings screen, setting summary text --> + <string name="pref_gallery_size_title">Display size</string> + + <!-- Settings screen, title for preference for image size to be used in the im --> + <string name="pref_gallery_size_summary">Select the display size of pictures and videos</string> + <!-- Title of dialog that appears after selecting Picture size setting option --> + <string name="pref_gallery_size_dialogtitle">Picture size</string> + <!-- Options in dialog that appears after selecting Picture size setting option --> + <string-array name="pref_gallery_size_choices"> + <!-- size choice of "large" --> + <item>Large</item> + <!-- size choice of "small" --> + <item>Small</item> + </string-array> + <!-- Do not translate. Option values in dialog that appears after selecting Picture size setting option --> + <string-array name="pref_gallery_size_values"> + <!-- do not translate --> + <item>1</item> + <!-- do not translate --> + <item>0</item> + </string-array> + <!-- Do not translate. Default option value in dialog that appears after selecting Picture size setting option --> + <string name="default_value_pref_gallery_size">1</string> + <!-- Settings screen, setting option name --> + <string name="pref_gallery_sort_title">Sort order</string> + <!-- Settings screen, setting summary text --> + <string name="pref_gallery_sort_summary">Select the sort order of pictures and videos</string> + <!-- Title of dialog that appears after selecting Picture sort setting option --> + <string name="pref_gallery_sort_dialogtitle">Picture sort</string> + <!-- Options in dialog that appears after selecting Picture sort setting option --> + <string-array name="pref_gallery_sort_choices"> + <!-- Preference choice to show "newest first" --> + <item>Newest first</item> + <!-- Preference choice to show "newest last" --> + <item>Newest last</item> + </string-array> + <!-- Do not translate. Option values in dialog that appears after selecting Picture sort setting option --> + <string-array name="pref_gallery_sort_values"> + <!-- do not translate --> + <item>descending</item> + <!-- do not translate --> + <item>ascending</item> + </string-array> + <!-- Do not translate. Default option value in dialog that appears after selecting Picture sort setting option --> + <string name="default_value_pref_gallery_sort">descending</string> + <!-- Settings screen, setting option name --> + <string name="pref_gallery_slideshow_interval_title">Slideshow interval</string> + <!-- Settings screen, setting summary text --> + <string name="pref_gallery_slideshow_interval_summary">Select how long each slide displays in the show</string> + <!-- Title of dialog that appears after selecting Slideshow interval setting option --> + <string name="pref_gallery_slideshow_interval_dialogtitle">Slideshow interval</string> + <!-- Options in dialog that appears after selecting Slideshow interval + setting option --> + <string-array name="pref_gallery_slideshow_interval_choices"> + <!-- slide show interval "N seconds" where N is 2 --> + <item>2 seconds</item> + <!-- slide show interval "N seconds" where N is 3 --> + <item>3 seconds</item> + <!-- slide show interval "N seconds" where N is 4 --> + <item>4 seconds</item> + </string-array> + <!-- Do not translate. Option values in dialog that appears after selecting Slideshow interval setting option --> + <string-array name="pref_gallery_slideshow_interval_values"> + <!-- do not translate --> + <item>"2"</item> + <!-- do not translate --> + <item>"3"</item> + <!-- do not translate --> + <item>"4"</item> + </string-array> + <!-- Do not translate. Default option value in dialog that appears after selecting Slideshow interval setting option --> + <string name="default_value_pref_gallery_slideshow_interval">"2"</string> + <!-- Settings screen, setting option name --> + <string name="pref_gallery_slideshow_transition_title">Slideshow transition</string> + <!-- Settings screen, setting summary text --> + <string name="pref_gallery_slideshow_transition_summary">Select the effect used when moving from one slide to the next</string> + <!-- Title of dialog that appears after selecting Slideshow transition setting option --> + <string name="pref_gallery_slideshow_transition_dialogtitle">Slideshow transition</string> + <!-- Options in dialog that appears after selecting Slideshow transition + setting option --> + <string-array name="pref_gallery_slideshow_transition_choices"> + <!-- Slide show transition to fade in and fade out --> + <item>Fade in & out</item> + <!-- Slide show transition to slide in and out from the left and right --> + <item>Slide left - right</item> + <!-- Slide show transition to slide in and out from the top and bottom --> + <item>Slide up - down</item> + <!-- Slide show transition to be chosen randomly --> + <item>Random selection</item> + </string-array> + <!-- Do not translate. Option values in dialog that appears after selecting Slideshow transition setting option --> + <string-array name="pref_gallery_slideshow_transition_values"> + <!-- do not translate --> + <item>"0"</item> + <!-- do not translate --> + <item>"1"</item> + <!-- do not translate --> + <item>"2"</item> + <!-- do not translate --> + <item>"-1"</item> + </string-array> + <!-- Do not translate. Default option value in dialog that appears after selecting Slideshow transition setting option --> + <string name="default_value_pref_gallery_slideshow_transition">"0"</string> + + <!-- Settings screen, setting check box name --> + <string name="pref_gallery_slideshow_repeat_title">Repeat slideshow</string> + + <!-- Settings screen, setting summary text --> + <string name="pref_gallery_slideshow_repeat_summary">Play slideshow more than once</string> + + <!-- Settings screen, setting check box name --> + <string name="pref_gallery_slideshow_shuffle_title">Shuffle slides</string> + + <!-- Settings screen, setting summary text --> + <string name="pref_gallery_slideshow_shuffle_summary">Show pictures in random order</string> + + <!-- Settings screen, setting title text --> + <string name="pref_camera_recordlocation_title">Store location in pictures</string> + + <!-- Settings screen, setting summary text --> + <string name="pref_camera_recordlocation_summary">Record location in picture data</string> + + <!-- Do not translate --> + <string name="pref_camera_upload_albumname_title">Picasa album name</string> + + <!-- Do not translate --> + <string name="pref_camera_upload_albumname_summary">Name the destination album for your pictures (<xliff:g id="summary">%s</xliff:g>)</string> + + <!-- Do not translate --> + <string name="pref_camera_upload_albumname_dialogtitle">Picasa album name</string> + + <!-- Settings screen, Video quality category title --> + <string name="pref_camera_videoquality_category">Video quality</string> + + <!-- Default video quality setting. A numerical value. Do not translate. --> + <string name="pref_camera_videoquality_default">1</string> + + <!-- Settings screen, Select Video quality title --> + <string name="pref_camera_videoquality_title">Select video quality</string> + + <!-- Settings screen, Video quality dialog radio button choices --> + <string name="pref_camera_videoquality_entry_0">Low (for MMS messages)</string> + <string name="pref_camera_videoquality_entry_1">High (for SD card)</string> + + <!-- Settings screen, Video codec dialog title --> + <string name="pref_camera_videoquality_dialogtitle">Video quality</string> + + <!-- Menu item to go to the settings screen --> + <string name="camerasettings">Settings</string> + + <!-- Text message indicating that there are no pictures or videos in a particular + bucket on the SD card --> + <string name="image_gallery_NoImageView_text">No media found.</string> + + <!-- Preference title for whether the user should be prompted form confirmation when deleting images --> + <string name="pref_gallery_confirm_delete_title">Confirm deletions</string> + + <!-- Preference summary for whether the user should be prompted form confirmation when deleting images --> + <string name="pref_gallery_confirm_delete_summary">Show confirmation before deleting a picture or video</string> + + <!-- Details stuff --> + <!-- Do not translate --> + <string name="details_title_text">myvideo</string> + <!-- Do not translate --> + <string name="details_tags_text">monster</string> + <!-- Do not translate --> + <string name="details_category_label">Category:</string> + <!-- Do not translate --> + <string name="details_description_label">Description:</string> + <!-- Do not translate --> + <string name="details_publicView_text">Public</string> + <!-- Do not translate --> + <string name="details_tags_label">Tags:</string> + <!-- Do not translate --> + <string name="details_description_text">testdescription</string> + <!-- Do not translate --> + <string name="details_title_label">Title:</string> + <!-- Do not translate --> + <string name="details_save_text">Save</string> + <!-- Do not translate --> + <string name="details_language_label">Language:</string> + <!-- Do not translate --> + <string name="details_privateView_text">Private</string> + + <!-- Title of Details dialog --> + <string name="details_panel_title">Details</string> + <!-- Label in message of Details dialog --> + <string name="details_file_size">File size:</string> + <!-- Label in message of Details dialog --> + <string name="details_image_resolution">Resolution:</string> + <!-- Label in message of Details dialog --> + <string name="details_duration">Duration:</string> + <!-- Label in message of Details dialog --> + <string name="details_date_taken">Date taken:</string> + <!-- Label in message of Details dialog --> + <string name="details_frame_rate">Frame rate:</string> + <!-- Label in message of Details dialog --> + <string name="details_bit_rate">Bit rate:</string> + <!-- Label in message of Details dialog --> + <string name="details_codec">Codec:</string> + <!-- Label in message of Details dialog --> + <string name="details_format">Format:</string> + + <!-- Used to format image dimensions in Details dialog. e.g. 64 x 64 --> + <string name="details_dimension_x">%1$d x %2$d</string> + <!-- Used to format short video duration in Details dialog. minutes:seconds e.g. 00:30 --> + <string name="details_ms">%1$02d:%2$02d</string> + <!-- Used to format video duration in Details dialog. hours:minutes:seconds e.g. 0:21:30 --> + <string name="details_hms">%1$d:%2$02d:%3$02d</string> + <!-- Unit of measure in the Details dialog frames per second. e.g. 20 fps --> + <string name="details_fps">%1$d fps</string> + <!-- Unit of measure in the Details dialog K bits per second. e.g. 192 Kbps --> + <string name="details_kbps">%1$d Kbps</string> + <!-- Unit of measure in the Details dialog M bits per second. e.g. 2.3 Mbps --> + <string name="details_mbps">%1$g Mbps</string> + <!-- Details dialog "OK" button. Dismisses dialog. --> + <string name="details_ok">OK</string> + + <!-- Text of context menu when an image is selected --> + <string name="context_menu_header">Picture options</string> + <!-- Text of context menu when a video is selected --> + <string name="video_context_menu_header">Video options</string> + <!-- Hint that appears when cropping an image with more than one face --> + <string name="multiface_crop_help">Tap a face to begin.</string> + + <!-- Activity title when in the image gallery to see pictures --> + <string name="photos_gallery_title">Gallery</string> + + <!-- Activity title when in the image gallery to select a picture --> + <string name="pick_photos_gallery_title">Select picture</string> + + <!-- Activity title when in the image gallery to see videos --> + <string name="videos_gallery_title">Gallery</string> + + <!-- Activity title when in the image gallery to select a video --> + <string name="pick_videos_gallery_title">Select video</string> + + <!-- onscreen text indicating the progress of generating thumbnails. Basically some number followed by the word "remaining" --> + <string name="loading_progress_format_string"><xliff:g id="counter">%d</xliff:g> remaining</string> + + <!-- Displayed in the title of the dialog for things to do with a picture that + is to be sent to another application: --> + <string name="sendImage">Share picture via</string> + + <!-- Displayed in the title of the dialog for things to do with a picture that + is to be "set as" (e.g. set as contact photo or set as wallpaper) --> + <string name="setImage">Set picture as</string> + + <!-- Displayed in the title of the dialog for things to do with a video that + is to be sent to another application. --> + <string name="sendVideo">Share video via</string> + + <!-- Activity label. This might show up in the activity-picker --> + <string name="movieviewlabel">Movies</string> + <!-- shown in the video player view while the video is being loaded, before it starts playing --> + <string name="loading_video">Loading video\u2026</string> + + <!-- Low-memory dialog title --> + <string name="spaceIsLow_title">Space is low</string> + <!-- Low-memory dialog message --> + <string name="spaceIsLow_content">Your SD card is running out of space. Change the quality setting or delete items from Gallery.</string> + + <!-- Movie View Resume Playing dialog title --> + <string name="resume_playing_title">Resume video</string> + + <!-- Movie View Start Playing dialog title --> + <string name="resume_playing_message">Resume playing from %s ?</string> + + <!-- Movie View Start Playing button "Resume from bookmark" --> + <string name="resume_playing_resume">Resume playing</string> + + <!-- Movie View Start Playing button "Beginning" --> + <string name="resume_playing_restart">Start over</string> + + <!-- Title for picture frame gadget to show in list of all available gadgets --> + <string name="gadget_title">Picture frame</string> + + <!-- Video Camera format string for new video files. Passed to java.text.SimpleDateFormat. + Do not localize --> + <string name="video_file_name_format">"'video'-yyyy-MM-dd-HH-mm-ss"</string> + + <!-- Title for the file information dialog --> + <string name="file_info_title">File info:</string> + + <!-- The video is execeed the size limit of a MMS, and suggest user to record a shorter length clip --> + <string name="video_exceed_mms_limit">The video you recorded is too large to send via MMS. Try recording a shorter length clip.</string> + +</resources> diff --git a/res/values/styles.xml b/res/values/styles.xml new file mode 100644 index 0000000..bad65fe --- /dev/null +++ b/res/values/styles.xml @@ -0,0 +1,54 @@ +<?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"> + <style name="OnScreenHintTextAppearance"> + <item name="android:textColor">@android:color/primary_text_dark</item> + <item name="android:textColorHighlight">#FFFF9200</item> + <item name="android:textColorHint">#808080</item> + <item name="android:textColorLink">#5C5CFF</item> + <item name="android:textSize">16sp</item> + <item name="android:textStyle">normal</item> + </style> + <style name="OnScreenHintTextAppearance.Small"> + <item name="android:textSize">14sp</item> + <item name="android:textStyle">normal</item> + <item name="android:textColor">@android:color/secondary_text_dark</item> + </style> + <style name="Animation" /> + <style name="Animation.OnScreenHint"> + <item name="android:windowEnterAnimation">@anim/on_screen_hint_enter</item> + <item name="android:windowExitAnimation">@anim/on_screen_hint_exit</item> + </style> + <style name="OnscreenActionIcon"> + <item name="android:focusable">true</item> + <item name="android:clickable">true</item> + <item name="android:textSize">13dip</item> + <item name="android:singleLine">true</item> + <item name="android:ellipsize">marquee</item> + <item name="android:shadowColor">#FF000000</item> + <item name="android:shadowRadius">2.0</item> + <item name="android:textColor">#FFF</item> + <item name="android:gravity">center_horizontal</item> + <item name="android:layout_width">wrap_content</item> + <item name="android:layout_height">wrap_content</item> + <item name="android:layout_marginLeft">30dip</item> + <item name="android:drawablePadding">3dip</item> + </style> +</resources> diff --git a/res/xml/camera_preferences.xml b/res/xml/camera_preferences.xml new file mode 100644 index 0000000..4d8b7b7 --- /dev/null +++ b/res/xml/camera_preferences.xml @@ -0,0 +1,42 @@ +<?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. +--> + +<!-- This is a primitive example showing the different types of preferences available. --> +<PreferenceScreen + xmlns:android="http://schemas.android.com/apk/res/android"> + + <PreferenceCategory + android:title="@string/pref_camera_general_settings_category"> + + <CheckBoxPreference + android:key="pref_camera_recordlocation_key" + android:title="@string/pref_camera_recordlocation_title" + android:summary="@string/pref_camera_recordlocation_summary" + android:defaultValue="false"/> + </PreferenceCategory> + + <PreferenceCategory + android:title="@string/pref_camera_videoquality_category"> + <!-- android:summary is filled in by CameraSettings --> + <ListPreference + android:key="pref_camera_videoquality_key" + android:defaultValue="@string/pref_camera_videoquality_default" + android:title="@string/pref_camera_videoquality_title" + android:entries="@array/pref_camera_videoquality_entries" + android:entryValues="@array/pref_camera_videoquality_entryvalues" + android:dialogTitle="@string/pref_camera_videoquality_dialogtitle" /> + </PreferenceCategory> +</PreferenceScreen> diff --git a/res/xml/gadget_info.xml b/res/xml/gadget_info.xml new file mode 100644 index 0000000..5efaddd --- /dev/null +++ b/res/xml/gadget_info.xml @@ -0,0 +1,24 @@ +<?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. +--> + +<gadget-provider xmlns:android="http://schemas.android.com/apk/res/android" + android:minWidth="146dip" + android:minHeight="146dip" + android:updatePeriodMillis="0" + android:initialLayout="@layout/photo_frame" + android:configure="com.android.camera.PhotoGadgetConfigure" + > +</gadget-provider> diff --git a/res/xml/gallery_preferences.xml b/res/xml/gallery_preferences.xml new file mode 100644 index 0000000..0ddc166 --- /dev/null +++ b/res/xml/gallery_preferences.xml @@ -0,0 +1,89 @@ +<?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. +--> + +<!-- This is a primitive example showing the different types of preferences available. --> +<PreferenceScreen + xmlns:android="http://schemas.android.com/apk/res/android"> + + <PreferenceCategory + android:title="@string/pref_gallery_category"> + + <ListPreference + android:key="pref_gallery_size_key" + android:title="@string/pref_gallery_size_title" + android:summary="@string/pref_gallery_size_summary" + android:entries="@array/pref_gallery_size_choices" + android:entryValues="@array/pref_gallery_size_values" + android:dialogTitle="@string/pref_gallery_size_dialogtitle" + android:defaultValue="@string/default_value_pref_gallery_size" /> + + <ListPreference + android:key="pref_gallery_sort_key" + android:title="@string/pref_gallery_sort_title" + android:summary="@string/pref_gallery_sort_summary" + android:entries="@array/pref_gallery_sort_choices" + android:entryValues="@array/pref_gallery_sort_values" + android:dialogTitle="@string/pref_gallery_sort_dialogtitle" + android:defaultValue="@string/default_value_pref_gallery_sort" /> + + <CheckBoxPreference + android:key="pref_gallery_confirm_delete_key" + android:title="@string/pref_gallery_confirm_delete_title" + android:summary="@string/pref_gallery_confirm_delete_summary" + android:defaultValue="true"/> +<!-- + <EditTextPreference + android:key="pref_camera_upload_albumname_key" + android:title="@string/pref_camera_upload_albumname_title" + android:summary="@string/pref_camera_upload_albumname_summary" + android:dialogTitle="@string/pref_camera_upload_albumname_dialogtitle" + android:singleLine="true" /> +--> + </PreferenceCategory> + <PreferenceCategory + android:title="@string/pref_slideshow_category"> + <ListPreference + android:key="pref_gallery_slideshow_interval_key" + android:title="@string/pref_gallery_slideshow_interval_title" + android:summary="@string/pref_gallery_slideshow_interval_summary" + android:entries="@array/pref_gallery_slideshow_interval_choices" + android:entryValues="@array/pref_gallery_slideshow_interval_values" + android:dialogTitle="@string/pref_gallery_slideshow_interval_dialogtitle" + android:defaultValue="@string/default_value_pref_gallery_slideshow_interval" /> + + <ListPreference + android:key="pref_gallery_slideshow_transition_key" + android:title="@string/pref_gallery_slideshow_transition_title" + android:summary="@string/pref_gallery_slideshow_transition_summary" + android:entries="@array/pref_gallery_slideshow_transition_choices" + android:entryValues="@array/pref_gallery_slideshow_transition_values" + android:dialogTitle="@string/pref_gallery_slideshow_transition_dialogtitle" + android:defaultValue="@string/default_value_pref_gallery_slideshow_transition" /> + + <CheckBoxPreference + android:key="pref_gallery_slideshow_repeat_key" + android:title="@string/pref_gallery_slideshow_repeat_title" + android:summary="@string/pref_gallery_slideshow_repeat_summary" + android:defaultValue="false"/> + + <CheckBoxPreference + android:key="pref_gallery_slideshow_shuffle_key" + android:title="@string/pref_gallery_slideshow_shuffle_title" + android:summary="@string/pref_gallery_slideshow_shuffle_summary" + android:defaultValue="false"/> + + </PreferenceCategory> +</PreferenceScreen> |
