diff options
author | The Android Open Source Project <initial-contribution@android.com> | 2008-10-21 07:00:00 -0700 |
---|---|---|
committer | The Android Open Source Project <initial-contribution@android.com> | 2008-10-21 07:00:00 -0700 |
commit | 1d4c75065966c4f6f56900e31f655bfd1b334435 (patch) | |
tree | 5d4526db3153daa63087fcb9384f8bc0659fbd18 /res | |
download | packages_apps_LegacyCamera-1d4c75065966c4f6f56900e31f655bfd1b334435.zip packages_apps_LegacyCamera-1d4c75065966c4f6f56900e31f655bfd1b334435.tar.gz packages_apps_LegacyCamera-1d4c75065966c4f6f56900e31f655bfd1b334435.tar.bz2 |
Initial Contribution
Diffstat (limited to 'res')
99 files changed, 3661 insertions, 0 deletions
diff --git a/res/anim/alpha_in.xml b/res/anim/alpha_in.xml new file mode 100644 index 0000000..6ad315a --- /dev/null +++ b/res/anim/alpha_in.xml @@ -0,0 +1,24 @@ +<?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. +--> + +<set xmlns:android="http://schemas.android.com/apk/res/android" android:shareInterpolator="false"> + <alpha + android:fromAlpha="0.0" + android:toAlpha="1.0" + android:fillAfter="true" + android:startOffset="900" + android:duration="700" /> +</set> diff --git a/res/anim/alpha_out.xml b/res/anim/alpha_out.xml new file mode 100644 index 0000000..bf6ee89 --- /dev/null +++ b/res/anim/alpha_out.xml @@ -0,0 +1,25 @@ +<?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. +--> + +<set xmlns:android="http://schemas.android.com/apk/res/android" android:shareInterpolator="false"> + <alpha + android:fromAlpha="1.0" + android:toAlpha="0.0" + android:fillAfter="true" + android:duration="700" /> +</set> + + 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/hyperspace_out.xml b/res/anim/hyperspace_out.xml new file mode 100644 index 0000000..f963156 --- /dev/null +++ b/res/anim/hyperspace_out.xml @@ -0,0 +1,56 @@ +<?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. +--> + +<set xmlns:android="http://schemas.android.com/apk/res/android" android:shareInterpolator="false"> + + <scale + android:interpolator="@android:anim/accelerate_decelerate_interpolator" + android:fromXScale="1.0" + android:toXScale="1.4" + android:fromYScale="1.0" + android:toYScale="0.6" + android:pivotX="50%" + android:pivotY="50%" + android:fillAfter="false" + android:duration="700" /> + + + <set + android:interpolator="@android:anim/accelerate_interpolator"> + + <scale + android:fromXScale="1.4" + android:toXScale="0.0" + android:fromYScale="0.6" + android:toYScale="0.0" + android:pivotX="50%" + android:pivotY="50%" + android:startOffset="700" + android:duration="400" + android:fillBefore="false" /> + + <rotate + android:fromDegrees="0" + android:toDegrees="-45" + android:toYScale="0.0" + android:pivotX="50%" + android:pivotY="50%" + android:startOffset="700" + android:duration="400" /> + </set> + +</set> + diff --git a/res/anim/rotate_in.xml b/res/anim/rotate_in.xml new file mode 100644 index 0000000..25edc8b --- /dev/null +++ b/res/anim/rotate_in.xml @@ -0,0 +1,24 @@ +<?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. +--> + +<rotate xmlns:android="http://schemas.android.com/apk/res/android" + android:fromDegrees="90" + android:toDegrees="0" + android:toYScale="0.0" + android:pivotX="0%" + android:pivotY="100%" + android:startOffset="400" + android:duration="300" /> diff --git a/res/anim/rotate_out.xml b/res/anim/rotate_out.xml new file mode 100644 index 0000000..4ebf33f --- /dev/null +++ b/res/anim/rotate_out.xml @@ -0,0 +1,26 @@ +<?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. +--> + +<rotate xmlns:android="http://schemas.android.com/apk/res/android" + android:fromDegrees="0" + android:toDegrees="-90" + android:toYScale="0.0" + android:pivotX="0%" + android:pivotY="100%" + android:startOffset="0" + android:duration="300" /> + + diff --git a/res/anim/rotate_shrink_in.xml b/res/anim/rotate_shrink_in.xml new file mode 100644 index 0000000..3582102 --- /dev/null +++ b/res/anim/rotate_shrink_in.xml @@ -0,0 +1,38 @@ +<?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. +--> + +<set xmlns:android="http://schemas.android.com/apk/res/android" android:shareInterpolator="false"> + <scale + android:fromXScale="0.01" + android:toXScale="1.0" + android:fromYScale="0.01" + android:toYScale="1.0" + android:pivotX="50%" + android:pivotY="50%" + android:fillAfter="true" + android:startOffset="400" + android:duration="300" /> + + <rotate + android:fromDegrees="90" + android:toDegrees="0" + android:toYScale="0.0" + android:pivotX="50%" + android:pivotY="50%" + android:fillAfter="true" + android:startOffset="400" + android:duration="300" /> +</set> diff --git a/res/anim/rotate_shrink_out.xml b/res/anim/rotate_shrink_out.xml new file mode 100644 index 0000000..c608a8f --- /dev/null +++ b/res/anim/rotate_shrink_out.xml @@ -0,0 +1,38 @@ +<?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. +--> + +<set xmlns:android="http://schemas.android.com/apk/res/android" android:shareInterpolator="false"> + <scale + android:fromXScale="1.0" + android:toXScale="0.01" + android:fromYScale="1.0" + android:toYScale="0.01" + android:pivotX="50%" + android:pivotY="50%" + android:fillAfter="true" + android:duration="300" /> + + <rotate + android:fromDegrees="0" + android:toDegrees="-90" + android:pivotX="50%" + android:pivotY="50%" + android:fillAfter="true" + android:startOffset="0" + android:duration="300" /> +</set> + + 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/app_camera.png b/res/drawable/app_camera.png Binary files differnew file mode 100644 index 0000000..a2bb888 --- /dev/null +++ b/res/drawable/app_camera.png diff --git a/res/drawable/app_photos.png b/res/drawable/app_photos.png Binary files differnew file mode 100644 index 0000000..971a41e --- /dev/null +++ b/res/drawable/app_photos.png diff --git a/res/drawable/btn_camera_arrow_left.xml b/res/drawable/btn_camera_arrow_left.xml new file mode 100644 index 0000000..9d7dcdd --- /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_window_focused="false" + android:drawable="@drawable/btn_camera_arrow_left_default" /> + + <item android:state_pressed="true" + android:drawable="@drawable/btn_camera_arrow_left_press" /> + + <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_right.xml b/res/drawable/btn_camera_arrow_right.xml new file mode 100644 index 0000000..cc6ee2d --- /dev/null +++ b/res/drawable/btn_camera_arrow_right.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_window_focused="false" + android:drawable="@drawable/btn_camera_arrow_right_default" /> + + <item android:state_pressed="true" + android:drawable="@drawable/btn_camera_arrow_right_press" /> + + <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/camera_crop_height.png b/res/drawable/camera_crop_height.png Binary files differnew file mode 100755 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 100755 index 0000000..65216af --- /dev/null +++ b/res/drawable/camera_crop_width.png diff --git a/res/drawable/carousel_tray_bg.9.png b/res/drawable/carousel_tray_bg.9.png Binary files differnew file mode 100644 index 0000000..d51babe --- /dev/null +++ b/res/drawable/carousel_tray_bg.9.png diff --git a/res/drawable/counter_divider.png b/res/drawable/counter_divider.png Binary files differnew file mode 100644 index 0000000..ff35a08 --- /dev/null +++ b/res/drawable/counter_divider.png diff --git a/res/drawable/delete_image.png b/res/drawable/delete_image.png Binary files differnew file mode 100644 index 0000000..032e683 --- /dev/null +++ b/res/drawable/delete_image.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 100755 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 100755 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 100755 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 100755 index 0000000..222a38a --- /dev/null +++ b/res/drawable/frame_gallery_preview_album_selected.png diff --git a/res/drawable/frame_gallery_preview_album_sublevel.png b/res/drawable/frame_gallery_preview_album_sublevel.png Binary files differnew file mode 100755 index 0000000..489a4f4 --- /dev/null +++ b/res/drawable/frame_gallery_preview_album_sublevel.png diff --git a/res/drawable/frame_gallery_preview_album_sublevel_mask.png b/res/drawable/frame_gallery_preview_album_sublevel_mask.png Binary files differnew file mode 100755 index 0000000..4eefa03 --- /dev/null +++ b/res/drawable/frame_gallery_preview_album_sublevel_mask.png diff --git a/res/drawable/frame_gallery_preview_album_sublevel_pressed.png b/res/drawable/frame_gallery_preview_album_sublevel_pressed.png Binary files differnew file mode 100755 index 0000000..970993f --- /dev/null +++ b/res/drawable/frame_gallery_preview_album_sublevel_pressed.png diff --git a/res/drawable/frame_gallery_preview_album_sublevel_selected.png b/res/drawable/frame_gallery_preview_album_sublevel_selected.png Binary files differnew file mode 100755 index 0000000..70330ce --- /dev/null +++ b/res/drawable/frame_gallery_preview_album_sublevel_selected.png diff --git a/res/drawable/frame_gallery_thumb_uploaded_overlay.png b/res/drawable/frame_gallery_thumb_uploaded_overlay.png Binary files differnew file mode 100755 index 0000000..85b1fc8 --- /dev/null +++ b/res/drawable/frame_gallery_thumb_uploaded_overlay.png diff --git a/res/drawable/frame_overlay_gallery_camera.png b/res/drawable/frame_overlay_gallery_camera.png Binary files differnew file mode 100755 index 0000000..a1fcfff --- /dev/null +++ b/res/drawable/frame_overlay_gallery_camera.png diff --git a/res/drawable/frame_overlay_gallery_downloaded.png b/res/drawable/frame_overlay_gallery_downloaded.png Binary files differnew file mode 100755 index 0000000..70853ec --- /dev/null +++ b/res/drawable/frame_overlay_gallery_downloaded.png diff --git a/res/drawable/frame_overlay_gallery_video.png b/res/drawable/frame_overlay_gallery_video.png Binary files differnew file mode 100755 index 0000000..5381146 --- /dev/null +++ b/res/drawable/frame_overlay_gallery_video.png diff --git a/res/drawable/grid_background.xml b/res/drawable/grid_background.xml new file mode 100644 index 0000000..8e0369e --- /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_focused="true" android:drawable="@drawable/image_border_bg_focus_blue" /> + <item android:drawable="@drawable/image_border_bg_normal" /> +</selector> diff --git a/res/drawable/highlight_unfocus.9.png b/res/drawable/highlight_unfocus.9.png Binary files differnew file mode 100644 index 0000000..2a505b8 --- /dev/null +++ b/res/drawable/highlight_unfocus.9.png diff --git a/res/drawable/ic_camera_flash.png b/res/drawable/ic_camera_flash.png Binary files differnew file mode 100755 index 0000000..58265bf --- /dev/null +++ b/res/drawable/ic_camera_flash.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_flash_auto.png b/res/drawable/ic_camera_indicator_flash_auto.png Binary files differnew file mode 100755 index 0000000..a2809f1 --- /dev/null +++ b/res/drawable/ic_camera_indicator_flash_auto.png diff --git a/res/drawable/ic_camera_indicator_flash_off.png b/res/drawable/ic_camera_indicator_flash_off.png Binary files differnew file mode 100755 index 0000000..9a28b10 --- /dev/null +++ b/res/drawable/ic_camera_indicator_flash_off.png diff --git a/res/drawable/ic_camera_indicator_flash_on.png b/res/drawable/ic_camera_indicator_flash_on.png Binary files differnew file mode 100755 index 0000000..01fb9a4 --- /dev/null +++ b/res/drawable/ic_camera_indicator_flash_on.png diff --git a/res/drawable/ic_camera_indicator_memory.9.png b/res/drawable/ic_camera_indicator_memory.9.png Binary files differnew file mode 100644 index 0000000..ba4e1f5 --- /dev/null +++ b/res/drawable/ic_camera_indicator_memory.9.png diff --git a/res/drawable/ic_camera_indicator_photo.png b/res/drawable/ic_camera_indicator_photo.png Binary files differnew file mode 100755 index 0000000..ea981f4 --- /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 100755 index 0000000..eaaa9e4 --- /dev/null +++ b/res/drawable/ic_camera_indicator_video.png diff --git a/res/drawable/ic_camera_select_image.png b/res/drawable/ic_camera_select_image.png Binary files differnew file mode 100755 index 0000000..848123c --- /dev/null +++ b/res/drawable/ic_camera_select_image.png diff --git a/res/drawable/ic_camera_select_video.png b/res/drawable/ic_camera_select_video.png Binary files differnew file mode 100755 index 0000000..8d63517 --- /dev/null +++ b/res/drawable/ic_camera_select_video.png diff --git a/res/drawable/ic_gallery_back_to_entry.png b/res/drawable/ic_gallery_back_to_entry.png Binary files differnew file mode 100755 index 0000000..ad297ae --- /dev/null +++ b/res/drawable/ic_gallery_back_to_entry.png diff --git a/res/drawable/ic_gallery_empty.png b/res/drawable/ic_gallery_empty.png Binary files differnew file mode 100755 index 0000000..b140f84 --- /dev/null +++ b/res/drawable/ic_gallery_empty.png diff --git a/res/drawable/ic_gallery_finish.png b/res/drawable/ic_gallery_finish.png Binary files differnew file mode 100755 index 0000000..550e86a --- /dev/null +++ b/res/drawable/ic_gallery_finish.png diff --git a/res/drawable/ic_gallery_picasa_upload.png b/res/drawable/ic_gallery_picasa_upload.png Binary files differnew file mode 100755 index 0000000..211f93e --- /dev/null +++ b/res/drawable/ic_gallery_picasa_upload.png diff --git a/res/drawable/ic_gallery_upload_to.png b/res/drawable/ic_gallery_upload_to.png Binary files differnew file mode 100755 index 0000000..b8a338f --- /dev/null +++ b/res/drawable/ic_gallery_upload_to.png diff --git a/res/drawable/ic_gallery_youtube_upload.png b/res/drawable/ic_gallery_youtube_upload.png Binary files differnew file mode 100755 index 0000000..21c3820 --- /dev/null +++ b/res/drawable/ic_gallery_youtube_upload.png diff --git a/res/drawable/ic_launcher_camera.png b/res/drawable/ic_launcher_camera.png Binary files differnew file mode 100755 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 100755 index 0000000..965fb71 --- /dev/null +++ b/res/drawable/ic_launcher_gallery.png 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_video_empty.png b/res/drawable/ic_video_empty.png Binary files differnew file mode 100755 index 0000000..1209f86 --- /dev/null +++ b/res/drawable/ic_video_empty.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_focus_blue9.png b/res/drawable/image_border_bg_focus_blue9.png Binary files differnew file mode 100644 index 0000000..89debd2 --- /dev/null +++ b/res/drawable/image_border_bg_focus_blue9.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_normal9.png b/res/drawable/image_border_bg_normal9.png Binary files differnew file mode 100644 index 0000000..18e3607 --- /dev/null +++ b/res/drawable/image_border_bg_normal9.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/image_border_bg_pressed_blue9.png b/res/drawable/image_border_bg_pressed_blue9.png Binary files differnew file mode 100644 index 0000000..94fa74f --- /dev/null +++ b/res/drawable/image_border_bg_pressed_blue9.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/play_video.png b/res/drawable/play_video.png Binary files differnew file mode 100644 index 0000000..0c10731 --- /dev/null +++ b/res/drawable/play_video.png diff --git a/res/drawable/popup_camera_toast.9.png b/res/drawable/popup_camera_toast.9.png Binary files differnew file mode 100755 index 0000000..c1f0c1f --- /dev/null +++ b/res/drawable/popup_camera_toast.9.png diff --git a/res/layout/camera.xml b/res/layout/camera.xml new file mode 100644 index 0000000..1bd5a14 --- /dev/null +++ b/res/layout/camera.xml @@ -0,0 +1,118 @@ +<?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"> + + <SurfaceView + android:id="@+id/camera_preview" + android:layout_width="fill_parent" + android:layout_height="fill_parent" + android:layout_centerInParent="true" + /> + + <ImageView + android:id="@+id/blackout" + android:layout_width="fill_parent" + android:layout_height="fill_parent" + android:visibility="invisible" + /> + + <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_alignParentRight="true" + android:layout_alignParentTop="true" + android:layout_marginRight="6dip" + android:layout_marginTop="6dip" + android:scaleType="center"/> + + <TextView + android:id="@+id/hint_toast" + android:layout_alignParentRight="true" + android:layout_alignParentTop="true" + android:background="@drawable/popup_camera_toast" + android:layout_width="200dip" + android:layout_height="wrap_content" + android:gravity="center" + android:text="@string/camera_button_hint" + android:textSize="18sp" + android:visibility="visible"/> + + <AbsoluteLayout + android:background="#CC666666" + android:visibility="invisible" + android:id="@+id/post_picture_panel" + android:layout_width="fill_parent" + android:layout_height="wrap_content" + android:layout_centerHorizontal="true" + android:layout_alignParentBottom="true" + android:layout_alignParentRight="false"> + <View android:layout_width="fill_parent" + android:layout_height="1dip" + android:background="@android:drawable/divider_horizontal_dark" /> + <LinearLayout + android:paddingLeft="7dip" + android:paddingRight="7dip" + android:paddingTop="6dip" + android:paddingBottom="6dip" + android:layout_width="fill_parent" + android:layout_height="wrap_content" + android:background="#00000000" + android:orientation="horizontal"> + <Button + android:id="@+id/save" + android:textSize="18sp" + android:drawableTop="@android:drawable/ic_menu_save" + android:layout_width="112dip" + android:layout_height="wrap_content" + android:text="@string/camera_keep" + /> + <View android:layout_width="6dip" android:layout_height="6dip" /> + <Button + android:id="@+id/setas" + android:textSize="18sp" + android:drawableTop="@android:drawable/ic_menu_set_as" + android:layout_width="112dip" + android:layout_height="wrap_content" + android:text="@string/camera_set" + /> + <View android:layout_width="6dip" android:layout_height="6dip" /> + <Button + android:id="@+id/share" + android:textSize="18sp" + android:drawableTop="@android:drawable/ic_menu_share" + android:layout_width="112dip" + android:layout_height="wrap_content" + android:text="@string/camera_share" + /> + <View android:layout_width="6dip" android:layout_height="6dip" /> + <Button + android:id="@+id/discard" + android:textSize="18sp" + android:drawableTop="@android:drawable/ic_menu_delete" + android:layout_width="112dip" + android:layout_height="wrap_content" + android:text="@string/camera_toss" + /> + </LinearLayout> + </AbsoluteLayout> +</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..21cac08 --- /dev/null +++ b/res/layout/detailsview.xml @@ -0,0 +1,96 @@ +<?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="10dip" + android:paddingRight="10dip" + android:paddingBottom="10dp"> + + <LinearLayout + android:orientation="horizontal" + android:gravity="center_vertical" + android:layout_width="fill_parent" + android:layout_height="wrap_content"> + + <ImageView + android:id="@+id/details_thumbnail_image" + android:layout_width="64dip" + android:layout_height="64dip"/> + + <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:layout_marginTop="10dip"> + + <TableRow> + <TextView + android:id="@+id/details_attrname_1" + android:gravity="right" + android:textAppearance="?android:attr/textAppearanceSmall" /> + <TextView + android:id="@+id/details_attrvalu_1" + android:textAppearance="?android:attr/textAppearanceSmall" + android:paddingLeft="5dip" + android:textColor="?android:attr/textColorPrimary"/> + </TableRow> + + <TableRow> + <TextView + android:id="@+id/details_attrname_2" + android:gravity="right" + android:textAppearance="?android:attr/textAppearanceSmall"/> + <TextView + android:id="@+id/details_attrvalu_2" + android:textAppearance="?android:attr/textAppearanceSmall" + android:paddingLeft="5dip" + android:textColor="?android:attr/textColorPrimary"/> + </TableRow> + + <TableRow + android:id="@+id/details_daterow"> + <TextView + android:id="@+id/details_attrname_3" + android:gravity="right" + android:textAppearance="?android:attr/textAppearanceSmall"/> + <TextView + android:id="@+id/details_attrvalu_3" + 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..5536dad --- /dev/null +++ b/res/layout/gallery_picker_item.xml @@ -0,0 +1,43 @@ +<?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. +--> + +<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" + android:layout_width="160dp" android:paddingTop="0dip" + android:paddingBottom="0dip" android:paddingLeft="0dip" + android:layout_height="wrap_content"> + + <LinearLayout android:orientation="vertical" + android:layout_width="wrap_content" + 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:maxLines="2" + android:textColor="#ffffffff" + android:ellipsize="end" + android:layout_height="wrap_content" /> + + </LinearLayout> +</FrameLayout> diff --git a/res/layout/gallerypicker.xml b/res/layout/gallerypicker.xml new file mode 100644 index 0000000..42dbc7e --- /dev/null +++ b/res/layout/gallerypicker.xml @@ -0,0 +1,32 @@ +<?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. +--> + +<AbsoluteLayout xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/root" + android:layout_width="fill_parent" + android:layout_height="fill_parent" + android:background="#000000"> + + <GridView android:id="@+id/albums" + android:layout_width="fill_parent" + android:layout_height="fill_parent" + android:paddingTop="2dip" + android:numColumns="auto_fit" + android:columnWidth="160dp" + android:stretchMode="spacingWidth" + android:drawSelectorOnTop="false" /> + +</AbsoluteLayout> + diff --git a/res/layout/gallerysettings.xml b/res/layout/gallerysettings.xml new file mode 100644 index 0000000..b513813 --- /dev/null +++ b/res/layout/gallerysettings.xml @@ -0,0 +1,63 @@ +<?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. +--> + +<ScrollView xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/scroll_view" + android:orientation="vertical" + android:layout_width="fill_parent" + android:layout_height="fill_parent" + android:background="#1C1C1C"> + + <LinearLayout android:id="@+id/layout" + android:layout_width="fill_parent" + android:layout_height="fill_parent" + android:paddingTop="30dip" + android:orientation="vertical"> + + <LinearLayout android:orientation="horizontal" + android:layout_width="fill_parent" + android:layout_height="50dip"> + <TextView + android:layout_height="wrap_content" + android:textColor="#FFFFFFFF" + android:layout_width="0dip" + android:textSize="10sp" + android:layout_weight="50" + android:gravity="right" + android:singleLine="false" + android:text="@string/gallerysettings_duration" /> + + <Spinner android:id="@+id/slide_show_speed" + android:layout_width="0dip" + android:layout_weight="50" + android:layout_marginRight="10dip" + android:layout_marginLeft="20dip" + android:layout_height="wrap_content"> + </Spinner> + + </LinearLayout> + + <Button android:id="@+id/done" + android:layout_width="80dip" + android:layout_height="wrap_content" + android:layout_marginTop="70dip" + android:layout_marginRight="10dip" + android:gravity="bottom" + android:layout_gravity="right" + android:text="@string/camerasettings_done" /> + + </LinearLayout> +</ScrollView> + 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.xml b/res/layout/image_gallery.xml new file mode 100644 index 0000000..d4b9db6 --- /dev/null +++ b/res/layout/image_gallery.xml @@ -0,0 +1,44 @@ +<?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. +--> + +<AbsoluteLayout xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/root" + android:layout_width="fill_parent" + android:layout_height="fill_parent"> + + <GridView + android:id="@+id/grid" + android:layout_width="fill_parent" + android:layout_height="fill_parent" + android:padding="12dp" + android:verticalSpacing="8dp" + android:horizontalSpacing="8dp" + android:stretchMode="spacingWidth" + android:gravity="center" + android:drawSelectorOnTop="false" + android:listSelector="@drawable/grid_background" + android:numColumns="auto_fit" + android:columnWidth="64dp" + android:fadingEdge="none" + /> + + <TextView android:id="@+id/NoImageView" + android:layout_width="fill_parent" + android:layout_height="fill_parent" + android:text="@string/image_gallery_NoImageView_text" + android:textColor="#FFFFFFFF" + /> +</AbsoluteLayout> + diff --git a/res/layout/image_gallery_2.xml b/res/layout/image_gallery_2.xml new file mode 100644 index 0000000..0f4926c --- /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_empty" + 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/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/viewimage.xml b/res/layout/viewimage.xml new file mode 100644 index 0000000..de042f1 --- /dev/null +++ b/res/layout/viewimage.xml @@ -0,0 +1,96 @@ +<?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:id="@+id/prev_image" + 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: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/layout/viewvideo.xml b/res/layout/viewvideo.xml new file mode 100644 index 0000000..49af24b --- /dev/null +++ b/res/layout/viewvideo.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. +--> + +<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" + android:layout_width="fill_parent" + android:layout_height="fill_parent" + android:background="#FF000000" + > + + <VideoView android:id="@+id/video" + android:layout_centerInParent="true" + android:layout_width="fill_parent" + android:layout_height="fill_parent" /> +</RelativeLayout> + diff --git a/res/layout/youtube_upload_info.xml b/res/layout/youtube_upload_info.xml new file mode 100644 index 0000000..fa62a77 --- /dev/null +++ b/res/layout/youtube_upload_info.xml @@ -0,0 +1,82 @@ +<?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:layout_width="fill_parent" + android:layout_height="wrap_content"> +> + <LinearLayout + android:orientation="vertical" + android:layout_width="fill_parent" + android:layout_height="wrap_content"> + + + <TextView android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:text="@string/upload_info_title" + android:textSize="12sp" /> + + <EditText android:id="@+id/video_title" + android:layout_width="fill_parent" + android:layout_height="wrap_content" android:autoText="true" + android:capitalize="words" android:textSize="12sp" /> + + <TextView android:layout_width="wrap_content" + android:layout_height="wrap_content" android:paddingTop="10dip" + android:text="@string/details_category_label" + android:textSize="12sp" /> + + <Spinner android:id="@+id/category" + android:layout_width="fill_parent" + android:layout_height="wrap_content" + android:drawSelectorOnTop="false" android:textSize="12sp" /> + + <TextView android:id="@+id/tags_label" + android:layout_width="fill_parent" android:paddingTop="10dip" + android:layout_height="wrap_content" + android:text="@string/upload_info_tags" android:textSize="12sp" /> + + <EditText android:id="@+id/video_tags" + android:layout_width="fill_parent" + android:layout_height="wrap_content" android:textSize="12sp" + android:autoText="false" android:capitalize="none" /> + + <TextView android:layout_width="fill_parent" + android:paddingTop="10dip" android:layout_height="wrap_content" + android:text="@string/upload_info_description" + android:textSize="12sp" /> + + <EditText android:id="@+id/video_description" + android:layout_width="fill_parent" + android:layout_height="wrap_content" android:autoText="true" + android:capitalize="sentences" android:textSize="12sp" /> + + <LinearLayout android:orientation="horizontal" + android:layout_width="fill_parent" android:paddingTop="10dip" + android:layout_height="wrap_content"> + + <CheckBox android:id="@+id/public_or_private" + android:layout_width="0dip" android:layout_weight="1" + android:layout_height="wrap_content" + android:text="@string/upload_info_private" /> + + <Button android:id="@+id/do_upload" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:text="@string/upload_info_upload" /> + </LinearLayout> +</LinearLayout> +</ScrollView> diff --git a/res/raw/camera_click.ogg b/res/raw/camera_click.ogg Binary files differnew file mode 100644 index 0000000..be0a0d3 --- /dev/null +++ b/res/raw/camera_click.ogg diff --git a/res/values-cs/strings.xml b/res/values-cs/strings.xml new file mode 100644 index 0000000..de897d6 --- /dev/null +++ b/res/values-cs/strings.xml @@ -0,0 +1,206 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="autocrop_before_query">Automaticky nejprve oříznout?</string> + <string name="autocrop_no">Ano</string> + <string name="autocrop_yes">Ano</string> + <string name="best_res">Vysoká</string> + <string name="camera_NoStorageView_text">Před použitím fotoaparátu vložte kartu SD</string> + <string name="camera_ZoomIn_text">Přiblížit</string> + <string name="camera_ZoomOut_text">Oddálit</string> + <string name="camera_button_hint">Stisknutím tlačítka Sejmout pořídíte snímek</string> + <string name="camera_crop">Automaticky oříznout</string> + <string name="camera_done">Nový obrázek</string> + <string name="camera_flash_auto">Automatický blesk</string> + <string name="camera_flash_off">Blesk VYPNUTÝ</string> + <string name="camera_flash_on">Blesk ZAPNUTÝ</string> + <string name="camera_flash_setting">Nastavení blesku</string> + <string name="camera_gallery_photos_text">Obrázky</string> + <string name="camera_gallery_videos_text">Videa</string> + <string name="camera_keeping">Uchovávání\u2026</string> + <string name="camera_label">Fotoaparát</string> + <string name="camera_mode_text">Režim</string> + <string name="camera_movie_record_counter_text">01:30:00</string> + <string name="camera_playvideo">Přehrát</string> + <string name="camera_record_text">Zaznamenat</string> + <string name="camera_selectphoto">Vybrat tento obrázek</string> + <string name="camera_selectvideo">Vybrat video</string> + <string name="camera_set">Nastavit jako\u2026</string> + <string name="camera_setas_contact">Obrázek kontaktu</string> + <string name="camera_setas_myfave">myFaves</string> + <string name="camera_setas_wallpaper">Tapeta</string> + <string name="camera_share">Sdílet</string> + <string name="camera_shareby_email">E-mail</string> + <string name="camera_shareby_mms">MMS</string> + <string name="camera_shareby_picasa">Picasaweb</string> + <string name="camera_shareby_picasa_all">Picasaweb (všechny obrázky)</string> + <string name="camera_switch_to_photo">Přepnout na obrázek</string> + <string name="camera_switch_to_video">Přepnout na video</string> + <string name="camera_takenewphoto">Pořídit nový snímek</string> + <string name="camera_takenewvideo">Pořídit nové video</string> + <string name="camera_toss">Odstranit</string> + <string name="camera_tossing">Odstraňování\u2026</string> + <string name="camera_zoom_1_text">Přiblížit 1,3x</string> + <string name="camera_zoom_2_text">Přiblížit 2x</string> + <string name="camera_zoom_3_text">Přiblížit 4x</string> + <string name="camera_zoom_normal_text">1x</string> + <string name="camerasettings">Nastavení</string> + <string name="camerasettings_autoupload_label">Automaticky odeslat obrázky na web</string> + <string name="camerasettings_done">Hotovo</string> + <string name="camerasettings_duration_label">Doba trvání:</string> + <string name="camerasettings_image_quality_label">Kvalita obrázku:</string> + <string name="camerasettings_no">Ne</string> + <string name="camerasettings_off">Vypnuto</string> + <string name="camerasettings_on">Zapnuto</string> + <string name="camerasettings_play_click_sound_label">Zvuk závěrky</string> + <string name="camerasettings_preferred_view_label">Upřednostňované zobrazení:</string> + <string name="camerasettings_resolution_label">Rozlišení:</string> + <string name="camerasettings_test2_label">test2:</string> + <string name="camerasettings_test3_label">test3:</string> + <string name="camerasettings_test4_label">test4:</string> + <string name="camerasettings_use_sd_card_label">Uložit obrázky na kartu SD</string> + <string name="camerasettings_yes">Ano</string> + <string name="cancel">Storno</string> + <string name="context_menu_header">Možnosti obrázků</string> + <string name="crop_discard_text">Zrušit</string> + <string name="crop_help">Přidržením ALT změňte velikost</string> + <string name="crop_label">Oříznout obrázek</string> + <string name="crop_save_text">Uložit</string> + <string name="delete">Odstranit</string> + <string name="details">Podrobnosti</string> + <string name="details_category_label">Kategorie:</string> + <string name="details_date_taken">Datum pořízení:</string> + <string name="details_description_label">Popis:</string> + <string name="details_description_text">testpopis</string> + <string name="details_file_size">Velikost souboru:</string> + <string name="details_image_resolution">Rozlišení:</string> + <string name="details_language_label">Jazyk:</string> + <string name="details_panel_title">Podrobnosti</string> + <string name="details_privateView_text">Soukromé</string> + <string name="details_publicView_text">Veřejné</string> + <string name="details_save_text">Uložit</string> + <string name="details_tags_label">Značky:</string> + <string name="details_tags_text">monstrum</string> + <string name="details_title_label">Název:</string> + <string name="details_title_text">myvideo</string> + <string name="details_uploaded_text">Úspěšně odesláno</string> + <string name="edit">Upravit</string> + <string name="error_label">Chyba</string> + <string name="gallery_label">Fotografie a videoklipy</string> + <string name="gallery_large">Velký</string> + <string name="gallery_picker_label">Alba</string> + <string name="gallery_small">Malá</string> + <string name="gallerysettings_duration">Doba zobrazení každého snímku v prezentaci</string> + <string name="gallerysettings_speed1">1 sekunda</string> + <string name="gallerysettings_speed2">3 sekundy</string> + <string name="gallerysettings_speed3">5 sekund</string> + <string name="high">Vysoká</string> + <string name="image_gallery_NoImageView_text">Žádné obrázky</string> + <string name="image_gallery_picker_images">Obrázky</string> + <string name="image_gallery_picker_videos">Videa</string> + <string name="low">Nízká</string> + <string name="low_res">Nízká</string> + <string name="med">Střední</string> + <string name="medium_res">Střední</string> + <string name="multiface_crop_help">Vyberte obličej, kterým chcete začít</string> + <string name="no">Ne</string> + <string name="no_images">Album je prázdné</string> + <string name="no_storage">Před použitím fotoaparátu vložte kartu SD</string> + <string name="no_way_to_share_image">Obrázek nelze uložit</string> + <string name="no_way_to_share_video">Toto video nelze sdílet</string> + <string name="not_enough_space">Paměťová karta je plná</string> + <string name="ok">OK</string> + <string name="photos_gallery_title">Obrázky</string> + <string name="picasa_upload_label">Odeslání na web Picasa</string> + <string name="pick_photos_gallery_title">Vybrat obrázek</string> + <string name="pick_videos_gallery_title">Vybrat video</string> + <string name="pref_camera_autoupload_summary">Výběrem nastavíte automatické odesílání obrázků na web Picasa</string> + <string name="pref_camera_autoupload_title">Automaticky odesílat obrázky</string> + <string name="pref_camera_category">Fotoaparát</string> + <string name="pref_camera_recordlocation_summary">Výběrem nastavíte automatický záznam polohy do obrázků</string> + <string name="pref_camera_recordlocation_title">Zaznamenávat polohu do obrázků</string> + <string name="pref_camera_upload_albumname_dialogtitle">Název alba Picasa</string> + <string name="pref_camera_upload_albumname_summary">Zadejte název cílového alba pro obrázky</string> + <string name="pref_camera_upload_albumname_title">Název alba Picasa</string> + <string name="pref_gallery_category">Zobrazení alba obrázků</string> + <string name="pref_gallery_size_dialogtitle">Velikost obrázku</string> + <string name="pref_gallery_size_summary">Vyberte zobrazovanou velikost obrázků v albu</string> + <string name="pref_gallery_size_title">Velikost obrázku</string> + <string name="pref_gallery_slideshow_interval_dialogtitle">Interval prezentace</string> + <string name="pref_gallery_slideshow_interval_summary">Vyberte dobu zobrazení každého snímku v prezentaci</string> + <string name="pref_gallery_slideshow_interval_title">Interval prezentace</string> + <string name="pref_gallery_slideshow_repeat_dialogtitle">Opakovat prezentaci?</string> + <string name="pref_gallery_slideshow_repeat_summary">Výběrem přehrajete prezentaci vícekrát</string> + <string name="pref_gallery_slideshow_repeat_title">Opakovat prezentaci</string> + <string name="pref_gallery_slideshow_shuffle_dialogtitle">Náhodné zobrazování obrázků?</string> + <string name="pref_gallery_slideshow_shuffle_summary">Výběrem nastavíte zobrazování obrázků v náhodném pořadí</string> + <string name="pref_gallery_slideshow_shuffle_title">Náhodné zobrazování snímků</string> + <string name="pref_gallery_slideshow_transition_dialogtitle">Přechod prezentace</string> + <string name="pref_gallery_slideshow_transition_summary">Vyberte efekt, který bude použit při přechodu mezi snímky</string> + <string name="pref_gallery_slideshow_transition_title">Přechod prezentace</string> + <string name="pref_gallery_sort_dialogtitle">Řazení obrázků</string> + <string name="pref_gallery_sort_summary">Vyberte pořadí řazení obrázků v albu</string> + <string name="pref_gallery_sort_title">Řazení obrázků</string> + <string name="pref_slideshow_category">Prezentace</string> + <string name="preferences_label">Nastavení fotoaparátu</string> + <string name="preview">Náhled</string> + <string name="record">Zaznamenat</string> + <string name="rotate">Otočit</string> + <string name="rotate_left">Otočit vlevo</string> + <string name="rotate_right">Otočit vpravo</string> + <string name="runningFaceDetection">Počkejte prosím\u2026</string> + <string name="save">Uložit</string> + <string name="savingImage">Ukládání obrázku</string> + <string name="sec1">1 s</string> + <string name="sec2">2 s</string> + <string name="sec3">3 s</string> + <string name="sec4">4 s</string> + <string name="sec5">5 s</string> + <string name="sendImage">Sdílet tento obrázek prostřednictvím</string> + <string name="sendVideo">Sdílet toto video prostřednictvím</string> + <string name="set_wallpaper">Nastavit jako tapetu</string> + <string name="settings">Nastavení</string> + <string name="share_youtube">YouTube</string> + <string name="slide_show">Prezentace</string> + <string name="stop">Zastavit</string> + <string name="testexif">Test Exif</string> + <string name="upload">Odeslat</string> + <string name="upload_all">Odeslat vše</string> + <string name="upload_default_category_text">Zábava</string> + <string name="upload_default_description_text">místo pro popis</string> + <string name="upload_default_tags_text">video</string> + <string name="upload_dialog_title">Odeslat na web YouTube - zadejte podrobnosti o videoklipu</string> + <string name="upload_info_category">Kategorie:</string> + <string name="upload_info_description">Popis:</string> + <string name="upload_info_private">Není-li zaškrtnuto, uvidíte film jen vy</string> + <string name="upload_info_tags">Značky:</string> + <string name="upload_info_title">Název:</string> + <string name="upload_info_upload">Odeslat</string> + <string name="uploadingNPhotos">Odesílání <xliff:g id="counter">%d</xliff:g> obrázků</string> + <string name="uploadingNVideos">Odesílání <xliff:g id="counter">%d</xliff:g> videoklipů</string> + <string name="uploading_photos">Odesílání obrázků</string> + <string name="uploading_photos_2">Odesílání obrázků</string> + <string name="uploading_videos">Odesílání videoklipů</string> + <string name="uploading_videos_2">Odesílání videoklipů</string> + <string name="video_gallery_NoImageView_text">Žádná videa</string> + <string name="video_play">Přehrát</string> + <string name="videos_gallery_title">Videa</string> + <string name="view_label">Zobrazit obrázek</string> + <string name="view_video_label">Zobrazit video</string> + <string name="viewimage_comments_label_text">Komentáře</string> + <string name="viewimage_datetaken_label_text">Datum</string> + <string name="viewimage_digitalzoom_label_text">Digitální zoom</string> + <string name="viewimage_flash_label_text">Použitý blesk</string> + <string name="viewimage_gps_latitude_label_text">Zeměpisná šířka GPS</string> + <string name="viewimage_gps_longitude_label_text">Zeměpisná délka GPS</string> + <string name="viewimage_make_label_text">Vytvořit</string> + <string name="viewimage_model_label_text">Od</string> + <string name="viewimage_orientation_label_text">Orientace</string> + <string name="viewimage_res_label_text">Rozlišení</string> + <string name="viewimage_status_text">přiblížení tlačítkem Enter nebo mezerníkem</string> + <string name="wait">Počkejte prosím\u2026</string> + <string name="wallpaper">Nastavení tapety, počkejte prosím\u2026</string> + <string name="yes">Ano</string> + <string name="youtube_upload_label">Odeslání na web YouTube</string> + <string name="zoom">Lupa</string> +</resources> diff --git a/res/values-de-rDE/strings.xml b/res/values-de-rDE/strings.xml new file mode 100644 index 0000000..2846dea --- /dev/null +++ b/res/values-de-rDE/strings.xml @@ -0,0 +1,229 @@ +<?xml version="1.0" encoding="utf-8"?> +<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="autocrop_before_query">Vorher zuschneiden?</string> + <string name="autocrop_no">Ja</string> + <string name="autocrop_yes">Ja</string> + <string name="best_res">Hoch</string> + <string name="camera_NoStorageView_text">Setzen Sie eine SD-Karte ein, bevor Sie die Kamera verwenden.</string> + <string name="camera_ZoomIn_text">Tele-Aufnahme</string> + <string name="camera_ZoomOut_text">Weitwinkel-Aufnahme</string> + <string name="camera_button_hint">Drücken Sie auf die Aufnahmetaste, um ein Bild aufzunehmen.</string> + <string name="camera_crop">Zuschneiden</string> + <string name="camera_done">Neues Bild</string> + <string name="camera_flash_auto">Autom. Blitz</string> + <string name="camera_flash_off">Blitz AUS</string> + <string name="camera_flash_on">Blitz EIN</string> + <string name="camera_flash_setting">Blitzeinstellung</string> + <string name="camera_gallery_photos_text">Bilder</string> + <string name="camera_gallery_videos_text">Videoalbum</string> + <string name="camera_keep">Speichern</string> + <string name="camera_keeping">Beibehalten\u2026</string> + <string name="camera_label">Kamera</string> + <string name="camera_mode_text">Modus</string> + <string name="camera_movie_record_counter_text">01:30:00</string> + <string name="camera_pick_wallpaper">Bilder</string> + <string name="camera_playvideo">Abspielen</string> + <string name="camera_record_text">Aufnehmen</string> + <string name="camera_selectphoto">Dieses Bild auswählen</string> + <string name="camera_selectvideo">Dieses Video auswählen</string> + <string name="camera_set">Einstellen als</string> + <string name="camera_setas_contact">Kontaktebild </string> + <string name="camera_setas_myfave">myFaves</string> + <string name="camera_setas_wallpaper">Bildschirmhintergrund</string> + <string name="camera_setas_wallpaper_drm">Gekaufte Bilder</string> + <string name="camera_share">Freigeben</string> + <string name="camera_shareby_email">E-Mail</string> + <string name="camera_shareby_mms">MMS</string> + <string name="camera_shareby_picasa">Picasaweb</string> + <string name="camera_shareby_picasa_all">Picasaweb (alle Bilder)</string> + <string name="camera_switch_to_photo">Zu Bild wechseln</string> + <string name="camera_switch_to_video">Zu Video wechseln</string> + <string name="camera_takenewphoto">Neues Bild aufnehmen</string> + <string name="camera_takenewvideo">Neues Video aufnehmen</string> + <string name="camera_toss">Löschen</string> + <string name="camera_tossing">Löschen\u2026</string> + <string name="camera_zoom_1_text">Zoom 1,3x</string> + <string name="camera_zoom_2_text">Zoom 2x</string> + <string name="camera_zoom_3_text">Zoom 4x</string> + <string name="camera_zoom_normal_text">1x</string> + <string name="camerasettings">Einstellungen</string> + <string name="camerasettings_autoupload_label">Bilder automatisch zum Web hochladen</string> + <string name="camerasettings_done">Fertig</string> + <string name="camerasettings_duration_label">Dauer:</string> + <string name="camerasettings_image_quality_label">Bildqualität:</string> + <string name="camerasettings_no">Nein</string> + <string name="camerasettings_off">Aus</string> + <string name="camerasettings_on">Ein</string> + <string name="camerasettings_play_click_sound_label">Auslöserton</string> + <string name="camerasettings_preferred_view_label">Bevorzugte Ansicht:</string> + <string name="camerasettings_resolution_label">Auflösung:</string> + <string name="camerasettings_test2_label">Test2:</string> + <string name="camerasettings_test3_label">Test3:</string> + <string name="camerasettings_test4_label">Test4:</string> + <string name="camerasettings_use_sd_card_label">Bilder auf SD-Karte speichern</string> + <string name="camerasettings_yes">Ja</string> + <string name="cancel">Abbrechen</string> + <string name="confirm_delete">Löschen bestätigen</string> + <string name="confirm_delete_message">Das Bild wird gelöscht.</string> + <string name="confirm_delete_title">Löschen</string> + <string name="context_menu_header">Bildoptionen</string> + <string name="crop_discard_text">Verwerfen</string> + <string name="crop_help">Für Größenänderung ALT drücken.</string> + <string name="crop_label">Bild zuschneiden</string> + <string name="crop_save_text">Speichern</string> + <string name="default_value_pref_gallery_size">1</string> + <string name="default_value_pref_gallery_slideshow_interval">"2"</string> + <string name="default_value_pref_gallery_slideshow_transition">"0"</string> + <string name="default_value_pref_gallery_sort">Absteigend</string> + <string name="delete">Löschen</string> + <string name="deny_delete">Abbrechen"</string> + <string name="details">Details</string> + <string name="details_category_label">Kategorie:</string> + <string name="details_date_taken">Aufnahmedatum:</string> + <string name="details_description_label">Beschreibung:</string> + <string name="details_description_text">Testbeschreibung</string> + <string name="details_file_size">Dateigröße:</string> + <string name="details_image_resolution">Auflösung:</string> + <string name="details_language_label">Sprache:</string> + <string name="details_panel_title">Details</string> + <string name="details_privateView_text">Privat</string> + <string name="details_publicView_text">Öffentlich</string> + <string name="details_save_text">Speichern</string> + <string name="details_tags_label">Tags:</string> + <string name="details_tags_text">Monster</string> + <string name="details_title_label">Titel:</string> + <string name="details_title_text">Eigenes Video</string> + <string name="details_uploaded_text">Erfolgreich hochgeladen</string> + <string name="edit">Bearbeiten</string> + <string name="flip_orientation">Ausrichtung wechseln</string> + <string name="gallery_label">Bilder</string> + <string name="gallery_large">Groß</string> + <string name="gallery_picker_label">Bilder</string> + <string name="gallery_small">Klein</string> + <string name="gallerysettings_duration">Dauer jedes Bildes in Bildschirmpräsentationen</string> + <string name="gallerysettings_speed1">1 Sekunde</string> + <string name="gallerysettings_speed2">3 Sekunden</string> + <string name="gallerysettings_speed3">5 Sekunden</string> + <string name="high">Hoch</string> + <string name="image_count"><xliff:g id="counter">%d</xliff:g> Bilder</string> + <string name="image_gallery_NoImageView_text">Keine Bilder gefunden.</string> + <string name="image_gallery_picker_images">Bilder</string> + <string name="image_gallery_picker_videos">Videos</string> + <string name="loading_progress_format_string"><xliff:g id="counter">%d</xliff:g> verbleiben</string> + <string name="low">Niedrig</string> + <string name="low_res">Niedrig</string> + <string name="med">Mittel</string> + <string name="medium_res">Mittel</string> + <string name="multiface_crop_help">Tippen Sie auf ein Gesicht, um zu beginnen.</string> + <string name="no">Nein</string> + <string name="no_images">Ihr Album ist leer.</string> + <string name="no_storage">Setzen Sie eine SD-Karte ein, bevor Sie die Kamera verwenden.</string> + <string name="no_way_to_share_image">Dieses Bild kann nicht gespeichert werden.</string> + <string name="no_way_to_share_video">Dieses Video kann nicht freigegeben werden.</string> + <string name="not_enough_space">Ihre SD-Karte ist voll.</string> + <string name="ok">OK</string> + <string name="photos_gallery_title">Bilder</string> + <string name="picasa_upload_label">Nach Picasa hochladen</string> + <string name="pick_photos_gallery_title">Bild auswählen</string> + <string name="pick_videos_gallery_title">Video auswählen</string> + <string name="pref_camera_autoupload_summary">Bilder automatisch nach Picasa hochladen</string> + <string name="pref_camera_autoupload_title">Bilder autom. hochladen</string> + <string name="pref_camera_category">Kamera</string> + <string name="pref_camera_postpicturemenu_summary">Aktionenmenü (Speichern, Löschen, ...) nach Aufnahme anzeigen</string> + <string name="pref_camera_postpicturemenu_title">Hinweis nach Aufnahme</string> + <string name="pref_camera_recordlocation_summary">Ort in Bilddaten aufnehmen</string> + <string name="pref_camera_recordlocation_title">Ort in Bildern speichern</string> + <string name="pref_camera_shuttersound_summary">Signalton bei Aufnahme eines Bildes</string> + <string name="pref_camera_shuttersound_title">Auslöserton abspielen</string> + <string name="pref_camera_upload_albumname_dialogtitle">Picasa-Albumname</string> + <string name="pref_camera_upload_albumname_summary">Zielalbum für Bilder benennen (<xliff:g id="summary">%s</xliff:g>)</string> + <string name="pref_camera_upload_albumname_title">Picasa-Albumname</string> + <string name="pref_gallery_category">Allgemeine Einstellungen</string> + <string name="pref_gallery_confirm_delete_summary">Bestätigung vor Löschen von Bildern anzeigen</string> + <string name="pref_gallery_confirm_delete_title">Löschen bestätigen</string> + <string name="pref_gallery_size_dialogtitle">Bildgröße</string> + <string name="pref_gallery_size_summary">Anzeigegröße für Bilder auswählen</string> + <string name="pref_gallery_size_title">Bildgröße</string> + <string name="pref_gallery_slideshow_interval_dialogtitle">Intervall Diaschau</string> + <string name="pref_gallery_slideshow_interval_summary">Bestimmen Sie, wie lange jedes Bild in der Diaschau angezeigt wird</string> + <string name="pref_gallery_slideshow_interval_title">Intervall Diaschau</string> + <string name="pref_gallery_slideshow_repeat_dialogtitle">Diaschau wiederholen?</string> + <string name="pref_gallery_slideshow_repeat_summary">Diaschau mehr als einmal abspielen</string> + <string name="pref_gallery_slideshow_repeat_title">Diaschau wiederholen</string> + <string name="pref_gallery_slideshow_shuffle_dialogtitle">Bilder zufällig wiedergeben?</string> + <string name="pref_gallery_slideshow_shuffle_summary">Bilder in beliebiger Reihenfolge anzeigen</string> + <string name="pref_gallery_slideshow_shuffle_title">Bilder zufällig wiedergeben</string> + <string name="pref_gallery_slideshow_transition_dialogtitle">Diaschauübergang</string> + <string name="pref_gallery_slideshow_transition_summary">Wählen Sie den Effekt aus, der für den Übergang von einem Bild zum nächsten verwendet werden soll</string> + <string name="pref_gallery_slideshow_transition_title">Diaschauübergang</string> + <string name="pref_gallery_sort_dialogtitle">Bilder sortieren</string> + <string name="pref_gallery_sort_summary">Sortiermethode für Bilder auswählen</string> + <string name="pref_gallery_sort_title">Bilder sortieren</string> + <string name="pref_slideshow_category">Einstellungen Diaschau</string> + <string name="preferences_label">Kameraeinstellungen</string> + <string name="preview">Vorschau</string> + <string name="record">Aufnehmen</string> + <string name="rotate">Drehen</string> + <string name="rotate_left">Links drehen</string> + <string name="rotate_right">Rechts drehen</string> + <string name="runningFaceDetection">Bitte warten\u2026</string> + <string name="save">Speichern</string> + <string name="savingImage">Bild speichern\u2026</string> + <string name="sec1">1 Sek.</string> + <string name="sec2">2 Sek.</string> + <string name="sec3">3 Sek.</string> + <string name="sec4">4 Sek.</string> + <string name="sec5">5 Sek.</string> + <string name="sendImage">Bild freigeben über</string> + <string name="sendVideo">Video freigeben über</string> + <string name="setImage">Bild einstellen als</string> + <string name="set_wallpaper">Als Bildschirmhintergrund einstellen</string> + <string name="settings">Einstellungen</string> + <string name="share_youtube">YouTube</string> + <string name="slide_show">Diaschau</string> + <string name="space_remaining_k"><xliff:g id="counter">%d</xliff:g>K</string> + <string name="stop">Anhalten</string> + <string name="testexif">Exif testen</string> + <string name="upload">Hochladen</string> + <string name="upload_all">Alle hochladen</string> + <string name="upload_default_category_text">Unterhaltung</string> + <string name="upload_default_description_text">Beschreibung hier eingeben</string> + <string name="upload_default_tags_text">Video</string> + <string name="upload_dialog_title">Nach YouTube hochladen - Videodetails eingeben</string> + <string name="upload_info_category">Kategorie:</string> + <string name="upload_info_description">Beschreibung:</string> + <string name="upload_info_private">Wenn dies nicht markiert ist, können nur Sie den Film sehen</string> + <string name="upload_info_tags">Tags:</string> + <string name="upload_info_title">Titel:</string> + <string name="upload_info_upload">Hochladen</string> + <string name="uploadingNPhotos"><xliff:g id="counter">%d</xliff:g> Bilder werden hochgeladen</string> + <string name="uploadingNVideos"><xliff:g id="counter">%d</xliff:g> Videos werden hochgeladen</string> + <string name="uploading_photos">Bilder werden hochgeladen</string> + <string name="uploading_photos_2">Bilder werden hochgeladen</string> + <string name="uploading_videos">Videos werden hochgeladen</string> + <string name="uploading_videos_2">Videos werden hochgeladen</string> + <string name="video_gallery_NoImageView_text">Keine Videos gefunden.</string> + <string name="video_play">Abspielen</string> + <string name="videos_gallery_title">Videos</string> + <string name="view">Ansicht</string> + <string name="view_label">Bild anzeigen</string> + <string name="view_video_label">Video anzeigen</string> + <string name="viewimage_comments_label_text">Kommentare</string> + <string name="viewimage_datetaken_label_text">Datum</string> + <string name="viewimage_digitalzoom_label_text">Digitaler Zoom</string> + <string name="viewimage_flash_label_text">Blitz benutzt</string> + <string name="viewimage_gps_latitude_label_text">GPS-Längengrad</string> + <string name="viewimage_gps_longitude_label_text">GPS-Längengrad</string> + <string name="viewimage_make_label_text">Erstellen</string> + <string name="viewimage_model_label_text">Von</string> + <string name="viewimage_orientation_label_text">Ausrichtung</string> + <string name="viewimage_res_label_text">Auflösung</string> + <string name="viewimage_status_text">Zum Zoomen Eingabe oder Leertaste drücken.</string> + <string name="wait">Bitte warten\u2026</string> + <string name="wallpaper">Bildschirmhintergrund wird eingestellt; bitte warten\u2026</string> + <string name="yes">Ja</string> + <string name="youtube_upload_label">Nach YouTube hochladen</string> + <string name="zoom">Zoom</string> +</resources> diff --git a/res/values-es-rUS/strings.xml b/res/values-es-rUS/strings.xml new file mode 100644 index 0000000..d494400 --- /dev/null +++ b/res/values-es-rUS/strings.xml @@ -0,0 +1,229 @@ +<?xml version="1.0" encoding="utf-8"?> +<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="autocrop_before_query">¿Recortar antes?</string> + <string name="autocrop_no">Sí</string> + <string name="autocrop_yes">Sí</string> + <string name="best_res">Alta</string> + <string name="camera_NoStorageView_text">Inserte una tarjeta SD antes de utilizar la cámara.</string> + <string name="camera_ZoomIn_text">Acercar</string> + <string name="camera_ZoomOut_text">Alejar</string> + <string name="camera_button_hint">Pulse el botón Capturar para sacar una foto.</string> + <string name="camera_crop">Recortar</string> + <string name="camera_done">Nueva imagen</string> + <string name="camera_flash_auto">AutoFlash</string> + <string name="camera_flash_off">Flash desactivado</string> + <string name="camera_flash_on">Flash activado</string> + <string name="camera_flash_setting">Configuración del flash</string> + <string name="camera_gallery_photos_text">Imágenes</string> + <string name="camera_gallery_videos_text">Álbum de vídeos</string> + <string name="camera_keep">Guardar</string> + <string name="camera_keeping">Guardando\u2026</string> + <string name="camera_label">Cámara</string> + <string name="camera_mode_text">Modo</string> + <string name="camera_movie_record_counter_text">01:30:00 a.m.</string> + <string name="camera_pick_wallpaper">Imágenes</string> + <string name="camera_playvideo">Reproducir</string> + <string name="camera_record_text">Grabar</string> + <string name="camera_selectphoto">Seleccionar esta imagen</string> + <string name="camera_selectvideo">Seleccionar este vídeo</string> + <string name="camera_set">Establecer como</string> + <string name="camera_setas_contact">Foto del contacto</string> + <string name="camera_setas_myfave">myFaves</string> + <string name="camera_setas_wallpaper">Papel tapiz</string> + <string name="camera_setas_wallpaper_drm">Imágenes adquiridas</string> + <string name="camera_share">Compartir</string> + <string name="camera_shareby_email">Correo electrónico</string> + <string name="camera_shareby_mms">MMS</string> + <string name="camera_shareby_picasa">Picasaweb</string> + <string name="camera_shareby_picasa_all">Picasaweb (todas las imágenes)</string> + <string name="camera_switch_to_photo">Cambiar a imagen</string> + <string name="camera_switch_to_video">Cambiar a vídeo</string> + <string name="camera_takenewphoto">Capturar nueva imagen</string> + <string name="camera_takenewvideo">Capturar nuevo vídeo</string> + <string name="camera_toss">Eliminar</string> + <string name="camera_tossing">Eliminando\u2026</string> + <string name="camera_zoom_1_text">Zoom 1,3x</string> + <string name="camera_zoom_2_text">Zoom 2x</string> + <string name="camera_zoom_3_text">Zoom 4x</string> + <string name="camera_zoom_normal_text">1x</string> + <string name="camerasettings">Configuración</string> + <string name="camerasettings_autoupload_label">Cargar automáticamente imágenes en la Web</string> + <string name="camerasettings_done">Listo</string> + <string name="camerasettings_duration_label">Duración:</string> + <string name="camerasettings_image_quality_label">Calidad de la imagen:</string> + <string name="camerasettings_no">No</string> + <string name="camerasettings_off">Desactivado</string> + <string name="camerasettings_on">Activado</string> + <string name="camerasettings_play_click_sound_label">Sonido del disparador</string> + <string name="camerasettings_preferred_view_label">Vista preferida:</string> + <string name="camerasettings_resolution_label">Resolución:</string> + <string name="camerasettings_test2_label">prueba2:</string> + <string name="camerasettings_test3_label">prueba3:</string> + <string name="camerasettings_test4_label">prueba4:</string> + <string name="camerasettings_use_sd_card_label">Guardar imágenes en tarjeta SD</string> + <string name="camerasettings_yes">Sí</string> + <string name="cancel">Cancelar</string> + <string name="confirm_delete">Confirmar eliminación</string> + <string name="confirm_delete_message">Se eliminará la imagen.</string> + <string name="confirm_delete_title">Eliminar</string> + <string name="context_menu_header">Opciones de imagen</string> + <string name="crop_discard_text">Rechazar</string> + <string name="crop_help">Pulsar ALT para cambiar el tamaño.</string> + <string name="crop_label">Recortar imagen</string> + <string name="crop_save_text">Guardar</string> + <string name="default_value_pref_gallery_size">1</string> + <string name="default_value_pref_gallery_slideshow_interval">"2"</string> + <string name="default_value_pref_gallery_slideshow_transition">"0"</string> + <string name="default_value_pref_gallery_sort">descendente</string> + <string name="delete">Eliminar</string> + <string name="deny_delete">Cancelar"</string> + <string name="details">Detalles</string> + <string name="details_category_label">Categoría:</string> + <string name="details_date_taken">Fecha de captura:</string> + <string name="details_description_label">Descripción:</string> + <string name="details_description_text">descripción de prueba</string> + <string name="details_file_size">Tamaño de archivo:</string> + <string name="details_image_resolution">Resolución:</string> + <string name="details_language_label">Idioma:</string> + <string name="details_panel_title">Detalles</string> + <string name="details_privateView_text">Privado</string> + <string name="details_publicView_text">Público</string> + <string name="details_save_text">Guardar</string> + <string name="details_tags_label">Etiquetas:</string> + <string name="details_tags_text">monstruo</string> + <string name="details_title_label">Título:</string> + <string name="details_title_text">mivídeo</string> + <string name="details_uploaded_text">Cargado correctamente</string> + <string name="edit">Editar</string> + <string name="flip_orientation">Orientación de volteo</string> + <string name="gallery_label">Imágenes</string> + <string name="gallery_large">Grande</string> + <string name="gallery_picker_label">Imágenes</string> + <string name="gallery_small">Pequeño</string> + <string name="gallerysettings_duration">Duración de cada diapositiva en las presentaciones</string> + <string name="gallerysettings_speed1">1 segundo</string> + <string name="gallerysettings_speed2">3 segundos</string> + <string name="gallerysettings_speed3">5 segundos</string> + <string name="high">Alta</string> + <string name="image_count"><xliff:g id="counter">%d</xliff:g> imágenes</string> + <string name="image_gallery_NoImageView_text">Ninguna imagen encontrada.</string> + <string name="image_gallery_picker_images">Imágenes</string> + <string name="image_gallery_picker_videos">Vídeos</string> + <string name="loading_progress_format_string"><xliff:g id="counter">%d</xliff:g> restante(s)</string> + <string name="low">Baja</string> + <string name="low_res">Baja</string> + <string name="med">Medio</string> + <string name="medium_res">Medio</string> + <string name="multiface_crop_help">Puntee en una cara para empezar.</string> + <string name="no">No</string> + <string name="no_images">Su álbum está vacío.</string> + <string name="no_storage">Inserte una tarjeta SD antes de utilizar la cámara.</string> + <string name="no_way_to_share_image">Esta imagen no se puede guardar.</string> + <string name="no_way_to_share_video">Este vídeo no se puede compartir.</string> + <string name="not_enough_space">Su tarjeta SD está llena.</string> + <string name="ok">Aceptar</string> + <string name="photos_gallery_title">Imágenes</string> + <string name="picasa_upload_label">Carga de Picasa</string> + <string name="pick_photos_gallery_title">Seleccionar imagen</string> + <string name="pick_videos_gallery_title">Seleccionar vídeo</string> + <string name="pref_camera_autoupload_summary">Cargar imágenes automáticamente en Picasa</string> + <string name="pref_camera_autoupload_title">Cargar imágenes automáticamente</string> + <string name="pref_camera_category">Cámara</string> + <string name="pref_camera_postpicturemenu_summary">Mostrar el menú de acción (guardar, eliminar, etc.) después de capturar</string> + <string name="pref_camera_postpicturemenu_title">Preguntar después de la captura</string> + <string name="pref_camera_recordlocation_summary">Registrar ubicación en datos de imagen</string> + <string name="pref_camera_recordlocation_title">Guardar ubicación en imágenes</string> + <string name="pref_camera_shuttersound_summary">Reproducir un sonido al hacer una foto</string> + <string name="pref_camera_shuttersound_title">Reproducir sonido del disparador</string> + <string name="pref_camera_upload_albumname_dialogtitle">Nombre de álbum de Picasa</string> + <string name="pref_camera_upload_albumname_summary">Asigne un nombre al álbum de destino de sus imágenes (<xliff:g id="summary">%s</xliff:g>)</string> + <string name="pref_camera_upload_albumname_title">Nombre de álbum de Picasa</string> + <string name="pref_gallery_category">Configuración generales</string> + <string name="pref_gallery_confirm_delete_summary">Mostrar confirmación antes de eliminar imágenes</string> + <string name="pref_gallery_confirm_delete_title">Confirmar eliminaciones</string> + <string name="pref_gallery_size_dialogtitle">Tamaño de imagen</string> + <string name="pref_gallery_size_summary">Seleccione el tamaño de visualización de las imágenes</string> + <string name="pref_gallery_size_title">Tamaño de imagen</string> + <string name="pref_gallery_slideshow_interval_dialogtitle">Intervalo en presentación de diapositivas</string> + <string name="pref_gallery_slideshow_interval_summary">Seleccione el intervalo entre diapositiva y diapositiva en la presentación</string> + <string name="pref_gallery_slideshow_interval_title">Intervalo en presentación de diapositivas</string> + <string name="pref_gallery_slideshow_repeat_dialogtitle">¿Repetir presentación de diapositivas?</string> + <string name="pref_gallery_slideshow_repeat_summary">Reproduzca la presentación de diapositivas más de una vez</string> + <string name="pref_gallery_slideshow_repeat_title">Repetir presentación de diapositivas</string> + <string name="pref_gallery_slideshow_shuffle_dialogtitle">¿Mostrar imágenes aleatoriamente?</string> + <string name="pref_gallery_slideshow_shuffle_summary">Mostrar imágenes en orden aleatorio</string> + <string name="pref_gallery_slideshow_shuffle_title">Mostrar diapositivas aleatoriamente</string> + <string name="pref_gallery_slideshow_transition_dialogtitle">Transición de presentación de diapositivas</string> + <string name="pref_gallery_slideshow_transition_summary">Seleccione el efecto que desea utilizar al pasar de una diapositiva a otra</string> + <string name="pref_gallery_slideshow_transition_title">Transición de presentación de diapositivas</string> + <string name="pref_gallery_sort_dialogtitle">Orden de las imágenes</string> + <string name="pref_gallery_sort_summary">Seleccionar el orden de clasificación de las imágenes</string> + <string name="pref_gallery_sort_title">Orden de las imágenes</string> + <string name="pref_slideshow_category">Configuración de la presentación de diapositivas</string> + <string name="preferences_label">Configuración de la cámara</string> + <string name="preview">Vista previa</string> + <string name="record">Grabar</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="runningFaceDetection">Por favor, espere\u2026</string> + <string name="save">Guardar</string> + <string name="savingImage">Guardando imagen\u2026</string> + <string name="sec1">1 s</string> + <string name="sec2">2 s</string> + <string name="sec3">3 s</string> + <string name="sec4">4 s</string> + <string name="sec5">5 s</string> + <string name="sendImage">Compartir imagen por</string> + <string name="sendVideo">Compartir vídeo por</string> + <string name="setImage">Establecer imagen como</string> + <string name="set_wallpaper">Establecer como papel tapiz</string> + <string name="settings">Configuración</string> + <string name="share_youtube">YouTube</string> + <string name="slide_show">Presentación de diapositivas</string> + <string name="space_remaining_k"><xliff:g id="counter">%d</xliff:g>K</string> + <string name="stop">Detener</string> + <string name="testexif">Prueba de Exif</string> + <string name="upload">Cargar</string> + <string name="upload_all">Cargar todo</string> + <string name="upload_default_category_text">Entretenimiento</string> + <string name="upload_default_description_text">aquí va la descripción</string> + <string name="upload_default_tags_text">vídeo</string> + <string name="upload_dialog_title">Cargar en YouTube - introducir detalles del vídeo</string> + <string name="upload_info_category">Categoría:</string> + <string name="upload_info_description">Descripción:</string> + <string name="upload_info_private">Si esta opción no está activada, sólo podrá ver el vídeo usted</string> + <string name="upload_info_tags">Etiquetas:</string> + <string name="upload_info_title">Título:</string> + <string name="upload_info_upload">Cargar</string> + <string name="uploadingNPhotos">Cargando <xliff:g id="counter">%d</xliff:g> imágenes</string> + <string name="uploadingNVideos">Cargando <xliff:g id="counter">%d</xliff:g> vídeos</string> + <string name="uploading_photos">Cargando imágenes</string> + <string name="uploading_photos_2">Cargando imágenes</string> + <string name="uploading_videos">Cargando vídeos</string> + <string name="uploading_videos_2">Cargando vídeos</string> + <string name="video_gallery_NoImageView_text">No se ha encontrado ningún vídeo.</string> + <string name="video_play">Reproducir</string> + <string name="videos_gallery_title">Vídeos</string> + <string name="view">Ver</string> + <string name="view_label">Ver imagen</string> + <string name="view_video_label">Ver vídeo</string> + <string name="viewimage_comments_label_text">Comentarios</string> + <string name="viewimage_datetaken_label_text">Fecha</string> + <string name="viewimage_digitalzoom_label_text">Zoom digital</string> + <string name="viewimage_flash_label_text">Flash usado</string> + <string name="viewimage_gps_latitude_label_text">Latitud GPS</string> + <string name="viewimage_gps_longitude_label_text">Longitud GPS</string> + <string name="viewimage_make_label_text">Hacer</string> + <string name="viewimage_model_label_text">De</string> + <string name="viewimage_orientation_label_text">Orientación</string> + <string name="viewimage_res_label_text">Resolución</string> + <string name="viewimage_status_text">Pulse Intro o la barra espaciadora para utilizar el zoom.</string> + <string name="wait">Por favor, espere\u2026</string> + <string name="wallpaper">Estableciendo papel tapiz. Por favor, espere\u2026</string> + <string name="yes">Sí</string> + <string name="youtube_upload_label">Carga en YouTube</string> + <string name="zoom">Zoom</string> +</resources> diff --git a/res/values-fr-rFR/strings.xml b/res/values-fr-rFR/strings.xml new file mode 100644 index 0000000..20aa1a7 --- /dev/null +++ b/res/values-fr-rFR/strings.xml @@ -0,0 +1,229 @@ +<?xml version="1.0" encoding="utf-8"?> +<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="autocrop_before_query">Rogner avant ?</string> + <string name="autocrop_no">Oui</string> + <string name="autocrop_yes">Oui</string> + <string name="best_res">Haut</string> + <string name="camera_NoStorageView_text">Veuillez insérer une carte SD avant d\'utiliser l\'appareil photo.</string> + <string name="camera_ZoomIn_text">Zoom avant</string> + <string name="camera_ZoomOut_text">Zoom arrière</string> + <string name="camera_button_hint">Appuyez le bouton Capture pour prendre la photo.</string> + <string name="camera_crop">Rogner</string> + <string name="camera_done">Nouvelle image</string> + <string name="camera_flash_auto">FlashAuto</string> + <string name="camera_flash_off">Flash ACT</string> + <string name="camera_flash_on">Flash DÉS</string> + <string name="camera_flash_setting">Paramètre du flash</string> + <string name="camera_gallery_photos_text">Images</string> + <string name="camera_gallery_videos_text">Album vidéo</string> + <string name="camera_keep">Enregistrer</string> + <string name="camera_keeping">Conserver\u2026</string> + <string name="camera_label">Appareil photo</string> + <string name="camera_mode_text">Mode</string> + <string name="camera_movie_record_counter_text">01:30:00</string> + <string name="camera_pick_wallpaper">Images</string> + <string name="camera_playvideo">Lecture</string> + <string name="camera_record_text">Enregistrer</string> + <string name="camera_selectphoto">Sélectionner cette image</string> + <string name="camera_selectvideo">Sélectionner cette vidéo</string> + <string name="camera_set">Définir comme</string> + <string name="camera_setas_contact">Image de contact</string> + <string name="camera_setas_myfave">myFaves</string> + <string name="camera_setas_wallpaper">Papier peint</string> + <string name="camera_setas_wallpaper_drm">Images achetées</string> + <string name="camera_share">Partager</string> + <string name="camera_shareby_email">Email</string> + <string name="camera_shareby_mms">MMS</string> + <string name="camera_shareby_picasa">Picasaweb</string> + <string name="camera_shareby_picasa_all">Picasaweb (toutes les images)</string> + <string name="camera_switch_to_photo">Passer en image</string> + <string name="camera_switch_to_video">Passer en vidéo</string> + <string name="camera_takenewphoto">Capture nouvelle image</string> + <string name="camera_takenewvideo">Capture nouvelle vidéo</string> + <string name="camera_toss">Supprimer</string> + <string name="camera_tossing">Suppression\u2026</string> + <string name="camera_zoom_1_text">Zoom x1,3</string> + <string name="camera_zoom_2_text">Zoom x2</string> + <string name="camera_zoom_3_text">Zoom x4</string> + <string name="camera_zoom_normal_text">x1</string> + <string name="camerasettings">Paramètres</string> + <string name="camerasettings_autoupload_label">Transférer automatiquement les images vers le Web</string> + <string name="camerasettings_done">Terminé</string> + <string name="camerasettings_duration_label">Durée :</string> + <string name="camerasettings_image_quality_label">Qualité d\'image :</string> + <string name="camerasettings_no">Non</string> + <string name="camerasettings_off">Désactivé</string> + <string name="camerasettings_on">Activé</string> + <string name="camerasettings_play_click_sound_label">Son du déclencheur</string> + <string name="camerasettings_preferred_view_label">Vue préférée :</string> + <string name="camerasettings_resolution_label">Résolution :</string> + <string name="camerasettings_test2_label">test2 :</string> + <string name="camerasettings_test3_label">test3 :</string> + <string name="camerasettings_test4_label">test4 :</string> + <string name="camerasettings_use_sd_card_label">Enregistrer les images sur la carte SD</string> + <string name="camerasettings_yes">Oui</string> + <string name="cancel">Annuler</string> + <string name="confirm_delete">Confirmer la suppression</string> + <string name="confirm_delete_message">L\'image sera supprimée.</string> + <string name="confirm_delete_title">Supprimer</string> + <string name="context_menu_header">Options d\'image</string> + <string name="crop_discard_text">Abandonner</string> + <string name="crop_help">Maintenez ALT pour redimensionner.</string> + <string name="crop_label">Rogner l\'image</string> + <string name="crop_save_text">Enregistrer</string> + <string name="default_value_pref_gallery_size">1</string> + <string name="default_value_pref_gallery_slideshow_interval">"2"</string> + <string name="default_value_pref_gallery_slideshow_transition">"0"</string> + <string name="default_value_pref_gallery_sort">décroissant</string> + <string name="delete">Supprimer</string> + <string name="deny_delete">Annuler"</string> + <string name="details">Détails</string> + <string name="details_category_label">Catégorie :</string> + <string name="details_date_taken">Date de prise :</string> + <string name="details_description_label">Description :</string> + <string name="details_description_text">descriptiontest</string> + <string name="details_file_size">Taille du fichier :</string> + <string name="details_image_resolution">Résolution :</string> + <string name="details_language_label">Langue :</string> + <string name="details_panel_title">Détails</string> + <string name="details_privateView_text">Privé</string> + <string name="details_publicView_text">Publique</string> + <string name="details_save_text">Enregistrer</string> + <string name="details_tags_label">Tags :</string> + <string name="details_tags_text">monstre</string> + <string name="details_title_label">Titre :</string> + <string name="details_title_text">mavidéo</string> + <string name="details_uploaded_text">Transfert réussi</string> + <string name="edit">Modifier</string> + <string name="flip_orientation">Retourner l\'orientation</string> + <string name="gallery_label">Images</string> + <string name="gallery_large">Grande</string> + <string name="gallery_picker_label">Images</string> + <string name="gallery_small">Petit</string> + <string name="gallerysettings_duration">Durée de chaque diapo dans les diaporamas</string> + <string name="gallerysettings_speed1">1 seconde</string> + <string name="gallerysettings_speed2">3 secondes</string> + <string name="gallerysettings_speed3">5 secondes</string> + <string name="high">Haut</string> + <string name="image_count"><xliff:g id="counter">%d</xliff:g> images</string> + <string name="image_gallery_NoImageView_text">Aucune image trouvée.</string> + <string name="image_gallery_picker_images">Images</string> + <string name="image_gallery_picker_videos">Vidéos</string> + <string name="loading_progress_format_string"><xliff:g id="counter">%d</xliff:g> restant</string> + <string name="low">Bas</string> + <string name="low_res">Bas</string> + <string name="med">Moyen</string> + <string name="medium_res">Moyen</string> + <string name="multiface_crop_help">Appuyez un visage pour commencer.</string> + <string name="no">Non</string> + <string name="no_images">Votre album est vide.</string> + <string name="no_storage">Veuillez insérer une carte SD avant d\'utiliser l\'appareil photo.</string> + <string name="no_way_to_share_image">Cette image ne peut pas être enregistrée.</string> + <string name="no_way_to_share_video">Cette vidéo ne peut pas être partagée.</string> + <string name="not_enough_space">Votre carte SD est pleine.</string> + <string name="ok">OK</string> + <string name="photos_gallery_title">Images</string> + <string name="picasa_upload_label">Transfert Picasa</string> + <string name="pick_photos_gallery_title">Sélectionner une image</string> + <string name="pick_videos_gallery_title">Sélectionner une vidéo</string> + <string name="pref_camera_autoupload_summary">Transférer les images à Picasa automatiquement</string> + <string name="pref_camera_autoupload_title">Transfert auto des images</string> + <string name="pref_camera_category">Appareil photo</string> + <string name="pref_camera_postpicturemenu_summary">Afficher le menu action (enregistrer, supprimer, ...) après la capture</string> + <string name="pref_camera_postpicturemenu_title">Inviter après la capture</string> + <string name="pref_camera_recordlocation_summary">Enregistrer le lieu dans les données d\'image</string> + <string name="pref_camera_recordlocation_title">Stocker le lieu dans les images</string> + <string name="pref_camera_shuttersound_summary">Émettre un son à la prise d\'une photo</string> + <string name="pref_camera_shuttersound_title">Émettre le son du déclencheur</string> + <string name="pref_camera_upload_albumname_dialogtitle">Nom d\'album Picasa</string> + <string name="pref_camera_upload_albumname_summary">Nommez l\'album de destination pour vos images (<xliff:g id="summary">%s</xliff:g>)</string> + <string name="pref_camera_upload_albumname_title">Nom d\'album Picasa</string> + <string name="pref_gallery_category">Paramètres généraux</string> + <string name="pref_gallery_confirm_delete_summary">Afficher la confirmation avant de supprimer les images</string> + <string name="pref_gallery_confirm_delete_title">Confirmer les suppressions</string> + <string name="pref_gallery_size_dialogtitle">Taille d\'image</string> + <string name="pref_gallery_size_summary">Sélectionnez la taille d\'affichage des images</string> + <string name="pref_gallery_size_title">Taille d\'image</string> + <string name="pref_gallery_slideshow_interval_dialogtitle">Intervalle du diaporama</string> + <string name="pref_gallery_slideshow_interval_summary">Sélectionnez la durée d\'affichage de chaque diapo dans le diaporama</string> + <string name="pref_gallery_slideshow_interval_title">Intervalle du diaporama</string> + <string name="pref_gallery_slideshow_repeat_dialogtitle">Répéter le diaporama ?</string> + <string name="pref_gallery_slideshow_repeat_summary">Lire le diaporama plus d\'une fois</string> + <string name="pref_gallery_slideshow_repeat_title">Répéter le diaporama</string> + <string name="pref_gallery_slideshow_shuffle_dialogtitle">Mélanger les images ?</string> + <string name="pref_gallery_slideshow_shuffle_summary">Afficher les images en ordre aléatoire</string> + <string name="pref_gallery_slideshow_shuffle_title">Mélanger les diapos</string> + <string name="pref_gallery_slideshow_transition_dialogtitle">Transition du diaporama</string> + <string name="pref_gallery_slideshow_transition_summary">Sélectionner l\'effet utilisé lors du passage d\'une diapo à la suivante</string> + <string name="pref_gallery_slideshow_transition_title">Transition du diaporama</string> + <string name="pref_gallery_sort_dialogtitle">Tri des images</string> + <string name="pref_gallery_sort_summary">Sélectionnez l\'ordre de tri des images</string> + <string name="pref_gallery_sort_title">Tri des images</string> + <string name="pref_slideshow_category">Paramètres du diaporama</string> + <string name="preferences_label">Paramètres de l\'appareil photo</string> + <string name="preview">Aperçu</string> + <string name="record">Enregistrer</string> + <string name="rotate">Faire pivoter</string> + <string name="rotate_left">Pivoter à gauche</string> + <string name="rotate_right">Pivoter à droite</string> + <string name="runningFaceDetection">Veuillez attendre\u2026</string> + <string name="save">Enregistrer</string> + <string name="savingImage">Enregistrement de l\'image\u2026</string> + <string name="sec1">1 s</string> + <string name="sec2">2 s</string> + <string name="sec3">3 s</string> + <string name="sec4">4 s</string> + <string name="sec5">5 s</string> + <string name="sendImage">Partager l\'image via</string> + <string name="sendVideo">Partager la vidéo via</string> + <string name="setImage">Définir l\'image comme</string> + <string name="set_wallpaper">Définir comme papier peint</string> + <string name="settings">Paramètres</string> + <string name="share_youtube">YouTube</string> + <string name="slide_show">Diaporama</string> + <string name="space_remaining_k"><xliff:g id="counter">%d</xliff:g>K</string> + <string name="stop">Arrêter</string> + <string name="testexif">Test Exif</string> + <string name="upload">Transférer</string> + <string name="upload_all">Transférer tout</string> + <string name="upload_default_category_text">Divertissement</string> + <string name="upload_default_description_text">la description ici</string> + <string name="upload_default_tags_text">vidéo</string> + <string name="upload_dialog_title">Transférer à YouTube - saisissez les détails de la vidéo</string> + <string name="upload_info_category">Catégorie :</string> + <string name="upload_info_description">Description :</string> + <string name="upload_info_private">Si désélectionné, seul vous pouvez voir le film</string> + <string name="upload_info_tags">Tags :</string> + <string name="upload_info_title">Titre :</string> + <string name="upload_info_upload">Transférer</string> + <string name="uploadingNPhotos">Transfert de <xliff:g id="counter">%d</xliff:g> images</string> + <string name="uploadingNVideos">Transfert de <xliff:g id="counter">%d</xliff:g> vidéos</string> + <string name="uploading_photos">Transfert des images</string> + <string name="uploading_photos_2">Transfert des images</string> + <string name="uploading_videos">Transfert des vidéos</string> + <string name="uploading_videos_2">Transfert des vidéos</string> + <string name="video_gallery_NoImageView_text">Aucune vidéo trouvée.</string> + <string name="video_play">Lecture</string> + <string name="videos_gallery_title">Vidéos</string> + <string name="view">Afficher</string> + <string name="view_label">Afficher l\'image</string> + <string name="view_video_label">Afficher la vidéo</string> + <string name="viewimage_comments_label_text">Commentaires</string> + <string name="viewimage_datetaken_label_text">Date</string> + <string name="viewimage_digitalzoom_label_text">Zoom numérique</string> + <string name="viewimage_flash_label_text">Flash utilisé</string> + <string name="viewimage_gps_latitude_label_text">Latitude GPS</string> + <string name="viewimage_gps_longitude_label_text">Longitude GPS</string> + <string name="viewimage_make_label_text">Faire</string> + <string name="viewimage_model_label_text">De</string> + <string name="viewimage_orientation_label_text">Orientation</string> + <string name="viewimage_res_label_text">Résolution</string> + <string name="viewimage_status_text">Appuyez Entrée ou Espace pour le zoom.</string> + <string name="wait">Veuillez attendre\u2026</string> + <string name="wallpaper">Définition du papier peint, veuillez patienter\u2026</string> + <string name="yes">Oui</string> + <string name="youtube_upload_label">Transfert YouTube</string> + <string name="zoom">Zoom</string> +</resources> diff --git a/res/values-it-rIT/strings.xml b/res/values-it-rIT/strings.xml new file mode 100644 index 0000000..f82048c --- /dev/null +++ b/res/values-it-rIT/strings.xml @@ -0,0 +1,229 @@ +<?xml version="1.0" encoding="utf-8"?> +<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 immagini</string> + <string name="autocrop_before_query">Ritagliare prima?</string> + <string name="autocrop_no">Sì</string> + <string name="autocrop_yes">Sì</string> + <string name="best_res">Alta</string> + <string name="camera_NoStorageView_text">Inserire una scheda SD prima di utilizzare la fotocamera.</string> + <string name="camera_ZoomIn_text">Zoom avanti</string> + <string name="camera_ZoomOut_text">Zoom indietro</string> + <string name="camera_button_hint">Premere il pulsante Acquisisci per acquisire l'immagine.</string> + <string name="camera_crop">Ritaglia</string> + <string name="camera_done">Nuova immagine</string> + <string name="camera_flash_auto">AutoFlash</string> + <string name="camera_flash_off">Flash OFF</string> + <string name="camera_flash_on">Flash ON</string> + <string name="camera_flash_setting">Impostazione Flash</string> + <string name="camera_gallery_photos_text">Immagini</string> + <string name="camera_gallery_videos_text">Album video</string> + <string name="camera_keep">Salva</string> + <string name="camera_keeping">Mantenimento\u2026</string> + <string name="camera_label">Fotocamera</string> + <string name="camera_mode_text">Modalità</string> + <string name="camera_movie_record_counter_text">01:30:00</string> + <string name="camera_pick_wallpaper">Immagini</string> + <string name="camera_playvideo">Riproduci</string> + <string name="camera_record_text">Registra</string> + <string name="camera_selectphoto">Selezionare questa immagine</string> + <string name="camera_selectvideo">Selezionare questo video</string> + <string name="camera_set">Imposta come</string> + <string name="camera_setas_contact">Immagine contatto</string> + <string name="camera_setas_myfave">myFaves</string> + <string name="camera_setas_wallpaper">Sfondo</string> + <string name="camera_setas_wallpaper_drm">Immagini acquistate</string> + <string name="camera_share">Condividi</string> + <string name="camera_shareby_email">Email</string> + <string name="camera_shareby_mms">MMS</string> + <string name="camera_shareby_picasa">Picasaweb</string> + <string name="camera_shareby_picasa_all">Picasaweb (tutte le immagini)</string> + <string name="camera_switch_to_photo">Passa a immagine</string> + <string name="camera_switch_to_video">Passa a video</string> + <string name="camera_takenewphoto">Acquisisci nuova immagine</string> + <string name="camera_takenewvideo">Acquisisci nuovo video</string> + <string name="camera_toss">Elimina</string> + <string name="camera_tossing">Eliminazione in corso\u2026</string> + <string name="camera_zoom_1_text">Zoom 1,3x</string> + <string name="camera_zoom_2_text">Zoom 2x</string> + <string name="camera_zoom_3_text">Zoom 4x</string> + <string name="camera_zoom_normal_text">1x</string> + <string name="camerasettings">Impostazioni</string> + <string name="camerasettings_autoupload_label">Carica automaticamente immagini sul Web</string> + <string name="camerasettings_done">Completato</string> + <string name="camerasettings_duration_label">Durata:</string> + <string name="camerasettings_image_quality_label">Qualità immagine:</string> + <string name="camerasettings_no">No</string> + <string name="camerasettings_off">Disattivato</string> + <string name="camerasettings_on">Attivato</string> + <string name="camerasettings_play_click_sound_label">Suono otturatore</string> + <string name="camerasettings_preferred_view_label">Visualizzazione preferita:</string> + <string name="camerasettings_resolution_label">Risoluzione:</string> + <string name="camerasettings_test2_label">test2:</string> + <string name="camerasettings_test3_label">test3:</string> + <string name="camerasettings_test4_label">test4:</string> + <string name="camerasettings_use_sd_card_label">Salva immagine nella scheda SD</string> + <string name="camerasettings_yes">Sì</string> + <string name="cancel">Annulla</string> + <string name="confirm_delete">Conferma eliminazione</string> + <string name="confirm_delete_message">L'immagine verrà eliminata.</string> + <string name="confirm_delete_title">Elimina</string> + <string name="context_menu_header">Opzioni immagine</string> + <string name="crop_discard_text">Ignora</string> + <string name="crop_help">Tenere premuto ALT per ridimensionare.</string> + <string name="crop_label">Ritaglia immagine</string> + <string name="crop_save_text">Salva</string> + <string name="default_value_pref_gallery_size">1</string> + <string name="default_value_pref_gallery_slideshow_interval">"2"</string> + <string name="default_value_pref_gallery_slideshow_transition">"0"</string> + <string name="default_value_pref_gallery_sort">decrescente</string> + <string name="delete">Elimina</string> + <string name="deny_delete">Annulla"</string> + <string name="details">Dettagli</string> + <string name="details_category_label">Categoria:</string> + <string name="details_date_taken">Data scatto:</string> + <string name="details_description_label">Descrizione:</string> + <string name="details_description_text">descrizionetest</string> + <string name="details_file_size">Dimensione file:</string> + <string name="details_image_resolution">Risoluzione:</string> + <string name="details_language_label">Lingua:</string> + <string name="details_panel_title">Dettagli</string> + <string name="details_privateView_text">Privato</string> + <string name="details_publicView_text">Pubblico</string> + <string name="details_save_text">Salva</string> + <string name="details_tags_label">Tag:</string> + <string name="details_tags_text">monster</string> + <string name="details_title_label">Titolo:</string> + <string name="details_title_text">myvideo</string> + <string name="details_uploaded_text">Caricamento completato</string> + <string name="edit">Modifica</string> + <string name="flip_orientation">Capovolgi orientamento</string> + <string name="gallery_label">Immagini</string> + <string name="gallery_large">Grande</string> + <string name="gallery_picker_label">Immagini</string> + <string name="gallery_small">Piccolo</string> + <string name="gallerysettings_duration">Durata di ogni diapositiva nelle presentazioni</string> + <string name="gallerysettings_speed1">1 secondo</string> + <string name="gallerysettings_speed2">3 secondi</string> + <string name="gallerysettings_speed3">5 secondi</string> + <string name="high">Alta</string> + <string name="image_count"><xliff:g id="counter">%d</xliff:g> immagini</string> + <string name="image_gallery_NoImageView_text">Nessuna immagine trovata.</string> + <string name="image_gallery_picker_images">Immagini</string> + <string name="image_gallery_picker_videos">Video</string> + <string name="loading_progress_format_string"><xliff:g id="counter">%d</xliff:g> rimanente</string> + <string name="low">Bassa</string> + <string name="low_res">Bassa</string> + <string name="med">Supporto</string> + <string name="medium_res">Supporto</string> + <string name="multiface_crop_help">Toccare una faccia per iniziare.</string> + <string name="no">No</string> + <string name="no_images">L'album è vuoto.</string> + <string name="no_storage">Inserire una scheda SD prima di utilizzare la fotocamera.</string> + <string name="no_way_to_share_image">Impossibile salvare questa immagine.</string> + <string name="no_way_to_share_video">Impossibile condividere questo video.</string> + <string name="not_enough_space">La scheda SD è piena.</string> + <string name="ok">OK</string> + <string name="photos_gallery_title">Immagini</string> + <string name="picasa_upload_label">Caricamento Picasa</string> + <string name="pick_photos_gallery_title">Seleziona immagine</string> + <string name="pick_videos_gallery_title">Seleziona video</string> + <string name="pref_camera_autoupload_summary">Carica automaticamente le immagini in Picasa</string> + <string name="pref_camera_autoupload_title">Carica immagini automaticamente</string> + <string name="pref_camera_category">Fotocamera</string> + <string name="pref_camera_postpicturemenu_summary">Visualizza il menu Azione (salva. elimina ecc...) dopo l'acquisizione</string> + <string name="pref_camera_postpicturemenu_title">Prompt dopo acquisizione</string> + <string name="pref_camera_recordlocation_summary">Registra ubicazione nei dati immagine</string> + <string name="pref_camera_recordlocation_title">Memorizza posizione nelle immagini</string> + <string name="pref_camera_shuttersound_summary">Riproduci un suono durante l'acquisizione di un'immagine</string> + <string name="pref_camera_shuttersound_title">Riproduci suono otturatore</string> + <string name="pref_camera_upload_albumname_dialogtitle">Nome album Picasa</string> + <string name="pref_camera_upload_albumname_summary">Assegnare un nome all'album di destinazione delle immagini (<xliff:g id="summary">%s</xliff:g>)</string> + <string name="pref_camera_upload_albumname_title">Nome album Picasa</string> + <string name="pref_gallery_category">Impostazioni generali</string> + <string name="pref_gallery_confirm_delete_summary">Mostra conferma prima di eliminare le immagini</string> + <string name="pref_gallery_confirm_delete_title">Conferma eliminazioni</string> + <string name="pref_gallery_size_dialogtitle">Dimensione immagine</string> + <string name="pref_gallery_size_summary">Selezionare la dimensione di visualizzazione delle immagini</string> + <string name="pref_gallery_size_title">Dimensione immagine</string> + <string name="pref_gallery_slideshow_interval_dialogtitle">Intervallo presentazione</string> + <string name="pref_gallery_slideshow_interval_summary">Selezionare la durata di visualizzazione di ogni diapositiva nella presentazione</string> + <string name="pref_gallery_slideshow_interval_title">Intervallo presentazione</string> + <string name="pref_gallery_slideshow_repeat_dialogtitle">Ripetere la presentazione?</string> + <string name="pref_gallery_slideshow_repeat_summary">Riproduci presentazione più volte</string> + <string name="pref_gallery_slideshow_repeat_title">Ripeti presentazione</string> + <string name="pref_gallery_slideshow_shuffle_dialogtitle">Riprodurre le immagini casualmente?</string> + <string name="pref_gallery_slideshow_shuffle_summary">Mostra le immagini in ordine casuale</string> + <string name="pref_gallery_slideshow_shuffle_title">Riproduzione casuale diapositive</string> + <string name="pref_gallery_slideshow_transition_dialogtitle">Transizione presentazione</string> + <string name="pref_gallery_slideshow_transition_summary">Scegliere l'effetto che si desidera utilizzare durante lo spostamento da una diapositiva all'altra</string> + <string name="pref_gallery_slideshow_transition_title">Transizione presentazione</string> + <string name="pref_gallery_sort_dialogtitle">Ordinamento immagini</string> + <string name="pref_gallery_sort_summary">Selezionare l'ordinamento delle immagini</string> + <string name="pref_gallery_sort_title">Ordinamento immagini</string> + <string name="pref_slideshow_category">Impostazioni presentazione</string> + <string name="preferences_label">Impostazioni fotocamera</string> + <string name="preview">Anteprima</string> + <string name="record">Registra</string> + <string name="rotate">Ruota</string> + <string name="rotate_left">Ruota a sinistra</string> + <string name="rotate_right">Ruota a destra</string> + <string name="runningFaceDetection">Attendere\u2026</string> + <string name="save">Salva</string> + <string name="savingImage">Salvataggio immagine\u2026</string> + <string name="sec1">1 sec</string> + <string name="sec2">2 sec</string> + <string name="sec3">3 sec</string> + <string name="sec4">4 sec</string> + <string name="sec5">5 sec</string> + <string name="sendImage">Condividi immagine via</string> + <string name="sendVideo">Condividi video via</string> + <string name="setImage">Imposta immagine come</string> + <string name="set_wallpaper">Imposta come sfondo</string> + <string name="settings">Impostazioni</string> + <string name="share_youtube">YouTube</string> + <string name="slide_show">Presentazione</string> + <string name="space_remaining_k"><xliff:g id="counter">%d</xliff:g>K</string> + <string name="stop">Interrompi</string> + <string name="testexif">Test Exif</string> + <string name="upload">Carica</string> + <string name="upload_all">Carica tutto</string> + <string name="upload_default_category_text">Intrattenimento</string> + <string name="upload_default_description_text">campo per la descrizione</string> + <string name="upload_default_tags_text">video</string> + <string name="upload_dialog_title">Carica su YouTube - digitare i dettagli video</string> + <string name="upload_info_category">Categoria:</string> + <string name="upload_info_description">Descrizione:</string> + <string name="upload_info_private">Se deselezionata, è possibile visualizzare solo il filmato</string> + <string name="upload_info_tags">Tag:</string> + <string name="upload_info_title">Titolo:</string> + <string name="upload_info_upload">Carica</string> + <string name="uploadingNPhotos">Caricamento di <xliff:g id="counter">%d</xliff:g> immagini</string> + <string name="uploadingNVideos">Caricamento di <xliff:g id="counter">%d</xliff:g> video</string> + <string name="uploading_photos">Caricamento immagini in corso</string> + <string name="uploading_photos_2">Caricamento immagini in corso</string> + <string name="uploading_videos">Caricamento video in corso</string> + <string name="uploading_videos_2">Caricamento video in corso</string> + <string name="video_gallery_NoImageView_text">Nessun video trovato.</string> + <string name="video_play">Riproduci</string> + <string name="videos_gallery_title">Video</string> + <string name="view">Visualizza</string> + <string name="view_label">Visualizza immagine</string> + <string name="view_video_label">Visualizza video</string> + <string name="viewimage_comments_label_text">Commenti</string> + <string name="viewimage_datetaken_label_text">Data</string> + <string name="viewimage_digitalzoom_label_text">Zoom digitale</string> + <string name="viewimage_flash_label_text">Flash utilizzato</string> + <string name="viewimage_gps_latitude_label_text">Latitudine GPS</string> + <string name="viewimage_gps_longitude_label_text">Longitudine GPS</string> + <string name="viewimage_make_label_text">Crea</string> + <string name="viewimage_model_label_text">Da</string> + <string name="viewimage_orientation_label_text">Orientamento</string> + <string name="viewimage_res_label_text">Risoluzione</string> + <string name="viewimage_status_text">Premere Invio o Barra spaziatrice per eseguire lo zoom.</string> + <string name="wait">Attendere\u2026</string> + <string name="wallpaper">Impostazione dello sfondo in corso. Attendere\u2026</string> + <string name="yes">Sì</string> + <string name="youtube_upload_label">Caricamento YouTube</string> + <string name="zoom">Zoom</string> +</resources> diff --git a/res/values-nl-rNL/strings.xml b/res/values-nl-rNL/strings.xml new file mode 100644 index 0000000..c2e7ce1 --- /dev/null +++ b/res/values-nl-rNL/strings.xml @@ -0,0 +1,206 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="autocrop_before_query">Vooraf automatisch inkorten?</string> + <string name="autocrop_no">Ja</string> + <string name="autocrop_yes">Ja</string> + <string name="best_res">Hoog</string> + <string name="camera_NoStorageView_text">Plaats een sd-kaart voordat u de camera gebruikt</string> + <string name="camera_ZoomIn_text">Inzoomen</string> + <string name="camera_ZoomOut_text">Uitzoomen</string> + <string name="camera_button_hint">Druk op de Vastlegtoets om een foto te maken</string> + <string name="camera_crop">Automatisch inkorten</string> + <string name="camera_done">Nieuwe foto</string> + <string name="camera_flash_auto">AutoFlits</string> + <string name="camera_flash_off">Flits UIT</string> + <string name="camera_flash_on">Flits AAN</string> + <string name="camera_flash_setting">Flitsinstelling</string> + <string name="camera_gallery_photos_text">Afbeeldingen</string> + <string name="camera_gallery_videos_text">Video's</string> + <string name="camera_keeping">Aanhoudend\u2026</string> + <string name="camera_label">Camera</string> + <string name="camera_mode_text">Modus</string> + <string name="camera_movie_record_counter_text">01:30:00</string> + <string name="camera_playvideo">Afspelen</string> + <string name="camera_record_text">Opname</string> + <string name="camera_selectphoto">Dit beeld selecteren</string> + <string name="camera_selectvideo">Deze video selecteren</string> + <string name="camera_set">Instellen als\u2026</string> + <string name="camera_setas_contact">Afbeelding contactpersoon </string> + <string name="camera_setas_myfave">myFaves</string> + <string name="camera_setas_wallpaper">Achtergrond</string> + <string name="camera_share">Delen</string> + <string name="camera_shareby_email">E-mail</string> + <string name="camera_shareby_mms">MMS</string> + <string name="camera_shareby_picasa">Picasaweb</string> + <string name="camera_shareby_picasa_all">Picasaweb (alle foto's)</string> + <string name="camera_switch_to_photo">Schakelen naar foto</string> + <string name="camera_switch_to_video">Schakelen naar video</string> + <string name="camera_takenewphoto">Nieuwe afbeelding maken</string> + <string name="camera_takenewvideo">Nieuwe video maken</string> + <string name="camera_toss">Verwijderen</string> + <string name="camera_tossing">Bezig met verwijderen\u2026</string> + <string name="camera_zoom_1_text">Zoom 1.3x</string> + <string name="camera_zoom_2_text">Zoom 2x</string> + <string name="camera_zoom_3_text">Zoom 4x</string> + <string name="camera_zoom_normal_text">1x</string> + <string name="camerasettings">Instellingen</string> + <string name="camerasettings_autoupload_label">Afbeeldingen automatisch uploaden</string> + <string name="camerasettings_done">Gereed</string> + <string name="camerasettings_duration_label">Duur:</string> + <string name="camerasettings_image_quality_label">Beeldkwaliteit:</string> + <string name="camerasettings_no">Nee</string> + <string name="camerasettings_off">Uit</string> + <string name="camerasettings_on">Aan</string> + <string name="camerasettings_play_click_sound_label">Sluitergeluid</string> + <string name="camerasettings_preferred_view_label">Voorkeursweergave:</string> + <string name="camerasettings_resolution_label">Resolutie:</string> + <string name="camerasettings_test2_label">test2:</string> + <string name="camerasettings_test3_label">test3:</string> + <string name="camerasettings_test4_label">test4:</string> + <string name="camerasettings_use_sd_card_label">Afbeeldingen opslaan op sd-kaart</string> + <string name="camerasettings_yes">Ja</string> + <string name="cancel">Annuleren</string> + <string name="context_menu_header">Beeldopties</string> + <string name="crop_discard_text">Wissen</string> + <string name="crop_help">ALT ingedrukt houden om grootte te wijzigen</string> + <string name="crop_label">Afbeelding inkorten</string> + <string name="crop_save_text">Opslaan</string> + <string name="delete">Verwijderen</string> + <string name="details">Details</string> + <string name="details_category_label">Categorie:</string> + <string name="details_date_taken">Genomen op:</string> + <string name="details_description_label">Beschrijving:</string> + <string name="details_description_text">testbeschrijving</string> + <string name="details_file_size">Bestandsgrootte:</string> + <string name="details_image_resolution">Resolutie:</string> + <string name="details_language_label">Taal:</string> + <string name="details_panel_title">Details</string> + <string name="details_privateView_text">Privé</string> + <string name="details_publicView_text">Openbaar</string> + <string name="details_save_text">Opslaan</string> + <string name="details_tags_label">Labels:</string> + <string name="details_tags_text">monster</string> + <string name="details_title_label">Titel:</string> + <string name="details_title_text">mijnvideo</string> + <string name="details_uploaded_text">Uploaden gelukt</string> + <string name="edit">Bewerken</string> + <string name="error_label">Fout</string> + <string name="gallery_label">Foto's en video's</string> + <string name="gallery_large">Groot</string> + <string name="gallery_picker_label">Albums</string> + <string name="gallery_small">Klein</string> + <string name="gallerysettings_duration">Tijdsduur van elke dia in diashows</string> + <string name="gallerysettings_speed1">1 seconde</string> + <string name="gallerysettings_speed2">3 seconden</string> + <string name="gallerysettings_speed3">5 seconden</string> + <string name="high">Hoog</string> + <string name="image_gallery_NoImageView_text">Geen afbeeldingen</string> + <string name="image_gallery_picker_images">Afbeeldingen</string> + <string name="image_gallery_picker_videos">Video's</string> + <string name="low">Laag</string> + <string name="low_res">Laag</string> + <string name="med">Normaal</string> + <string name="medium_res">Normaal</string> + <string name="multiface_crop_help">Gezicht kiezen om te starten</string> + <string name="no">Nee</string> + <string name="no_images">Het album is leeg</string> + <string name="no_storage">Plaats een sd-kaart voordat u de camera gebruikt</string> + <string name="no_way_to_share_image">De afbeelding kan niet worden opgeslagen</string> + <string name="no_way_to_share_video">Deze video kan niet worden gedeeld</string> + <string name="not_enough_space">Deze geheugenkaart is vol</string> + <string name="ok">OK</string> + <string name="photos_gallery_title">Afbeeldingen</string> + <string name="picasa_upload_label">Uploaden naar Picasa</string> + <string name="pick_photos_gallery_title">Afbeelding selecteren</string> + <string name="pick_videos_gallery_title">Video selecteren</string> + <string name="pref_camera_autoupload_summary">Selecteren om afbeeldingen automatisch naar Picasa te uploaden</string> + <string name="pref_camera_autoupload_title">Afbeeldingen automatisch uploaden</string> + <string name="pref_camera_category">Camera</string> + <string name="pref_camera_recordlocation_summary">Selecteren om de locatie automatisch op te nemen bij foto's</string> + <string name="pref_camera_recordlocation_title">Locatie in afbeeldingen opnemen</string> + <string name="pref_camera_upload_albumname_dialogtitle">Picasa albumnaam</string> + <string name="pref_camera_upload_albumname_summary">Geef een naam aan het bestemmingsalbum voor afbeeldingen</string> + <string name="pref_camera_upload_albumname_title">Picasa albumnaam</string> + <string name="pref_gallery_category">Fotoalbumweergave</string> + <string name="pref_gallery_size_dialogtitle">Afbeeldinggrootte</string> + <string name="pref_gallery_size_summary">Selecteer de grootte van afbeeldingen in albums</string> + <string name="pref_gallery_size_title">Afbeeldinggrootte</string> + <string name="pref_gallery_slideshow_interval_dialogtitle">Diashowinterval</string> + <string name="pref_gallery_slideshow_interval_summary">Kies hoe lang elke dia wordt weergegeven</string> + <string name="pref_gallery_slideshow_interval_title">Diashowinterval</string> + <string name="pref_gallery_slideshow_repeat_dialogtitle">Diashow herhalen?</string> + <string name="pref_gallery_slideshow_repeat_summary">Selecteren om de diashow meer dan eenmaal af te spelen</string> + <string name="pref_gallery_slideshow_repeat_title">Diashow herhalen</string> + <string name="pref_gallery_slideshow_shuffle_dialogtitle">Willekeurige volgorde?</string> + <string name="pref_gallery_slideshow_shuffle_summary">Selecteren om afbeeldingen in willekeurige volgorde af te spelen</string> + <string name="pref_gallery_slideshow_shuffle_title">Willekeurige volgorde</string> + <string name="pref_gallery_slideshow_transition_dialogtitle">Diashowovergang</string> + <string name="pref_gallery_slideshow_transition_summary">Kies het effect als van de ene naar de andere dia wordt gewisseld</string> + <string name="pref_gallery_slideshow_transition_title">Diashowovergang</string> + <string name="pref_gallery_sort_dialogtitle">Afbeelding sorteren</string> + <string name="pref_gallery_sort_summary">Selecteer de volgorde van afbeeldingen in albums</string> + <string name="pref_gallery_sort_title">Afbeelding sorteren</string> + <string name="pref_slideshow_category">Diavoorstelling</string> + <string name="preferences_label">Camera-instellingen</string> + <string name="preview">Voorbld</string> + <string name="record">Opname</string> + <string name="rotate">Draaien</string> + <string name="rotate_left">Links draaien</string> + <string name="rotate_right">Rechts draaien</string> + <string name="runningFaceDetection">Een ogenblik geduld\u2026</string> + <string name="save">Opslaan</string> + <string name="savingImage">Afbeelding opslaan</string> + <string name="sec1">1 sec</string> + <string name="sec2">2 sec</string> + <string name="sec3">3 sec</string> + <string name="sec4">4 sec</string> + <string name="sec5">5 sec</string> + <string name="sendImage">Deze afbeelding delen via</string> + <string name="sendVideo">Deze video delen via</string> + <string name="set_wallpaper">Instellen als achtergrond</string> + <string name="settings">Instellingen</string> + <string name="share_youtube">YouTube</string> + <string name="slide_show">Diavoorstelling</string> + <string name="stop">Stoppen</string> + <string name="testexif">Exif testen</string> + <string name="upload">Uploaden</string> + <string name="upload_all">Alles uploaden</string> + <string name="upload_default_category_text">Entertainment</string> + <string name="upload_default_description_text">hier komt beschrijving</string> + <string name="upload_default_tags_text">video</string> + <string name="upload_dialog_title">Uploaden naar YouTube - voer videodetails in</string> + <string name="upload_info_category">Categorie:</string> + <string name="upload_info_description">Beschrijving:</string> + <string name="upload_info_private">Indien niet aangevinkt, zie je alleen de film</string> + <string name="upload_info_tags">Labels:</string> + <string name="upload_info_title">Titel:</string> + <string name="upload_info_upload">Uploaden</string> + <string name="uploadingNPhotos">Bezig met uploaden van <xliff:g id="counter">%d</xliff:g> afbeeldingen</string> + <string name="uploadingNVideos">Bezig met uploaden van <xliff:g id="counter">%d</xliff:g> video's</string> + <string name="uploading_photos">Afbeeldingen worden geüpload</string> + <string name="uploading_photos_2">Afbeeldingen worden geüpload</string> + <string name="uploading_videos">Video's worden geüpload</string> + <string name="uploading_videos_2">Video's worden geüpload</string> + <string name="video_gallery_NoImageView_text">Geen video's</string> + <string name="video_play">Afspelen</string> + <string name="videos_gallery_title">Video's</string> + <string name="view_label">Afbeelding weergeven</string> + <string name="view_video_label">Video weergeven</string> + <string name="viewimage_comments_label_text">Opmerkingen</string> + <string name="viewimage_datetaken_label_text">Datum</string> + <string name="viewimage_digitalzoom_label_text">Digitale zoom</string> + <string name="viewimage_flash_label_text">Flits gebruikt</string> + <string name="viewimage_gps_latitude_label_text">Gps-breedtegraad</string> + <string name="viewimage_gps_longitude_label_text">Gps-lengtegraad</string> + <string name="viewimage_make_label_text">Maken</string> + <string name="viewimage_model_label_text">Van</string> + <string name="viewimage_orientation_label_text">Afdrukstand</string> + <string name="viewimage_res_label_text">Resolutie</string> + <string name="viewimage_status_text">Druk op Enter of Spatie om in te zoomen</string> + <string name="wait">Een ogenblik geduld\u2026</string> + <string name="wallpaper">Achtergrond wordt ingesteld, een ogenblik geduld\u2026</string> + <string name="yes">Ja</string> + <string name="youtube_upload_label">Uploaden naar YouTube</string> + <string name="zoom">In-/uitzoomen</string> +</resources> diff --git a/res/values-zh-rTW/strings.xml b/res/values-zh-rTW/strings.xml new file mode 100644 index 0000000..32c1e51 --- /dev/null +++ b/res/values-zh-rTW/strings.xml @@ -0,0 +1,229 @@ +<?xml version="1.0" encoding="utf-8"?> +<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="autocrop_before_query">先裁剪?</string> + <string name="autocrop_no">是</string> + <string name="autocrop_yes">是</string> + <string name="best_res">高</string> + <string name="camera_NoStorageView_text">請先插入 SD 卡再使用相機。</string> + <string name="camera_ZoomIn_text">拉近</string> + <string name="camera_ZoomOut_text">拉遠</string> + <string name="camera_button_hint">按下拍攝鍵即可拍攝圖片。</string> + <string name="camera_crop">裁剪</string> + <string name="camera_done">新增圖片</string> + <string name="camera_flash_auto">閃光燈自動</string> + <string name="camera_flash_off">閃光燈關閉</string> + <string name="camera_flash_on">閃光燈開啟</string> + <string name="camera_flash_setting">閃光燈設定</string> + <string name="camera_gallery_photos_text">圖片</string> + <string name="camera_gallery_videos_text">影片輯</string> + <string name="camera_keep">儲存</string> + <string name="camera_keeping">正在保留\u2026</string> + <string name="camera_label">相機</string> + <string name="camera_mode_text">模式</string> + <string name="camera_movie_record_counter_text">01:30:00</string> + <string name="camera_pick_wallpaper">圖片</string> + <string name="camera_playvideo">播放</string> + <string name="camera_record_text">錄音</string> + <string name="camera_selectphoto">選取此圖片</string> + <string name="camera_selectvideo">選取此影片</string> + <string name="camera_set">設成</string> + <string name="camera_setas_contact">連絡人圖片</string> + <string name="camera_setas_myfave">我的最愛</string> + <string name="camera_setas_wallpaper">桌布</string> + <string name="camera_setas_wallpaper_drm">購買的圖片</string> + <string name="camera_share">共用</string> + <string name="camera_shareby_email">電子郵件</string> + <string name="camera_shareby_mms">多媒體簡訊</string> + <string name="camera_shareby_picasa">Picasa 網路相簿</string> + <string name="camera_shareby_picasa_all">Picasa 網路相簿 (所有圖片)</string> + <string name="camera_switch_to_photo">切換到圖片</string> + <string name="camera_switch_to_video">切換到影片</string> + <string name="camera_takenewphoto">拍攝新圖片</string> + <string name="camera_takenewvideo">拍攝新影片</string> + <string name="camera_toss">刪除</string> + <string name="camera_tossing">正在刪除\u2026</string> + <string name="camera_zoom_1_text">顯示比例 1.3x</string> + <string name="camera_zoom_2_text">顯示比例 2x</string> + <string name="camera_zoom_3_text">顯示比例 4x</string> + <string name="camera_zoom_normal_text">1x</string> + <string name="camerasettings">設定</string> + <string name="camerasettings_autoupload_label">自動將圖片上傳到網頁</string> + <string name="camerasettings_done">完成</string> + <string name="camerasettings_duration_label">持續期間:</string> + <string name="camerasettings_image_quality_label">圖片品質:</string> + <string name="camerasettings_no">否</string> + <string name="camerasettings_off">關閉</string> + <string name="camerasettings_on">開啟</string> + <string name="camerasettings_play_click_sound_label">快門聲</string> + <string name="camerasettings_preferred_view_label">偏好的檢視:</string> + <string name="camerasettings_resolution_label">解析度:</string> + <string name="camerasettings_test2_label">測試 2:</string> + <string name="camerasettings_test3_label">測試 3:</string> + <string name="camerasettings_test4_label">測試 4:</string> + <string name="camerasettings_use_sd_card_label">將圖片儲存到 SD 卡</string> + <string name="camerasettings_yes">是</string> + <string name="cancel">取消</string> + <string name="confirm_delete">確認刪除</string> + <string name="confirm_delete_message">將會刪除此圖片。</string> + <string name="confirm_delete_title">刪除</string> + <string name="context_menu_header">圖片選項</string> + <string name="crop_discard_text">放棄</string> + <string name="crop_help">按住 ALT 調整大小。</string> + <string name="crop_label">裁剪圖片</string> + <string name="crop_save_text">儲存</string> + <string name="default_value_pref_gallery_size">1</string> + <string name="default_value_pref_gallery_slideshow_interval">"2"</string> + <string name="default_value_pref_gallery_slideshow_transition">"0"</string> + <string name="default_value_pref_gallery_sort">遞減</string> + <string name="delete">刪除</string> + <string name="deny_delete">取消"</string> + <string name="details">詳細資料</string> + <string name="details_category_label">類別:</string> + <string name="details_date_taken">拍攝日期:</string> + <string name="details_description_label">說明:</string> + <string name="details_description_text">測試說明</string> + <string name="details_file_size">檔案大小:</string> + <string name="details_image_resolution">解析度:</string> + <string name="details_language_label">語言:</string> + <string name="details_panel_title">詳細資料</string> + <string name="details_privateView_text">私人</string> + <string name="details_publicView_text">公開</string> + <string name="details_save_text">儲存</string> + <string name="details_tags_label">標籤:</string> + <string name="details_tags_text">monster</string> + <string name="details_title_label">標題:</string> + <string name="details_title_text">我的影片</string> + <string name="details_uploaded_text">上傳成功</string> + <string name="edit">編輯</string> + <string name="flip_orientation">翻轉方向</string> + <string name="gallery_label">圖片</string> + <string name="gallery_large">大</string> + <string name="gallery_picker_label">圖片</string> + <string name="gallery_small">小</string> + <string name="gallerysettings_duration">投影片放映中每張投影片顯示的持續時間</string> + <string name="gallerysettings_speed1">1 秒</string> + <string name="gallerysettings_speed2">3 秒</string> + <string name="gallerysettings_speed3">5 秒</string> + <string name="high">高</string> + <string name="image_count"><xliff:g id="counter">%d</xliff:g> 張圖片</string> + <string name="image_gallery_NoImageView_text">找不到圖片。</string> + <string name="image_gallery_picker_images">圖片</string> + <string name="image_gallery_picker_videos">影片</string> + <string name="loading_progress_format_string">剩餘 <xliff:g id="counter">%d</xliff:g></string> + <string name="low">低</string> + <string name="low_res">低</string> + <string name="med">中</string> + <string name="medium_res">中</string> + <string name="multiface_crop_help">點選臉部開始。</string> + <string name="no">否</string> + <string name="no_images">空白的相簿。</string> + <string name="no_storage">請先插入 SD 卡再使用相機。</string> + <string name="no_way_to_share_image">無法儲存此圖片。</string> + <string name="no_way_to_share_video">無法共用此影片。</string> + <string name="not_enough_space">SD 卡已滿。</string> + <string name="ok">確定</string> + <string name="photos_gallery_title">圖片</string> + <string name="picasa_upload_label">上傳到 Picasa</string> + <string name="pick_photos_gallery_title">選取圖片</string> + <string name="pick_videos_gallery_title">選取影片</string> + <string name="pref_camera_autoupload_summary">自動將圖片上傳到 Picasa</string> + <string name="pref_camera_autoupload_title">自動上傳圖片</string> + <string name="pref_camera_category">相機</string> + <string name="pref_camera_postpicturemenu_summary">拍攝之後顯示動作功能表 (儲存、刪除...)</string> + <string name="pref_camera_postpicturemenu_title">拍攝之後提示</string> + <string name="pref_camera_recordlocation_summary">在圖片資料中記錄位置</string> + <string name="pref_camera_recordlocation_title">將位置儲存在圖片中</string> + <string name="pref_camera_shuttersound_summary">拍攝圖片時播放聲音</string> + <string name="pref_camera_shuttersound_title">播放快門聲</string> + <string name="pref_camera_upload_albumname_dialogtitle">Picasa 相簿名稱</string> + <string name="pref_camera_upload_albumname_summary">命名圖片的目的相簿 (<xliff:g id="summary">%s</xliff:g>)</string> + <string name="pref_camera_upload_albumname_title">Picasa 相簿名稱</string> + <string name="pref_gallery_category">一般設定</string> + <string name="pref_gallery_confirm_delete_summary">刪除圖片之前顯示確認</string> + <string name="pref_gallery_confirm_delete_title">確認刪除</string> + <string name="pref_gallery_size_dialogtitle">圖片大小</string> + <string name="pref_gallery_size_summary">選取圖片的顯示大小</string> + <string name="pref_gallery_size_title">圖片大小</string> + <string name="pref_gallery_slideshow_interval_dialogtitle">投影片放映間隔</string> + <string name="pref_gallery_slideshow_interval_summary">選取投影片放映中每張投影片顯示的時間</string> + <string name="pref_gallery_slideshow_interval_title">投影片放映間隔</string> + <string name="pref_gallery_slideshow_repeat_dialogtitle">重複投影片放映?</string> + <string name="pref_gallery_slideshow_repeat_summary">投影片放映次數超過一次</string> + <string name="pref_gallery_slideshow_repeat_title">重複投影片放映</string> + <string name="pref_gallery_slideshow_shuffle_dialogtitle">隨機播放圖片?</string> + <string name="pref_gallery_slideshow_shuffle_summary">以隨機順序顯示圖片</string> + <string name="pref_gallery_slideshow_shuffle_title">隨機播放投影片</string> + <string name="pref_gallery_slideshow_transition_dialogtitle">投影片放映轉換</string> + <string name="pref_gallery_slideshow_transition_summary">選取從一張投影片移動到下一張投影片時所使用的特效</string> + <string name="pref_gallery_slideshow_transition_title">投影片放映轉換</string> + <string name="pref_gallery_sort_dialogtitle">圖片排序</string> + <string name="pref_gallery_sort_summary">選取圖片的排序方式</string> + <string name="pref_gallery_sort_title">圖片排序</string> + <string name="pref_slideshow_category">投影片放映設定</string> + <string name="preferences_label">相機設定</string> + <string name="preview">預覽</string> + <string name="record">錄音</string> + <string name="rotate">旋轉</string> + <string name="rotate_left">向左旋轉</string> + <string name="rotate_right">向右旋轉</string> + <string name="runningFaceDetection">請稍候\u2026</string> + <string name="save">儲存</string> + <string name="savingImage">正在儲存圖片\u2026</string> + <string name="sec1">1 秒</string> + <string name="sec2">2 秒</string> + <string name="sec3">3 秒</string> + <string name="sec4">4 秒</string> + <string name="sec5">5 秒</string> + <string name="sendImage">共用圖片</string> + <string name="sendVideo">共用影片</string> + <string name="setImage">將圖片設成</string> + <string name="set_wallpaper">設成桌布</string> + <string name="settings">設定</string> + <string name="share_youtube">YouTube</string> + <string name="slide_show">投影片放映</string> + <string name="space_remaining_k"><xliff:g id="counter">%d</xliff:g>K</string> + <string name="stop">停止</string> + <string name="testexif">測試 Exif</string> + <string name="upload">上傳</string> + <string name="upload_all">全部上傳</string> + <string name="upload_default_category_text">娛樂</string> + <string name="upload_default_description_text">在此輸入說明</string> + <string name="upload_default_tags_text">影片</string> + <string name="upload_dialog_title">上傳到 YouTube - 輸入影片詳細資料</string> + <string name="upload_info_category">類別:</string> + <string name="upload_info_description">說明:</string> + <string name="upload_info_private">如果取消勾選此選項,則只有您可以觀看此電影</string> + <string name="upload_info_tags">標籤:</string> + <string name="upload_info_title">標題:</string> + <string name="upload_info_upload">上傳</string> + <string name="uploadingNPhotos">正在上傳 <xliff:g id="counter">%d</xliff:g> 張圖片</string> + <string name="uploadingNVideos">正在上傳 <xliff:g id="counter">%d</xliff:g> 段影片</string> + <string name="uploading_photos">正在上傳圖片</string> + <string name="uploading_photos_2">正在上傳圖片</string> + <string name="uploading_videos">正在上傳影片</string> + <string name="uploading_videos_2">正在上傳影片</string> + <string name="video_gallery_NoImageView_text">找不到影片。</string> + <string name="video_play">播放</string> + <string name="videos_gallery_title">影片</string> + <string name="view">檢視</string> + <string name="view_label">檢視圖片</string> + <string name="view_video_label">檢視影片</string> + <string name="viewimage_comments_label_text">註解</string> + <string name="viewimage_datetaken_label_text">日期</string> + <string name="viewimage_digitalzoom_label_text">數位顯示比例</string> + <string name="viewimage_flash_label_text">使用 Flash</string> + <string name="viewimage_gps_latitude_label_text">GPS 緯度</string> + <string name="viewimage_gps_longitude_label_text">GPS 經度</string> + <string name="viewimage_make_label_text">製造</string> + <string name="viewimage_model_label_text">從</string> + <string name="viewimage_orientation_label_text">方向</string> + <string name="viewimage_res_label_text">解析度</string> + <string name="viewimage_status_text">按下 Enter 或 Space 來顯示比例。</string> + <string name="wait">請稍候\u2026</string> + <string name="wallpaper">正在設定桌布,請稍候\u2026</string> + <string name="yes">是</string> + <string name="youtube_upload_label">YouTube 上傳</string> + <string name="zoom">顯示比例</string> +</resources> diff --git a/res/values/ids.xml b/res/values/ids.xml new file mode 100644 index 0000000..d60f413 --- /dev/null +++ b/res/values/ids.xml @@ -0,0 +1,33 @@ +<?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> + <item type="id" name="autoupload" /> + <item type="id" name="duration" /> + <item type="id" name="imagequality" /> + <item type="id" name="playclicksound" /> + <item type="id" name="preferred_gallery_view" /> + <item type="id" name="resolution" /> + <item type="id" name="t2" /> + <item type="id" name="t3" /> + <item type="id" name="t4" /> + <item type="id" name="usesd" /> + <item type="id" name="slideshowdelay" /> +</resources> + + diff --git a/res/values/strings.xml b/res/values/strings.xml new file mode 100755 index 0000000..e5b47fb --- /dev/null +++ b/res/values/strings.xml @@ -0,0 +1,368 @@ +<?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 --> + + <string name="all_images">All pictures</string> + + <string name="image_count"><xliff:g id="counter">%d</xliff:g> pictures</string> + <string name="camera_label">Camera</string> + <string name="gallery_picker_label">Pictures</string> + <string name="gallery_label">Pictures</string> + <string name="crop_label">Crop picture</string> + <string name="view_label">View picture</string> + <string name="view_video_label">View video</string> + <string name="preferences_label">Camera settings</string> + <string name="picasa_upload_label">Picasa upload</string> + <string name="youtube_upload_label">YouTube upload</string> + + <string name="ok">OK</string> + <string name="stop">Stop</string> + <string name="record">Record</string> + <string name="wait">Please wait\u2026</string> + <string name="no_storage">Please insert an SD card before using the camera.</string> + <string name="not_enough_space">Your SD card is full.</string> + <string name="no_images">Your album is empty.</string> + <string name="wallpaper">Setting wallpaper, please wait\u2026</string> + <string name="gallery_small">Small</string> + <string name="gallery_large">Large</string> + + <!-- Settings stuff --> + <string name="high">High</string> + <string name="med">Medium</string> + <string name="low">Low</string> + + <string name="best_res">High</string> + <string name="medium_res">Medium</string> + <string name="low_res">Low</string> + + <string name="sec1">1 sec</string> + <string name="sec2">2 secs</string> + <string name="sec3">3 secs</string> + <string name="sec4">4 secs</string> + <string name="sec5">5 secs</string> + + <string name="yes">Yes</string> + <string name="no">No</string> + + <string name="savingImage">Saving picture\u2026</string> + <string name="runningFaceDetection">Please wait\u2026</string> + + + <!-- Menu stuff --> + <string name="flip_orientation">Flip orientation</string> + <string name="settings">Settings</string> + <string name="zoom">Zoom</string> + <string name="testexif">Test Exif</string> + + <string name="view">View</string> + <string name="delete">Delete</string> + <string name="details">Details</string> + <string name="rotate">Rotate</string> + <string name="rotate_left">Rotate left</string> + <string name="rotate_right">Rotate right</string> + <string name="set_wallpaper">Set as wallpaper</string> + <string name="slide_show">Slideshow</string> + + <string name="confirm_delete">Confirm delete</string> + <string name="deny_delete">Cancel"</string> + + <string name="upload">Upload</string> + <string name="upload_all">Upload all</string> + <string name="uploading_photos">Uploading pictures</string> + <string name="uploading_photos_2">Uploading pictures</string> + <string name="uploading_videos">Uploading videos</string> + <string name="uploading_videos_2">Uploading videos</string> + <string name="uploadingNPhotos">Uploading <xliff:g id="counter">%d</xliff:g> pictures</string> + <string name="uploadingNVideos">Uploading <xliff:g id="counter">%d</xliff:g> videos</string> + + <string name="preview">Preview</string> + <string name="edit">Edit</string> + <string name="cancel">Cancel</string> + <string name="save">Save</string> + + <string name="crop_help">Hold ALT to resize.</string> + <string name="crop_save_text">Save</string> + <string name="crop_discard_text">Discard</string> + + <string name="camera_mode_text">Mode</string> + <string name="camera_record_text">Record</string> + + <string name="camera_keep">Save</string> + <string name="confirm_delete_title">Delete</string> + <string name="confirm_delete_message">The picture will be deleted.</string> + + <string name="camera_toss">Delete</string> + <string name="camera_share">Share</string> + <string name="camera_set">Set as</string> + <string name="camera_crop">Crop</string> + <string name="camera_done">New picture</string> + + <string name="camera_tossing">Deleting\u2026</string> + <string name="camera_keeping">Keeping\u2026</string> + <string name="camera_flash_setting">Flash setting</string> + + <string name="no_way_to_share_image">This picture cannot be saved.</string> + <string name="no_way_to_share_video">This video cannot be shared.</string> + + <string name="autocrop_before_query">Crop before?</string> + <string name="autocrop_yes">Yes</string> + <string name="autocrop_no">Yes</string> + <string name="video_play">Play</string> + <string name="share_youtube">YouTube</string> + + <string name="camera_switch_to_video">Switch to video</string> + <string name="camera_switch_to_photo">Switch to picture</string> + + <string name="camera_NoStorageView_text">Please insert an SD card before using the camera.</string> + <string name="camera_ZoomIn_text">Zoom in</string> + <string name="camera_ZoomOut_text">Zoom out</string> + <string name="camera_movie_record_counter_text">01:30:00</string> + <string name="camera_gallery_photos_text">Pictures</string> + <string name="camera_gallery_videos_text">Video Album</string> + + <string name="camera_shareby_email">Email</string> + <string name="camera_shareby_mms">MMS</string> + <string name="camera_shareby_picasa">Picasaweb</string> + <string name="camera_shareby_picasa_all">Picasaweb (all pictures)</string> + + <string name="camera_flash_auto">AutoFlash</string> + <string name="camera_flash_on">Flash ON</string> + <string name="camera_flash_off">Flash OFF</string> + + <string name="camera_pick_wallpaper">Pictures</string> + <string name="camera_setas_wallpaper">Wallpaper</string> + + <string name="camera_setas_wallpaper_drm">Purchased pictures</string> + <string name="camera_setas_contact">Contact picture</string> + <string name="camera_setas_myfave">myFaves</string> + + <string name="camera_selectphoto">Select this picture</string> + <string name="camera_takenewphoto">Capture new picture</string> + + <string name="camera_selectvideo">Select this video</string> + <string name="camera_takenewvideo">Capture new video</string> + <string name="camera_playvideo">Play</string> + + <string name="pref_gallery_category">General settings</string> + <string name="pref_slideshow_category">Slideshow settings</string> + <string name="pref_camera_category">Camera</string> + + <string name="pref_gallery_size_title">Picture size</string> + <string name="pref_gallery_size_summary">Select the display size of pictures</string> + <string name="pref_gallery_size_dialogtitle">Picture size</string> + <string-array name="pref_gallery_size_choices"> + <item>Large</item> + <item>Small</item> + </string-array> + + <string-array name="pref_gallery_size_values"> + <item>1</item> + <item>0</item> + </string-array> + <string name="default_value_pref_gallery_size">1</string> + + <string name="pref_gallery_sort_title">Picture sort</string> + <string name="pref_gallery_sort_summary">Select the sort order of pictures</string> + <string name="pref_gallery_sort_dialogtitle">Picture sort</string> + <string-array name="pref_gallery_sort_choices"> + <item>Newest first</item> + <item>Newest last</item> + </string-array> + + <string-array name="pref_gallery_sort_values"> + <item>descending</item> + <item>ascending</item> + </string-array> + <string name="default_value_pref_gallery_sort">descending</string> + + <string name="pref_gallery_slideshow_interval_title">Slideshow interval</string> + <string name="pref_gallery_slideshow_interval_summary">Select how long each slide displays in the show</string> + <string name="pref_gallery_slideshow_interval_dialogtitle">Slideshow interval</string> + <string-array name="pref_gallery_slideshow_interval_choices"> + <item>2 seconds</item> + <item>3 seconds</item> + <item>4 seconds</item> + </string-array> + + <string-array name="pref_gallery_slideshow_interval_values"> + <item>"2"</item> + <item>"3"</item> + <item>"4"</item> + </string-array> + <string name="default_value_pref_gallery_slideshow_interval">"2"</string> + + <string name="pref_gallery_slideshow_transition_title">Slideshow transition</string> + <string name="pref_gallery_slideshow_transition_summary">Select the effect used when moving from one slide to the next</string> + <string name="pref_gallery_slideshow_transition_dialogtitle">Slideshow transition</string> + <string-array name="pref_gallery_slideshow_transition_choices"> + <item>Fade in & out</item> + <item>Slide left - right</item> + <item>Slide up - down</item> + <item>Random selection</item> + </string-array> + + <string-array name="pref_gallery_slideshow_transition_values"> + <item>"0"</item> + <item>"1"</item> + <item>"2"</item> + <item>"-1"</item> + </string-array> + <string name="default_value_pref_gallery_slideshow_transition">"0"</string> + + <string name="pref_gallery_slideshow_repeat_title">Repeat slideshow</string> + <string name="pref_gallery_slideshow_repeat_summary">Play slideshow more than once</string> + <string name="pref_gallery_slideshow_repeat_dialogtitle">Repeat slideshow?</string> + + <string name="pref_gallery_slideshow_shuffle_title">Shuffle slides</string> + <string name="pref_gallery_slideshow_shuffle_summary">Show pictures in random order</string> + <string name="pref_gallery_slideshow_shuffle_dialogtitle">Shuffle pictures?</string> + + <string name="pref_camera_autoupload_title">Auto-upload pictures</string> + <string name="pref_camera_autoupload_summary">Upload pictures to Picasa automatically</string> + + <string name="pref_camera_recordlocation_title">Store location in pictures</string> + <string name="pref_camera_recordlocation_summary">Record location in picture data</string> + + <string name="pref_camera_shuttersound_title">Play shutter sound</string> + <string name="pref_camera_shuttersound_summary">Play a sound when taking a picture</string> + + <string name="pref_camera_upload_albumname_title">Picasa album name</string> + <string name="pref_camera_upload_albumname_summary">Name the destination album for your pictures (<xliff:g id="summary">%s</xliff:g>)</string> + <string name="pref_camera_upload_albumname_dialogtitle">Picasa album name</string> + + <string name="pref_camera_postpicturemenu_title">Prompt after capture</string> + <string name="pref_camera_postpicturemenu_summary">Display action menu (save, delete, ...) after capture</string> + + <string name="camerasettings_preferred_view_label">Preferred view:</string> + <string name="camerasettings">Settings</string> + <string name="camerasettings_autoupload_label">Automatically upload pictures to Web</string> + <string name="camerasettings_test2_label">test2:</string> + <string name="camerasettings_test3_label">test3:</string> + <string name="camerasettings_play_click_sound_label">Shutter sound</string> + <string name="camerasettings_resolution_label">Resolution:</string> + <string name="camerasettings_test4_label">test4:</string> + <string name="camerasettings_duration_label">Duration:</string> + <string name="camerasettings_use_sd_card_label">Save pictures to SD card</string> + <string name="camerasettings_image_quality_label">Picture quality:</string> + <string name="camerasettings_on">On</string> + <string name="camerasettings_off">Off</string> + <string name="camerasettings_yes">Yes</string> + <string name="camerasettings_no">No</string> + <string name="camerasettings_done">Done</string> + + <string name="gallerysettings_duration">Duration of each slide in slideshows</string> + + <!-- The actual seconds are hardwired in GallerySettings.java. These are just labels. --> + <string name="gallerysettings_speed1">1 second</string> + <string name="gallerysettings_speed2">3 seconds</string> + <string name="gallerysettings_speed3">5 seconds</string> + + <string name="image_gallery_status_text"></string> + <string name="image_gallery_NoImageView_text">No pictures found.</string> + <string name="video_gallery_NoImageView_text">No videos found.</string> + + <string name="image_gallery_picker_images">Pictures</string> + <string name="image_gallery_picker_videos">Videos</string> + + <string name="pref_gallery_confirm_delete_title">Confirm deletions</string> + <string name="pref_gallery_confirm_delete_summary">Show confirmation before deleting pictures</string> + + <string name="viewimage_gps_latitude_label_text">GPS latitude</string> + <string name="viewimage_res_label_text">Resolution</string> + <string name="viewimage_make_label_text">Make</string> + <string name="viewimage_comments_text"></string> + <string name="viewimage_digitalzoom_text"></string> + <string name="viewimage_orientation_label_text">Orientation</string> + <string name="viewimage_res_text"></string> + <string name="viewimage_gps_longitude_label_text">GPS longitude</string> + <string name="viewimage_model_text"></string> + <string name="viewimage_gps_longitude_text"></string> + <string name="viewimage_make_text"></string> + <string name="viewimage_status_text">Press Enter or Space to zoom.</string> + <string name="viewimage_comments_label_text">Comments</string> + <string name="viewimage_flash_text"></string> + <string name="viewimage_digitalzoom_label_text">Digital zoom</string> + <string name="viewimage_orientation_text"></string> + <string name="viewimage_flash_label_text">Flash used</string> + <string name="viewimage_gps_latitude_text"></string> + <string name="viewimage_datetaken_text"></string> + <string name="viewimage_model_label_text">From</string> + <string name="viewimage_datetaken_label_text">Date</string> + + <string name="camera_zoom_3_text">Zoom 4x</string> + <string name="camera_zoom_2_text">Zoom 2x</string> + <string name="camera_zoom_1_text">Zoom 1.3x</string> + <string name="camera_zoom_normal_text">1x</string> + + <!-- Details stuff --> + <string name="details_title_text">myvideo</string> + <string name="details_uploaded_text">Successfully uploaded</string> + <string name="details_tags_text">monster</string> + <string name="details_category_label">Category:</string> + <string name="details_description_label">Description:</string> + <string name="details_publicView_text">Public</string> + <string name="details_tags_label">Tags:</string> + <string name="details_description_text">testdescription</string> + <string name="details_title_label">Title:</string> + <string name="details_save_text">Save</string> + <string name="details_language_label">Language:</string> + <string name="details_privateView_text">Private</string> + + <!-- Upload stuff --> + <string name="upload_default_tags_text">video</string> + <string name="upload_default_description_text">description goes here</string> + <string name="upload_default_category_text">Entertainment</string> + + <string name="details_panel_title">Details</string> + + <string name="details_file_size">File size:</string> + <string name="details_image_resolution">Resolution:</string> + <string name="details_date_taken">Date taken:</string> + + <string name="context_menu_header">Picture options</string> + + <string name="multiface_crop_help">Tap a face to begin.</string> + <string name="camera_button_hint">Press Capture button to take picture.</string> + + <string name="photos_gallery_title">Pictures</string> + <string name="videos_gallery_title">Videos</string> + <string name="pick_photos_gallery_title">Select picture</string> + <string name="pick_videos_gallery_title">Select video</string> + + <!-- YouTube upload stuff --> + <string name="upload_info_title">Title:</string> + <string name="upload_info_description">Description:</string> + <string name="upload_info_category">Category:</string> + <string name="upload_info_tags">Tags:</string> + <string name="upload_info_upload">Upload</string> + <string name="upload_info_private">If unchecked, only you can see the movie</string> + <string name="upload_dialog_title">Upload to YouTube - type video details</string> + + <string name="loading_progress_format_string"><xliff:g id="counter">%d</xliff:g> remaining</string> + + <string name="space_remaining_k"><xliff:g id="counter">%d</xliff:g>K</string> + + <!-- Displayed in the title of the chooser for things to do with an image that + is to be sent to another application. --> + <string name="sendImage">Share picture via</string> + <string name="setImage">Set picture as</string> + + <!-- Displayed in the title of the chooser for things to do with a video that + is to be sent to another application. --> + <string name="sendVideo">Share video via</string> +</resources> diff --git a/res/xml/camera_preferences.xml b/res/xml/camera_preferences.xml new file mode 100644 index 0000000..c4dab52 --- /dev/null +++ b/res/xml/camera_preferences.xml @@ -0,0 +1,53 @@ +<?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_category"> +<!-- + <CheckBoxPreference + android:key="pref_camera_autoupload_key" + android:title="@string/pref_camera_autoupload_title" + android:summary="@string/pref_camera_autoupload_summary" + android:defaultValue="false"/> + <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" /> + <CheckBoxPreference + android:key="pref_camera_shuttersound_key" + android:title="@string/pref_camera_shuttersound_title" + android:summary="@string/pref_camera_shuttersound_summary" + android:defaultValue="true"/> +--> + <CheckBoxPreference + android:key="pref_camera_recordlocation_key" + android:title="@string/pref_camera_recordlocation_title" + android:summary="@string/pref_camera_recordlocation_summary" + android:defaultValue="false"/> + <CheckBoxPreference + android:key="pref_camera_postpicturemenu_key" + android:title="@string/pref_camera_postpicturemenu_title" + android:summary="@string/pref_camera_postpicturemenu_summary" + android:defaultValue="true"/> + </PreferenceCategory> + +</PreferenceScreen> 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> |