Update changed code
authorJunghyun Kim <jh1114.kim@samsung.com>
Tue, 21 Aug 2012 11:36:59 +0000 (20:36 +0900)
committerJunghyun Kim <jh1114.kim@samsung.com>
Tue, 21 Aug 2012 11:36:59 +0000 (20:36 +0900)
82 files changed:
CMakeLists.txt
INSTALL [deleted file]
data/taskmgr.edc
data/themes/theme_taskmanager.edc
debian/changelog
debian/control
debian/copyright [deleted file]
debian/dirs [deleted file]
debian/docs [deleted file]
debian/org.tizen.taskmgr.install.in
org.tizen.taskmgr.desktop.in [deleted file]
org.tizen.taskmgr.xml [new file with mode: 0755]
packaging/org.tizen.taskmgr.spec
po/CMakeLists.txt
po/ar.po [new file with mode: 0644]
po/bg.po [new file with mode: 0644]
po/ca.po [new file with mode: 0644]
po/cs.po [new file with mode: 0644]
po/da.po [new file with mode: 0644]
po/de.po [deleted file]
po/de_DE.po [new file with mode: 0644]
po/el.po [deleted file]
po/el_GR.po [new file with mode: 0644]
po/en.po [new file with mode: 0644]
po/en_GB.po [deleted file]
po/en_US.po
po/es.po [deleted file]
po/es_ES.po [new file with mode: 0644]
po/fi.po [new file with mode: 0644]
po/fr.po [deleted file]
po/fr_FR.po [new file with mode: 0644]
po/he.po [new file with mode: 0644]
po/hi.po [new file with mode: 0644]
po/hr.po [new file with mode: 0644]
po/hu.po [new file with mode: 0644]
po/id.po [new file with mode: 0644]
po/it.po [deleted file]
po/it_IT.po [new file with mode: 0644]
po/ja.po [deleted file]
po/ja_JP.po [new file with mode: 0644]
po/ko.po [deleted file]
po/ko_KR.po [new file with mode: 0644]
po/lt.po [new file with mode: 0644]
po/lv.po [new file with mode: 0644]
po/ms.po [new file with mode: 0644]
po/nl.po [deleted file]
po/nl_NL.po [new file with mode: 0644]
po/no.po [new file with mode: 0644]
po/pl.po [new file with mode: 0644]
po/pt.po [deleted file]
po/pt_PT.po [new file with mode: 0644]
po/ro.po [new file with mode: 0644]
po/ru.po [deleted file]
po/ru_RU.po [new file with mode: 0644]
po/sk.po [new file with mode: 0644]
po/sl.po [new file with mode: 0644]
po/sr.po [new file with mode: 0644]
po/sv.po [new file with mode: 0644]
po/th.po [new file with mode: 0644]
po/tr_TR.po
po/uk.po [new file with mode: 0644]
po/vi.po [new file with mode: 0644]
po/zh_CN.po
po/zh_HK.po
po/zh_TW.po
src/_cpu.c
src/_cpu.h
src/_eina.c
src/_eina.h
src/_genlist.c [changed mode: 0644->0755]
src/_genlist.h
src/_info.c
src/_info.h
src/_logic.c [changed mode: 0644->0755]
src/_logic.h
src/_progressbar.c
src/_progressbar.h
src/_util_efl.c
src/_util_efl.h
src/_util_log.h
src/taskmanager.c [changed mode: 0644->0755]
src/taskmanager.h [changed mode: 0644->0755]

index 621cc4f5ff79b1d2c4d18523e0f08549d8366759..8b760e16fde1123d6ccde612e188a34f065bb441 100755 (executable)
@@ -8,10 +8,11 @@ SET(SRCS
        src/_logic.c
        src/_cpu.c
        src/_eina.c
+#      src/_info.c
        src/_progressbar.c
 )
 
-SET(VENDOR "tizen")
+SET(VENDOR tizen)
 SET(PACKAGE ${PROJECT_NAME})
 SET(PKGNAME "org.${VENDOR}.${PACKAGE}")
 SET(PREFIX ${CMAKE_INSTALL_PREFIX})
@@ -19,7 +20,7 @@ SET(BINDIR "${PREFIX}/bin")
 SET(RESDIR "${PREFIX}/res")
 SET(DATADIR "${PREFIX}/data")
 SET(LOCALEDIR "${RESDIR}/locale")
-SET(ICONDIR "${RESDIR}/icons/default/small")
+SET(ICONDIR "/opt/share/icons/default/small")
 SET(IMAGEDIR "${RESDIR}/images/${PACKAGE}")
 SET(EDJDIR "${RESDIR}/edje/${PACKAGE}")
 
@@ -89,8 +90,8 @@ TARGET_LINK_LIBRARIES(${PROJECT_NAME} ${pkgs_LDFLAGS} "-pie")
 INSTALL(TARGETS ${PROJECT_NAME} DESTINATION ${BINDIR})
 
 # install desktop file & icon
-CONFIGURE_FILE(${PKGNAME}.desktop.in ${CMAKE_BINARY_DIR}/${PKGNAME}.desktop)
-INSTALL(FILES ${CMAKE_BINARY_DIR}/${PKGNAME}.desktop DESTINATION /opt/share/applications)
+#CONFIGURE_FILE(${PKGNAME}.desktop.in ${CMAKE_BINARY_DIR}/${PKGNAME}.desktop)
+INSTALL(FILES ${CMAKE_BINARY_DIR}/${PKGNAME}.xml DESTINATION /opt/share/packages)
 INSTALL(FILES ${CMAKE_SOURCE_DIR}/${PKGNAME}.png DESTINATION ${ICONDIR})
 
 #install application HOME directory
diff --git a/INSTALL b/INSTALL
deleted file mode 100755 (executable)
index f9a559a..0000000
--- a/INSTALL
+++ /dev/null
@@ -1,32 +0,0 @@
-1. make the build directory
-
-  ex) 
-
-   $ mkdir build
-
-
-2. change the working directory to the build directory
-
-  ex)
-
-   $ cd build
-
-
-3. run 'cmake'
-
-       $ cmake ${SOURCE_DIR} -DCMAKE_INSTALL_PREFIX=/opt/apps/@@PKGNAME@@
-
-  ex)
-
-   $ cmake .. -DCMAKE_INSTALL_PREFIX=/opt/apps/@@PKGNAME@@
-
-   or
-
-   $ cmake ..
-
-4. make & make install
-
-  ex)
-
-   $ make -j 2 && make install
-
index e7f7b96ba4c49385c3c82e959b0fc5cdb77fb259..84bc661df0d33b5bd52644526a38cabd0c0a56cb 100755 (executable)
@@ -1,18 +1,18 @@
- /*
 * Copyright 2012  Samsung Electronics Co., Ltd
-  *
 * Licensed under the Flora License, Version 1.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.tizenopensource.org/license
-  *
 * 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.
 */
+/*
+ * Copyright 2012  Samsung Electronics Co., Ltd
+ * 
* Licensed under the Flora License, Version 1.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.tizenopensource.org/license
+ * 
+ * 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.
+ */
 
 #define BTN_H 76
 #define GENLIST_BG 246 245 237
@@ -91,7 +91,7 @@ collections {
                        }
                }
        }
-
+       
        group {
                name: "info";
                parts {
@@ -162,7 +162,7 @@ collections {
                                        rel2 { relative: 1.0 1.0; to: "bg"; }
                                }
                        }
-
+                       
                        part {
                                name: "swallow";
                                type: SWALLOW;
@@ -170,13 +170,13 @@ collections {
                                description {
                                        state: "default" 0.0;
                                        min: 1 1;
-                                       rel1 {
-                                               relative: 1.0 1.0;
+                                       rel1 { 
+                                               relative: 1.0 1.0; 
                                                to_x: "padding/l";
                                                to_y: "padding/t";
                                        }
-                                       rel2 {
-                                               relative: 0.0 0.0;
+                                       rel2 { 
+                                               relative: 0.0 0.0; 
                                                to_x: "padding/r";
                                                to_y: "padding/b";
                                        }
index 898a0d23acd4e0d39148b1c486e84291f0870c0a..fa3711d2663d6bfaf8e2f97f58a44c29b509305c 100755 (executable)
@@ -1,18 +1,18 @@
- /*
 * Copyright 2012  Samsung Electronics Co., Ltd
-  *
 * Licensed under the Flora License, Version 1.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.tizenopensource.org/license
-  *
 * 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.
 */
+/*
+ * Copyright 2012  Samsung Electronics Co., Ltd
+ * 
* Licensed under the Flora License, Version 1.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.tizenopensource.org/license
+ * 
+ * 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.
+ */
 
 collections {
 
@@ -137,7 +137,7 @@ collections {
                                        align: 0.0 0.5;
                                        color: 0 0 0 0;
                                }
-                       }
+                       } 
                        part {
                                name: "padding_icon_text";
                                type: RECT;
@@ -146,7 +146,7 @@ collections {
                                description { state: "default" 0.0; //when only icon or no icon is there
                                        align: 0.0 0.0;
                                        rel1 { relative: 1.0 0.0; to: "icon_rect"; }
-                                       rel2 { relative: 1.0 1.0; to: "icon_rect"; }
+                                       rel2 { relative: 1.0 1.0; to: "icon_rect"; }                    
                                        fixed: 1 0;
                                        min: 0 0;
                                        color: 0 0 0 0;
@@ -157,12 +157,12 @@ collections {
                                description { state: "visible" 0.0; //when icon is visible
                                        align: 0.0 0.0;
                                        rel1 { relative: 1.0 0.0; to: "icon_rect"; }
-                                       rel2 { relative: 1.0 1.0; to: "icon_rect"; }
+                                       rel2 { relative: 1.0 1.0; to: "icon_rect"; }                    
                                        fixed: 1 0;
                                        min: 5 0;
                                        color: 0 0 0 0;
                                }
-                       }
+                       }                                       
                        part { name: "elm.swallow.content";
                                type: SWALLOW;
                                scale: 1;
@@ -577,7 +577,7 @@ collections {
                                        align: 0.0 0.5;
                                        color: 0 0 0 0;
                                }
-                       }
+                       } 
                        part {
                                name: "padding_icon_text";
                                type: RECT;
@@ -586,7 +586,7 @@ collections {
                                description { state: "default" 0.0; //when only icon or no icon is there
                                        align: 0.0 0.0;
                                        rel1 { relative: 1.0 0.0; to: "icon_rect"; }
-                                       rel2 { relative: 1.0 1.0; to: "icon_rect"; }
+                                       rel2 { relative: 1.0 1.0; to: "icon_rect"; }                    
                                        fixed: 1 0;
                                        min: 0 0;
                                        color: 0 0 0 0;
@@ -597,12 +597,12 @@ collections {
                                description { state: "visible" 0.0; //when icon is visible
                                        align: 0.0 0.0;
                                        rel1 { relative: 1.0 0.0; to: "icon_rect"; }
-                                       rel2 { relative: 1.0 1.0; to: "icon_rect"; }
+                                       rel2 { relative: 1.0 1.0; to: "icon_rect"; }                    
                                        fixed: 1 0;
                                        min: 5 0;
                                        color: 0 0 0 0;
                                }
-                       }
+                       }                                       
                        part { name: "elm.swallow.content";
                                type: SWALLOW;
                                scale: 1;
@@ -1077,7 +1077,7 @@ collections {
                                                fixed: 1 0;
                                                align: 1.0 0.5;
                                                visible: 0;
-                                               rel1 {
+                                               rel1 { 
                                                        relative: 0.0 0.0;
                                                        to_x: "elm.padding.right";
                                                }
@@ -1098,7 +1098,7 @@ collections {
                                                fixed: 1 1;
                                                align: 0.0 0.0;
                                                visible: 0;
-                                               rel1 {
+                                               rel1 { 
                                                        relative: 0.0 0.0;
                                                        to: "end.bg";
                                                }
@@ -1119,7 +1119,7 @@ collections {
                                                fixed: 1 1;
                                                align: 1.0 1.0;
                                                visible: 0;
-                                               rel1 {
+                                               rel1 { 
                                                        relative: 1.0 1.0;
                                                        to: "end.bg";
                                                }
@@ -1134,27 +1134,27 @@ collections {
                                        type: SWALLOW;
                                        scale: 1;
                                        clip_to: "disclip";
-                                       description {
+                                       description { 
                                                state: "default" 0.0;
                                                align: 0.5 0.5;
-                                               rel1 {
+                                               rel1 { 
                                                        relative: 1.0 1.0;
-                                                       to: "end.padding.left";
+                                                       to: "end.padding.left"; 
                                                }
-                                               rel2 {
+                                               rel2 { 
                                                        relative: 0.0 0.0;
-                                                       to: "end.padding.right";
+                                                       to: "end.padding.right"; 
                                                }
                                        }
                                }
 
-                               part {
+                               part { 
                                        name: "elm.text";
                                        clip_to: "disclip";
                                        type: TEXT;
                                        mouse_events: 0;
                                        scale: 1;
-                                       description {
+                                       description { 
                                                state: "default" 0.0;
                                        rel1 {
                                                        relative: 1.0  0.0;
@@ -1174,26 +1174,26 @@ collections {
                                                        align: 0.0 0.5;
                                                }
                                        }
-                                       description {
+                                       description { 
                                                state: "selected" 0.0;
                                                inherit: "default" 0.0;
                                                color: 225 225 225 255;
                                        }
                                }
-                               part {
+                               part { 
                                        name: "elm.text.right";
                                        clip_to: "disclip";
                                        type: TEXT;
                                        mouse_events: 0;
                                        scale: 1;
-                               description {
+                               description { 
                                                state: "default" 0.0;
                                                visible: 1;
                                                min: 70 50;
                                        max: 70 50;
                                                fixed: 1 0;
                                                align: 1.0 0.5;
-                                               rel1 {
+                                               rel1 { 
                                                        to_x: "end.bg";
                                                }
                                                rel2 {
@@ -1208,27 +1208,27 @@ collections {
                                                        align: 0.5 0.5;
                                                }
                                        }
-                                       description {
+                                       description { 
                                                state: "hide" 0.0;
                                                inherit: "default" 0.0;
                                                min: 0 0;
                                                max: 0 0;
                                                visible: 0;
                                        }
-                                       description {
+                                       description { 
                                                state: "selected" 0.0;
                                                inherit: "default" 0.0;
                                                color: 225 225 225 255;
                                        }
                                }
 
-                               part {
+                               part { 
                                        name: "elm.text.button";
                                        clip_to: "disclip";
                                        type: TEXT;
                                        mouse_events: 0;
                                        scale: 1;
-                                       description {
+                                       description { 
                                                state: "default" 0.0;
                                                rel1 { to: "elm.swallow.end"; }
                                                rel2 { to: "elm.swallow.end"; }
@@ -1240,18 +1240,18 @@ collections {
                                                        align: 0.5 0.5;
                                                }
                                        }
-                                       description {
+                                       description { 
                                                state: "selected" 0.0;
                                                inherit: "default" 0.0;
                                                color: 225 225 225 255;
                                        }
                                }
 
-                               part {
+                               part { 
                                        name: "elm.swallow.icon";
                                        clip_to: "disclip";
                                        type: SWALLOW;
-                                       description {
+                                       description { 
                                                state: "default" 0.0;
                                                fixed: 1 0;
                                                align: 0.0 0.5;
@@ -1260,7 +1260,7 @@ collections {
                                                        to_x: "elm.padding.left";
                                                }
                                            rel2.to_x: "elm.padding.left";
-                                       }
+                                       }               
                                }
                                BEAT_GENLIST_PART_DISCLIP
                        }
@@ -1354,7 +1354,7 @@ collections {
                                                normal: "39_mini_controller_button_nor.png";
                                                border: 5 5 5 5;
                                                border_scale: 1;
-                                       }
+                                       }               
                       }
                                description {
                                        state: "selected" 0.0;
@@ -1363,7 +1363,7 @@ collections {
                                                normal: "39_mini_controller_button_press.png";
                                                border: 5 5 5 5;
                                                border_scale: 1;
-                                       }
+                                       }               
                                }
                        }
 
@@ -1372,7 +1372,7 @@ collections {
                                type: TEXT;
                                mouse_events: 0;
                                scale: 1;
-                              description {
+                              description { 
                                                state: "default" 0.0;
                                      rel1 {
                                                        to: "label.bg";
@@ -1402,7 +1402,7 @@ collections {
                                                align: 0.5 0.5;
                                        rel1.to_x: "elm.padding.left";
                                        rel2.to_x: "elm.padding.right";
-                               }
+                               }               
                       }
                       BEAT_GENLIST_PART_DISCLIP
               }
index 310d55379a17179ad270288e8f9b76e5b16c6805..20c29d3e3d51b7bb7529e418cfb6c1249de45004 100644 (file)
@@ -1,7 +1,8 @@
-taskmanager (0.14.2-0) unstable; urgency=low
+taskmanager (0.14.2-1) oneiric; urgency=low
 
-  * released.
-  * Git: pkgs/t/taskmanager
-  * Tag: taskmanager_0.14.2-0
+  * Apply open code
+  * Git : apps/home/taskmanager
+  * Tag : taskmanager_0.14.2-1
+
+ -- Hong Kwon <hhh.kwon@samsung.com>  Mon, 13 Aug 2012 19:47:16 +0900
 
- -- jeesun Kim <iamjs.kim@samsung.com>  Fri, 17 Feb 2012 11:00:00 +0900
index 803ef355716519d545f423505fe1405ba2819929..86b99151baf294a5b80ba0cd2a639ede590fdf56 100644 (file)
@@ -1,7 +1,7 @@
 Source: taskmanager
 Section: devel
 Priority: extra
-Maintainer: Jeesun Kim <iamjs.kim@samsung.com>
+Maintainer: Junghyun Kim <jh1114.kim>, hhh.kwon <hhh.kwon@samsung.com>
 Uploaders: Noha Park <noha.park@samsung.com>
 Build-Depends: debhelper (>= 5), libappcore-efl-dev, libelm-dev, libaul-1-dev, libslp-utilx-dev, librua-dev, libslp-sysman-dev, libail-0-dev, dlog-dev
 Standards-Version: 3.7.2
diff --git a/debian/copyright b/debian/copyright
deleted file mode 100755 (executable)
index e36ecdf..0000000
+++ /dev/null
@@ -1,6 +0,0 @@
-Copyright (c) 2000 - 2012 Samsung Electronics Co., Ltd All Rights Reserved
-
-PROPRIETARY/CONFIDENTIAL
-
-This software is the confidential and proprietary information of SAMSUNG ELECTRONICS ("Confidential Information"). You shall not disclose such Confidential Information and shall use it only in accordance with the terms of the license agreement you entered into with SAMSUNG ELECTRONICS.  SAMSUNG make no representations or warranties about the suitability of the software, either express or implied, including but not limited to the implied warranties of merchantability, fitness for a particular purpose, or non-infringement. SAMSUNG shall not be liable for any damages suffered by licensee as a result of using, modifying or distributing this software or its derivatives.
-
diff --git a/debian/dirs b/debian/dirs
deleted file mode 100755 (executable)
index ca882bb..0000000
+++ /dev/null
@@ -1,2 +0,0 @@
-usr/bin
-usr/sbin
diff --git a/debian/docs b/debian/docs
deleted file mode 100755 (executable)
index 7a77580..0000000
+++ /dev/null
@@ -1,2 +0,0 @@
-CMakeCache.txt
-CMakeLists.txt
index d693a62a76cbc8487438da0bc90d5ec0d1ed8c09..31e23a9d97f91aa7c942a45a20fab36e864f05f9 100644 (file)
@@ -1,4 +1,3 @@
-@PREFIX@/bin/*
-@PREFIX@/res/*
-@PREFIX@/data
+@PREFIX@/*
 /opt/share/applications/*
+/opt/share/icons/default/small/org.tizen.taskmgr.png
diff --git a/org.tizen.taskmgr.desktop.in b/org.tizen.taskmgr.desktop.in
deleted file mode 100755 (executable)
index 279af5f..0000000
+++ /dev/null
@@ -1,11 +0,0 @@
-Name=taskmgr
-Exec=@BINDIR@/@PROJECT_NAME@
-Icon=@PKGNAME@.png
-Type=Application
-Comment=taskmgr
-Version=0.1.0
-NoDisplay=true
-X-TIZEN-TaskManage=false
-X-TIZEN-Removable=false
-X-TIZEN-Multiple=false
-
diff --git a/org.tizen.taskmgr.xml b/org.tizen.taskmgr.xml
new file mode 100755 (executable)
index 0000000..3bda8ae
--- /dev/null
@@ -0,0 +1,9 @@
+<?xml version="1.0" encoding="utf-8"?>\r
+<manifest xmlns="http://tizen.org/ns/packages" package="org.tizen.taskmgr" version="0.14.2" install-location="internal-only">\r
+       <label>taskmgr</label>\r
+       <author email="hhh.kwon@samsung.com" href="www.samsung.com">Hong Kwon</author>\r
+       <description>Task Manager</description>\r
+       <ui-application appid="org.tizen.taskmgr" exec="/opt/apps/org.tizen.taskmgr/bin/taskmgr" nodisplay="true" multiple="false" type="capp" taskmanage="false">\r
+               <label>taskmgr</label>\r
+       </ui-application>\r
+</manifest>\r
index 9624d4a2e2c21b8c57e077cd6194f23dc0c9a05d..f696482882d4250fee506ce7fb05077f49eb2493 100644 (file)
@@ -1,9 +1,9 @@
-Name:          org.tizen.taskmgr 
+Name:       org.tizen.taskmgr
 Summary:    Task Manager
-Version:    0.14.1
+Version: 0.14.2
 Release:    1
 Group:      devel
-License:    Flora Software License
+License:    Samsung Proprietary License
 Source0:    %{name}-%{version}.tar.gz
 BuildRequires:  pkgconfig(appcore-efl)
 BuildRequires:  pkgconfig(elementary)
@@ -34,9 +34,14 @@ cmake . -DCMAKE_INSTALL_PREFIX=%{PREFIX}
 make %{?jobs:-j%jobs}
 
 %install
+rm -rf %{buildroot}
 %make_install
 
 %files
+%defattr(-,root,root,-)
 /opt/apps/org.tizen.taskmgr/bin/*
 /opt/apps/org.tizen.taskmgr/res/*
-/opt/share/applications/*
+%attr(-,inhouse,inhouse)
+/opt/apps/org.tizen.taskmgr/data
+/opt/share/packages/*
+/opt/share/icons/default/small/org.tizen.taskmgr.png
index f400fb10e5aa8e77d9e6e3b8eb53f85db0d64b09..a54d9fd53b8425776a39c6162b3ba1fe3215e106 100644 (file)
@@ -1,6 +1,6 @@
 # for i18n
 
-SET(POFILES en_US.po nl.po de.po zh_HK.po zh_CN.po ru.po ko.po zh_TW.po ja.po es.po el.po it.po tr_TR.po pt.po fr.po)
+SET(POFILES ar.po bg.po ca.po cs.po da.po de_DE.po el_GR.po en.po en_US.po es_ES.po fi.po fr_FR.po hi.po hr.po hu.po id.po it_IT.po ja_JP.po ko_KR.po lt.po lv.po ms.po nl_NL.po no.po pl.po pt_PT.po ro.po ru_RU.po sk.po sl.po sr.po sv.po th.po tr_TR.po uk.po vi.po zh_CN.po zh_HK.po zh_TW.po)
 
 SET(MSGFMT "/usr/bin/msgfmt")
 
diff --git a/po/ar.po b/po/ar.po
new file mode 100644 (file)
index 0000000..707e16f
--- /dev/null
+++ b/po/ar.po
@@ -0,0 +1,36 @@
+msgid "IDS_TASKMGR_BUTTON_CLEAR_HISTORY_ABB"
+msgstr "مسح المحفوظات"
+
+msgid "IDS_TASKMGR_BUTTON_CLOSE_ALL_APPLICATIONS"
+msgstr "إغلاق جميع التطبيقات"
+
+msgid "IDS_TASKMGR_HEADER_RUNNING"
+msgstr "تشغيل"
+
+msgid "IDS_TASKMGR_MBODY_NO_APPS_OPEN"
+msgstr "لا توجد تطبيقات مفتوحة"
+
+msgid "IDS_TASKMGR_MBODY_NO_RECENTLY_USED_APPS"
+msgstr "لا توجد تطبيقات مستخدمة مؤخرا"
+
+msgid "IDS_TASKMGR_MBODY_RECENTLY_USED"
+msgstr "المستخدمة مؤخرًا"
+
+msgid "IDS_TASKMGR_POP_CLEAR_ALL_APP_HISTORY_Q"
+msgstr "هل تريد مسح محفوظات التطبيق كافة؟"
+
+msgid "IDS_TASKMGR_POP_CLEAR_PS_HISTORY_Q"
+msgstr "هل تريد مسح محفوظات %s؟"
+
+msgid "IDS_TASKMGR_POP_CLOSE_ALL_APPS_Q_THIS_MAY_CAUSE_DATA_TO_BE_LOST"
+msgstr "هل تريد إغلاق جميع التطبيقات؟ قد يؤدي ذلك إلى فقد البيانات"
+
+msgid "IDS_TASKMGR_POP_CLOSE_PS_APP_Q_THIS_MAY_CAUSE_DATA_TO_BE_LOST"
+msgstr "هل تريد إغلاق تطبيق %s؟ قد يؤدي ذلك إلى فقد البيانات"
+
+msgid "IDS_TASKMGR_POP_UNABLE_TO_OPEN_APPLICATION"
+msgstr "يتعذر فتح التطبيق"
+
+msgid "IDS_TASKMGR_HEADER_TASK_SWITCHER"
+msgstr "محول المهام"
+
diff --git a/po/bg.po b/po/bg.po
new file mode 100644 (file)
index 0000000..5f23713
--- /dev/null
+++ b/po/bg.po
@@ -0,0 +1,36 @@
+msgid "IDS_TASKMGR_BUTTON_CLEAR_HISTORY_ABB"
+msgstr "Изтриване хронол."
+
+msgid "IDS_TASKMGR_BUTTON_CLOSE_ALL_APPLICATIONS"
+msgstr "Затвори всички приложения"
+
+msgid "IDS_TASKMGR_HEADER_RUNNING"
+msgstr "Изпълнява се"
+
+msgid "IDS_TASKMGR_MBODY_NO_APPS_OPEN"
+msgstr "Няма отворени приложения"
+
+msgid "IDS_TASKMGR_MBODY_NO_RECENTLY_USED_APPS"
+msgstr "Няма изп. наскоро прил."
+
+msgid "IDS_TASKMGR_MBODY_RECENTLY_USED"
+msgstr "Последно използван"
+
+msgid "IDS_TASKMGR_POP_CLEAR_ALL_APP_HISTORY_Q"
+msgstr "Изтриване на хронологията на всички приложения?"
+
+msgid "IDS_TASKMGR_POP_CLEAR_PS_HISTORY_Q"
+msgstr "Изтриване на хронологията на %s?"
+
+msgid "IDS_TASKMGR_POP_CLOSE_ALL_APPS_Q_THIS_MAY_CAUSE_DATA_TO_BE_LOST"
+msgstr "Затваряне на всички приложения? Това може да причини загуба на данни"
+
+msgid "IDS_TASKMGR_POP_CLOSE_PS_APP_Q_THIS_MAY_CAUSE_DATA_TO_BE_LOST"
+msgstr "Затваряне на приложението %s? Това може да причини загуба на данни"
+
+msgid "IDS_TASKMGR_POP_UNABLE_TO_OPEN_APPLICATION"
+msgstr "Приложението не може да се отвори"
+
+msgid "IDS_TASKMGR_HEADER_TASK_SWITCHER"
+msgstr "Превключване на задачи"
+
diff --git a/po/ca.po b/po/ca.po
new file mode 100644 (file)
index 0000000..0fc9c8f
--- /dev/null
+++ b/po/ca.po
@@ -0,0 +1,36 @@
+msgid "IDS_TASKMGR_BUTTON_CLEAR_HISTORY_ABB"
+msgstr "Netejar l'historial"
+
+msgid "IDS_TASKMGR_BUTTON_CLOSE_ALL_APPLICATIONS"
+msgstr "Tancar totes les aplicacions"
+
+msgid "IDS_TASKMGR_HEADER_RUNNING"
+msgstr "En funcionament"
+
+msgid "IDS_TASKMGR_MBODY_NO_APPS_OPEN"
+msgstr "Cap aplicació oberta"
+
+msgid "IDS_TASKMGR_MBODY_NO_RECENTLY_USED_APPS"
+msgstr "Cap aplic utilitz fa poc"
+
+msgid "IDS_TASKMGR_MBODY_RECENTLY_USED"
+msgstr "Utilitzats recentment"
+
+msgid "IDS_TASKMGR_POP_CLEAR_ALL_APP_HISTORY_Q"
+msgstr "Esborrar tot l'historial d'aplicacions?"
+
+msgid "IDS_TASKMGR_POP_CLEAR_PS_HISTORY_Q"
+msgstr "Esborrar l'historial de %s?"
+
+msgid "IDS_TASKMGR_POP_CLOSE_ALL_APPS_Q_THIS_MAY_CAUSE_DATA_TO_BE_LOST"
+msgstr "Tancar totes les aplicacions? Aquesta acció pot fer que es perdin dades"
+
+msgid "IDS_TASKMGR_POP_CLOSE_PS_APP_Q_THIS_MAY_CAUSE_DATA_TO_BE_LOST"
+msgstr "Tancar l'aplicació %s? Aquesta acció pot fer que es perdin dades"
+
+msgid "IDS_TASKMGR_POP_UNABLE_TO_OPEN_APPLICATION"
+msgstr "No es pot obrir l'aplicació"
+
+msgid "IDS_TASKMGR_HEADER_TASK_SWITCHER"
+msgstr "Commutador de tasques"
+
diff --git a/po/cs.po b/po/cs.po
new file mode 100644 (file)
index 0000000..2b292d5
--- /dev/null
+++ b/po/cs.po
@@ -0,0 +1,36 @@
+msgid "IDS_TASKMGR_BUTTON_CLEAR_HISTORY_ABB"
+msgstr "Smazat historii"
+
+msgid "IDS_TASKMGR_BUTTON_CLOSE_ALL_APPLICATIONS"
+msgstr "Ukončit všechny aplikace"
+
+msgid "IDS_TASKMGR_HEADER_RUNNING"
+msgstr "Spuštěno"
+
+msgid "IDS_TASKMGR_MBODY_NO_APPS_OPEN"
+msgstr "Žádné otevřené aplikace"
+
+msgid "IDS_TASKMGR_MBODY_NO_RECENTLY_USED_APPS"
+msgstr "Žádné použité aplikace"
+
+msgid "IDS_TASKMGR_MBODY_RECENTLY_USED"
+msgstr "Poslední použitý"
+
+msgid "IDS_TASKMGR_POP_CLEAR_ALL_APP_HISTORY_Q"
+msgstr "Smazat historii všech aplikací?"
+
+msgid "IDS_TASKMGR_POP_CLEAR_PS_HISTORY_Q"
+msgstr "Smazat historii %s?"
+
+msgid "IDS_TASKMGR_POP_CLOSE_ALL_APPS_Q_THIS_MAY_CAUSE_DATA_TO_BE_LOST"
+msgstr "Ukončit všechny aplikace? Může dojít ke ztrátě dat"
+
+msgid "IDS_TASKMGR_POP_CLOSE_PS_APP_Q_THIS_MAY_CAUSE_DATA_TO_BE_LOST"
+msgstr "Ukončit aplikaci %s? Může dojít ke ztrátě dat"
+
+msgid "IDS_TASKMGR_POP_UNABLE_TO_OPEN_APPLICATION"
+msgstr "Aplikaci se nepodařilo otevřít"
+
+msgid "IDS_TASKMGR_HEADER_TASK_SWITCHER"
+msgstr "Přepínač úloh"
+
diff --git a/po/da.po b/po/da.po
new file mode 100644 (file)
index 0000000..589fc55
--- /dev/null
+++ b/po/da.po
@@ -0,0 +1,36 @@
+msgid "IDS_TASKMGR_BUTTON_CLEAR_HISTORY_ABB"
+msgstr "Ryd historik"
+
+msgid "IDS_TASKMGR_BUTTON_CLOSE_ALL_APPLICATIONS"
+msgstr "Luk alle programmer"
+
+msgid "IDS_TASKMGR_HEADER_RUNNING"
+msgstr "Kører"
+
+msgid "IDS_TASKMGR_MBODY_NO_APPS_OPEN"
+msgstr "Ingen åbne programmer"
+
+msgid "IDS_TASKMGR_MBODY_NO_RECENTLY_USED_APPS"
+msgstr "Ingen sen. brugte progr."
+
+msgid "IDS_TASKMGR_MBODY_RECENTLY_USED"
+msgstr "Senest brugt"
+
+msgid "IDS_TASKMGR_POP_CLEAR_ALL_APP_HISTORY_Q"
+msgstr "Slet al programhistorik?"
+
+msgid "IDS_TASKMGR_POP_CLEAR_PS_HISTORY_Q"
+msgstr "Slet %s historik?"
+
+msgid "IDS_TASKMGR_POP_CLOSE_ALL_APPS_Q_THIS_MAY_CAUSE_DATA_TO_BE_LOST"
+msgstr "Lukke alle programmer? Dette kan medføre tab af data"
+
+msgid "IDS_TASKMGR_POP_CLOSE_PS_APP_Q_THIS_MAY_CAUSE_DATA_TO_BE_LOST"
+msgstr "Luk %s program? Dette kan medføre tab af data"
+
+msgid "IDS_TASKMGR_POP_UNABLE_TO_OPEN_APPLICATION"
+msgstr "Kan ikke åbne program"
+
+msgid "IDS_TASKMGR_HEADER_TASK_SWITCHER"
+msgstr "Opgaveskifter"
+
diff --git a/po/de.po b/po/de.po
deleted file mode 100644 (file)
index 2610ce0..0000000
--- a/po/de.po
+++ /dev/null
@@ -1,95 +0,0 @@
-msgid "IDS_TASKMGR_BODY_APPLICATION"
-msgstr "Anwendung"
-
-msgid "IDS_TASKMGR_BUTTON_CLEAR_ALL"
-msgstr "Alle löschen"
-
-msgid "IDS_TASKMGR_HEADER_TASK_SWITCHER"
-msgstr "Task-Switcher"
-
-msgid "IDS_TASKMGR_POP_CLEARING_HISTORY_ING"
-msgstr "Verlauf wird gelöscht..."
-
-msgid "IDS_TASKMGR_POP_EXITING_APPLICATIONS_ING"
-msgstr "Anwendungen werden beendet..."
-
-msgid "IDS_TASKMGR_POP_EXITING_APPLICATION_ING"
-msgstr "Anwendung wird beendet..."
-
-msgid "IDS_TASKMGR_POP_EXIT_ALL_APPLICATIONS_Q"
-msgstr "Alle Anwendungen beenden?"
-
-msgid "IDS_TASKMGR_POP_EXIT_APPLICATION_Q"
-msgstr "Anwendung beenden?"
-
-msgid "IDS_TASKMGR_POP_NO_APPLICATIONS_RUNNING"
-msgstr "Keine laufenden Anwendungen"
-
-msgid "IDS_TASKMGR_POP_NO_HISTORY_TO_CLEAR"
-msgstr "Kein zu löschender Verlauf"
-
-msgid "IDS_COM_BODY_END"
-msgstr "Beenden"
-
-msgid "IDS_COM_OPT_DELETE"
-msgstr "Löschen"
-
-msgid "IDS_COM_POP_CANCEL"
-msgstr "Abbrechen"
-
-msgid "IDS_COM_SK3_END_ALL_APPLICATIONS"
-msgstr "Alle Anwend. beenden"
-
-msgid "IDS_BMG_POP_NO_TASKS"
-msgstr "Keine Aufgaben"
-
-msgid "IDS_ST_BODY_IN_USE"
-msgstr "Wird bereits verwendet"
-
-msgid "IDS_MUSIC_OPT_HISTORY"
-msgstr "Verlauf"
-
-msgid "IDS_TASKMGR_NO_RUNNING_TASK"
-msgstr "No running task"
-
-msgid "IDS_TASKMGR_NO_TASK_HISTORY"
-msgstr "No task history"
-
-msgid "IDS_TASKMGR_CANNOT_LAUNCH_APPLICATION"
-msgstr "Cannot launch application"
-
-msgid "IDS_TASKMGR_END_ALL_TASKS"
-msgstr "End all tasks"
-
-msgid "IDS_TASKMGR_DELETE_ALL_HISTORY"
-msgstr "Delete all history"
-
-msgid "IDS_TASKMGR_INFO_MESSAGE"
-msgstr "Select a task which you wish to return to from a task list."
-
-msgid "IDS_TASKMGR_WARNNING_TERMINATE_ALL_TASKS"
-msgstr "Terminate all tasks?<br><br>This may cause data loss!"
-
-msgid "IDS_TASKMGR_ASK_TERMINATE_TASK"
-msgstr "Are you sure to terminate<br> %s task?<br><br>This may cause data loss!"
-
-msgid "IDS_TASKMGR_ASK_CLEAR_HISTORY"
-msgstr "Are you sure to clear<br> %s history?"
-
-msgid "IDS_TASKMGR_DELETING_HISTORY"
-msgstr "Deleting history!"
-
-msgid "IDS_TASKMGR_ASK_DELETE_ALL_HISTORY"
-msgstr "Delete all task history?"
-
-msgid "IDS_TASKMGR_TERMINATING_TASK"
-msgstr "Terminating task!"
-
-msgid "IDS_TASKMGR_TERMINATING_ALL_TASKS"
-msgstr "Terminating all tasks!"
-
-msgid "IDS_TASKMGR_NO_TASK_TO_TERMINATE"
-msgstr "No task to terminate!"
-
-msgid "IDS_TASKMGR_NO_TASK"
-msgstr "No task"
diff --git a/po/de_DE.po b/po/de_DE.po
new file mode 100644 (file)
index 0000000..4a8c808
--- /dev/null
@@ -0,0 +1,36 @@
+msgid "IDS_TASKMGR_BUTTON_CLEAR_HISTORY_ABB"
+msgstr "Verlauf löschen"
+
+msgid "IDS_TASKMGR_BUTTON_CLOSE_ALL_APPLICATIONS"
+msgstr "Alle Anwendungen schließen."
+
+msgid "IDS_TASKMGR_HEADER_RUNNING"
+msgstr "Ausführen"
+
+msgid "IDS_TASKMGR_MBODY_NO_APPS_OPEN"
+msgstr "Keine Apps geöffnet"
+
+msgid "IDS_TASKMGR_MBODY_NO_RECENTLY_USED_APPS"
+msgstr "Keine kürzli. verw. Apps"
+
+msgid "IDS_TASKMGR_MBODY_RECENTLY_USED"
+msgstr "Kürzlich verwendet"
+
+msgid "IDS_TASKMGR_POP_CLEAR_ALL_APP_HISTORY_Q"
+msgstr "Verlauf für alle Anwendungen löschen?"
+
+msgid "IDS_TASKMGR_POP_CLEAR_PS_HISTORY_Q"
+msgstr "%s-Verlauf löschen?"
+
+msgid "IDS_TASKMGR_POP_CLOSE_ALL_APPS_Q_THIS_MAY_CAUSE_DATA_TO_BE_LOST"
+msgstr "Alle Anwendungen schließen? Dadurch gehen möglicherweise Daten verloren."
+
+msgid "IDS_TASKMGR_POP_CLOSE_PS_APP_Q_THIS_MAY_CAUSE_DATA_TO_BE_LOST"
+msgstr "Anwendung %s schließen? Dadurch gehen möglicherweise Daten verloren."
+
+msgid "IDS_TASKMGR_POP_UNABLE_TO_OPEN_APPLICATION"
+msgstr "Öffnen der Anwendung nicht möglich."
+
+msgid "IDS_TASKMGR_HEADER_TASK_SWITCHER"
+msgstr "Task-Switcher"
+
diff --git a/po/el.po b/po/el.po
deleted file mode 100644 (file)
index 91b1e58..0000000
--- a/po/el.po
+++ /dev/null
@@ -1,95 +0,0 @@
-msgid "IDS_TASKMGR_BODY_APPLICATION"
-msgstr "Εφαρμογή"
-
-msgid "IDS_TASKMGR_BUTTON_CLEAR_ALL"
-msgstr "Διαγραφή όλων"
-
-msgid "IDS_TASKMGR_HEADER_TASK_SWITCHER"
-msgstr "Εφαρμογή εναλλαγής εργασιών"
-
-msgid "IDS_TASKMGR_POP_CLEARING_HISTORY_ING"
-msgstr "Εκκαθάριση ιστορικού..."
-
-msgid "IDS_TASKMGR_POP_EXITING_APPLICATIONS_ING"
-msgstr "Έξοδος από τις εφαρμογές..."
-
-msgid "IDS_TASKMGR_POP_EXITING_APPLICATION_ING"
-msgstr "Έξοδος από την εφαρμογή..."
-
-msgid "IDS_TASKMGR_POP_EXIT_ALL_APPLICATIONS_Q"
-msgstr "Έξοδος από όλες τις εφαρμογές;"
-
-msgid "IDS_TASKMGR_POP_EXIT_APPLICATION_Q"
-msgstr "Έξοδος από την εφαρμογή;"
-
-msgid "IDS_TASKMGR_POP_NO_APPLICATIONS_RUNNING"
-msgstr "Δεν εκτελούνται εφαρμογές"
-
-msgid "IDS_TASKMGR_POP_NO_HISTORY_TO_CLEAR"
-msgstr "Δεν υπάρχει ιστορικό προς εκκαθάριση"
-
-msgid "IDS_COM_BODY_END"
-msgstr "Λήξη"
-
-msgid "IDS_COM_OPT_DELETE"
-msgstr "Διαγραφή"
-
-msgid "IDS_COM_POP_CANCEL"
-msgstr "Ακύρωση"
-
-msgid "IDS_COM_SK3_END_ALL_APPLICATIONS"
-msgstr "Τερματισμός όλων"
-
-msgid "IDS_BMG_POP_NO_TASKS"
-msgstr "Καμία εργασία"
-
-msgid "IDS_ST_BODY_IN_USE"
-msgstr "Εν χρήσει"
-
-msgid "IDS_MUSIC_OPT_HISTORY"
-msgstr "Ιστορικό"
-
-msgid "IDS_TASKMGR_NO_RUNNING_TASK"
-msgstr "No running task"
-
-msgid "IDS_TASKMGR_NO_TASK_HISTORY"
-msgstr "No task history"
-
-msgid "IDS_TASKMGR_CANNOT_LAUNCH_APPLICATION"
-msgstr "Cannot launch application"
-
-msgid "IDS_TASKMGR_END_ALL_TASKS"
-msgstr "End all tasks"
-
-msgid "IDS_TASKMGR_DELETE_ALL_HISTORY"
-msgstr "Delete all history"
-
-msgid "IDS_TASKMGR_INFO_MESSAGE"
-msgstr "Select a task which you wish to return to from a task list."
-
-msgid "IDS_TASKMGR_WARNNING_TERMINATE_ALL_TASKS"
-msgstr "Terminate all tasks?<br><br>This may cause data loss!"
-
-msgid "IDS_TASKMGR_ASK_TERMINATE_TASK"
-msgstr "Are you sure to terminate<br> %s task?<br><br>This may cause data loss!"
-
-msgid "IDS_TASKMGR_ASK_CLEAR_HISTORY"
-msgstr "Are you sure to clear<br> %s history?"
-
-msgid "IDS_TASKMGR_DELETING_HISTORY"
-msgstr "Deleting history!"
-
-msgid "IDS_TASKMGR_ASK_DELETE_ALL_HISTORY"
-msgstr "Delete all task history?"
-
-msgid "IDS_TASKMGR_TERMINATING_TASK"
-msgstr "Terminating task!"
-
-msgid "IDS_TASKMGR_TERMINATING_ALL_TASKS"
-msgstr "Terminating all tasks!"
-
-msgid "IDS_TASKMGR_NO_TASK_TO_TERMINATE"
-msgstr "No task to terminate!"
-
-msgid "IDS_TASKMGR_NO_TASK"
-msgstr "No task"
diff --git a/po/el_GR.po b/po/el_GR.po
new file mode 100644 (file)
index 0000000..c05eafe
--- /dev/null
@@ -0,0 +1,36 @@
+msgid "IDS_TASKMGR_BUTTON_CLEAR_HISTORY_ABB"
+msgstr "Εκκαθ. ιστορικού"
+
+msgid "IDS_TASKMGR_BUTTON_CLOSE_ALL_APPLICATIONS"
+msgstr "Κλείσιμο όλων των εφαρμογών"
+
+msgid "IDS_TASKMGR_HEADER_RUNNING"
+msgstr "Σε εκτέλεση"
+
+msgid "IDS_TASKMGR_MBODY_NO_APPS_OPEN"
+msgstr "Καμία ανοιχτή εφαρμογή"
+
+msgid "IDS_TASKMGR_MBODY_NO_RECENTLY_USED_APPS"
+msgstr "Καμία πρόσφ. χρησ. εφαρ."
+
+msgid "IDS_TASKMGR_MBODY_RECENTLY_USED"
+msgstr "Χρησιμοποιήθηκε πρόσφατα"
+
+msgid "IDS_TASKMGR_POP_CLEAR_ALL_APP_HISTORY_Q"
+msgstr "Εκκαθάριση ιστορικού όλων των εφαρμογών;"
+
+msgid "IDS_TASKMGR_POP_CLEAR_PS_HISTORY_Q"
+msgstr "Εκκαθάριση ιστορικού %s;"
+
+msgid "IDS_TASKMGR_POP_CLOSE_ALL_APPS_Q_THIS_MAY_CAUSE_DATA_TO_BE_LOST"
+msgstr "Να κλείσουν όλες οι εφαρμογές; Αυτό ενδέχεται να προκαλέσει την απώλεια δεδομένων"
+
+msgid "IDS_TASKMGR_POP_CLOSE_PS_APP_Q_THIS_MAY_CAUSE_DATA_TO_BE_LOST"
+msgstr "Να κλείσει η εφαρμογή %s; Αυτό ενδέχεται να προκαλέσει την απώλεια δεδομένων"
+
+msgid "IDS_TASKMGR_POP_UNABLE_TO_OPEN_APPLICATION"
+msgstr "Δεν είναι δυνατό το άνοιγμα της εφαρμογής"
+
+msgid "IDS_TASKMGR_HEADER_TASK_SWITCHER"
+msgstr "Εφαρμογή εναλλαγής εργασιών"
+
diff --git a/po/en.po b/po/en.po
new file mode 100644 (file)
index 0000000..b84af25
--- /dev/null
+++ b/po/en.po
@@ -0,0 +1,36 @@
+msgid "IDS_TASKMGR_BUTTON_CLEAR_HISTORY_ABB"
+msgstr "Clear history"
+
+msgid "IDS_TASKMGR_BUTTON_CLOSE_ALL_APPLICATIONS"
+msgstr "Close all applications"
+
+msgid "IDS_TASKMGR_HEADER_RUNNING"
+msgstr "Running"
+
+msgid "IDS_TASKMGR_MBODY_NO_APPS_OPEN"
+msgstr "No apps open"
+
+msgid "IDS_TASKMGR_MBODY_NO_RECENTLY_USED_APPS"
+msgstr "No recently used apps"
+
+msgid "IDS_TASKMGR_MBODY_RECENTLY_USED"
+msgstr "Recently used"
+
+msgid "IDS_TASKMGR_POP_CLEAR_ALL_APP_HISTORY_Q"
+msgstr "Clear all app history?"
+
+msgid "IDS_TASKMGR_POP_CLEAR_PS_HISTORY_Q"
+msgstr "Clear %s history?"
+
+msgid "IDS_TASKMGR_POP_CLOSE_ALL_APPS_Q_THIS_MAY_CAUSE_DATA_TO_BE_LOST"
+msgstr "Close all apps? This may cause data to be lost"
+
+msgid "IDS_TASKMGR_POP_CLOSE_PS_APP_Q_THIS_MAY_CAUSE_DATA_TO_BE_LOST"
+msgstr "Close %s app? This may cause data to be lost"
+
+msgid "IDS_TASKMGR_POP_UNABLE_TO_OPEN_APPLICATION"
+msgstr "Unable to open application"
+
+msgid "IDS_TASKMGR_HEADER_TASK_SWITCHER"
+msgstr "Task switcher"
+
diff --git a/po/en_GB.po b/po/en_GB.po
deleted file mode 100644 (file)
index ec18206..0000000
+++ /dev/null
@@ -1,104 +0,0 @@
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
-#
-#, fuzzy
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-10-27 10:23+0900\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=CHARSET\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/taskmgr_tm.c:40
-msgid "In use"
-msgstr ""
-
-#: src/taskmgr_tm.c:40
-msgid "History"
-msgstr ""
-
-#: src/taskmgr_tm.c:115
-msgid ""
-" <br>  Select a task<br>  you wish to return to<br>  from a task list.<br> "
-msgstr ""
-
-#: src/taskmgr_tm.c:618
-msgid "Terminating all tasks!"
-msgstr ""
-
-#: src/taskmgr_tm.c:633
-msgid "No task to terminate!"
-msgstr ""
-
-#: src/taskmgr_tm.c:643
-msgid "Terminate all tasks?<br><br>This may cause data loss!"
-msgstr ""
-
-#: src/taskmgr_tm.c:644 src/taskmgr_tm.c:699 src/taskmgr_tm.c:769
-#: src/taskmgr_tm.c:832
-msgid "IDS_COM_SK_OK"
-msgstr ""
-
-#: src/taskmgr_tm.c:644 src/taskmgr_tm.c:699 src/taskmgr_tm.c:769
-#: src/taskmgr_tm.c:832
-msgid "Cancel"
-msgstr ""
-
-#: src/taskmgr_tm.c:673
-msgid "Deleting history!"
-msgstr ""
-
-#: src/taskmgr_tm.c:688
-msgid "No history to clear!"
-msgstr ""
-
-#: src/taskmgr_tm.c:698
-msgid "Delete all task history?"
-msgstr ""
-
-#: src/taskmgr_tm.c:737
-msgid "Terminating task!"
-msgstr ""
-
-#: src/taskmgr_tm.c:861
-msgid "No running task"
-msgstr ""
-
-#: src/taskmgr_tm.c:889
-msgid "No task history"
-msgstr ""
-
-#: src/taskmgr_tm.c:929
-msgid "Can not launch application!"
-msgstr ""
-
-#: src/taskmgr_tm.c:973
-msgid "End"
-msgstr ""
-
-#: src/taskmgr_tm.c:981
-msgid "Delete"
-msgstr ""
-
-#: src/taskmgr_tm.c:1028
-msgid "End all tasks"
-msgstr ""
-
-#: src/taskmgr_tm.c:1053
-msgid "Delete all history"
-msgstr ""
-
-#: src/taskmgr_tm.c:1224
-msgid "No task"
-msgstr ""
-
-#: src/taskmgr_tm.c:1244
-msgid "Task Switcher"
-msgstr ""
index 78a42fd10115ecd43aca2aa17be5e997f5e7efbd..b84af25ce7d0ccfa17ab6d61eedd07b4e9a1eba2 100644 (file)
@@ -1,95 +1,36 @@
-msgid "IDS_TASKMGR_BODY_APPLICATION"
-msgstr "Application"
+msgid "IDS_TASKMGR_BUTTON_CLEAR_HISTORY_ABB"
+msgstr "Clear history"
 
-msgid "IDS_TASKMGR_BUTTON_CLEAR_ALL"
-msgstr "Clear all"
+msgid "IDS_TASKMGR_BUTTON_CLOSE_ALL_APPLICATIONS"
+msgstr "Close all applications"
 
-msgid "IDS_TASKMGR_HEADER_TASK_SWITCHER"
-msgstr "Task switcher"
-
-msgid "IDS_TASKMGR_POP_CLEARING_HISTORY_ING"
-msgstr "Clearing history..."
-
-msgid "IDS_TASKMGR_POP_EXITING_APPLICATIONS_ING"
-msgstr "Exiting applications..."
-
-msgid "IDS_TASKMGR_POP_EXITING_APPLICATION_ING"
-msgstr "Exiting application..."
-
-msgid "IDS_TASKMGR_POP_EXIT_ALL_APPLICATIONS_Q"
-msgstr "Exit all applications?"
-
-msgid "IDS_TASKMGR_POP_EXIT_APPLICATION_Q"
-msgstr "Exit application?"
-
-msgid "IDS_TASKMGR_POP_NO_APPLICATIONS_RUNNING"
-msgstr "No applications running"
-
-msgid "IDS_TASKMGR_POP_NO_HISTORY_TO_CLEAR"
-msgstr "No history to clear"
-
-msgid "IDS_COM_BODY_END"
-msgstr "End"
-
-msgid "IDS_COM_OPT_DELETE"
-msgstr "Delete"
-
-msgid "IDS_COM_POP_CANCEL"
-msgstr "Cancel"
+msgid "IDS_TASKMGR_HEADER_RUNNING"
+msgstr "Running"
 
-msgid "IDS_COM_SK3_END_ALL_APPLICATIONS"
-msgstr "End all applications"
+msgid "IDS_TASKMGR_MBODY_NO_APPS_OPEN"
+msgstr "No apps open"
 
-msgid "IDS_BMG_POP_NO_TASKS"
-msgstr "No tasks"
+msgid "IDS_TASKMGR_MBODY_NO_RECENTLY_USED_APPS"
+msgstr "No recently used apps"
 
-msgid "IDS_ST_BODY_IN_USE"
-msgstr "In use"
+msgid "IDS_TASKMGR_MBODY_RECENTLY_USED"
+msgstr "Recently used"
 
-msgid "IDS_MUSIC_OPT_HISTORY"
-msgstr "History"
+msgid "IDS_TASKMGR_POP_CLEAR_ALL_APP_HISTORY_Q"
+msgstr "Clear all app history?"
 
-msgid "IDS_TASKMGR_NO_RUNNING_TASK"
-msgstr "No running task"
+msgid "IDS_TASKMGR_POP_CLEAR_PS_HISTORY_Q"
+msgstr "Clear %s history?"
 
-msgid "IDS_TASKMGR_NO_TASK_HISTORY"
-msgstr "No task history"
+msgid "IDS_TASKMGR_POP_CLOSE_ALL_APPS_Q_THIS_MAY_CAUSE_DATA_TO_BE_LOST"
+msgstr "Close all apps? This may cause data to be lost"
 
-msgid "IDS_TASKMGR_CANNOT_LAUNCH_APPLICATION"
-msgstr "Cannot launch application"
+msgid "IDS_TASKMGR_POP_CLOSE_PS_APP_Q_THIS_MAY_CAUSE_DATA_TO_BE_LOST"
+msgstr "Close %s app? This may cause data to be lost"
 
-msgid "IDS_TASKMGR_END_ALL_TASKS"
-msgstr "End all tasks"
+msgid "IDS_TASKMGR_POP_UNABLE_TO_OPEN_APPLICATION"
+msgstr "Unable to open application"
 
-msgid "IDS_TASKMGR_DELETE_ALL_HISTORY"
-msgstr "Delete all history"
-
-msgid "IDS_TASKMGR_INFO_MESSAGE"
-msgstr "Select a task which you wish to return to from a task list"
-
-msgid "IDS_TASKMGR_WARNNING_TERMINATE_ALL_TASKS"
-msgstr "Terminate all tasks?<br>This may cause data loss!"
-
-msgid "IDS_TASKMGR_ASK_TERMINATE_TASK"
-msgstr "Are you sure to terminate %s task?<br>This may cause data loss!"
-
-msgid "IDS_TASKMGR_ASK_CLEAR_HISTORY"
-msgstr "Are you sure to clear %s history?"
-
-msgid "IDS_TASKMGR_DELETING_HISTORY"
-msgstr "Deleting history!"
-
-msgid "IDS_TASKMGR_ASK_DELETE_ALL_HISTORY"
-msgstr "Delete all task history?"
-
-msgid "IDS_TASKMGR_TERMINATING_TASK"
-msgstr "Terminating task!"
-
-msgid "IDS_TASKMGR_TERMINATING_ALL_TASKS"
-msgstr "Terminating all tasks!"
-
-msgid "IDS_TASKMGR_NO_TASK_TO_TERMINATE"
-msgstr "No task to terminate!"
+msgid "IDS_TASKMGR_HEADER_TASK_SWITCHER"
+msgstr "Task switcher"
 
-msgid "IDS_TASKMGR_NO_TASK"
-msgstr "No task"
diff --git a/po/es.po b/po/es.po
deleted file mode 100644 (file)
index a0b765d..0000000
--- a/po/es.po
+++ /dev/null
@@ -1,95 +0,0 @@
-msgid "IDS_TASKMGR_BODY_APPLICATION"
-msgstr "Aplicación"
-
-msgid "IDS_TASKMGR_BUTTON_CLEAR_ALL"
-msgstr "Borrar todo"
-
-msgid "IDS_TASKMGR_HEADER_TASK_SWITCHER"
-msgstr "Conmutador de tareas"
-
-msgid "IDS_TASKMGR_POP_CLEARING_HISTORY_ING"
-msgstr "Borrando historial..."
-
-msgid "IDS_TASKMGR_POP_EXITING_APPLICATIONS_ING"
-msgstr "Saliendo de las aplicaciones..."
-
-msgid "IDS_TASKMGR_POP_EXITING_APPLICATION_ING"
-msgstr "Aplicación existente..."
-
-msgid "IDS_TASKMGR_POP_EXIT_ALL_APPLICATIONS_Q"
-msgstr "¿Salir de todas las aplicaciones?"
-
-msgid "IDS_TASKMGR_POP_EXIT_APPLICATION_Q"
-msgstr "¿Salir de la aplicación?"
-
-msgid "IDS_TASKMGR_POP_NO_APPLICATIONS_RUNNING"
-msgstr "Sin aplicaciones en ejecución"
-
-msgid "IDS_TASKMGR_POP_NO_HISTORY_TO_CLEAR"
-msgstr "No hay ningún historial que borrar"
-
-msgid "IDS_COM_BODY_END"
-msgstr "Finalizar"
-
-msgid "IDS_COM_OPT_DELETE"
-msgstr "Eliminar"
-
-msgid "IDS_COM_POP_CANCEL"
-msgstr "Cancelar"
-
-msgid "IDS_COM_SK3_END_ALL_APPLICATIONS"
-msgstr "Fin todas aplic"
-
-msgid "IDS_BMG_POP_NO_TASKS"
-msgstr "No hay tareas"
-
-msgid "IDS_ST_BODY_IN_USE"
-msgstr "En uso"
-
-msgid "IDS_MUSIC_OPT_HISTORY"
-msgstr "Historial"
-
-msgid "IDS_TASKMGR_NO_RUNNING_TASK"
-msgstr "No running task"
-
-msgid "IDS_TASKMGR_NO_TASK_HISTORY"
-msgstr "No task history"
-
-msgid "IDS_TASKMGR_CANNOT_LAUNCH_APPLICATION"
-msgstr "Cannot launch application"
-
-msgid "IDS_TASKMGR_END_ALL_TASKS"
-msgstr "End all tasks"
-
-msgid "IDS_TASKMGR_DELETE_ALL_HISTORY"
-msgstr "Delete all history"
-
-msgid "IDS_TASKMGR_INFO_MESSAGE"
-msgstr "Select a task which you wish to return to from a task list."
-
-msgid "IDS_TASKMGR_WARNNING_TERMINATE_ALL_TASKS"
-msgstr "Terminate all tasks?<br><br>This may cause data loss!"
-
-msgid "IDS_TASKMGR_ASK_TERMINATE_TASK"
-msgstr "Are you sure to terminate<br> %s task?<br><br>This may cause data loss!"
-
-msgid "IDS_TASKMGR_ASK_CLEAR_HISTORY"
-msgstr "Are you sure to clear<br> %s history?"
-
-msgid "IDS_TASKMGR_DELETING_HISTORY"
-msgstr "Deleting history!"
-
-msgid "IDS_TASKMGR_ASK_DELETE_ALL_HISTORY"
-msgstr "Delete all task history?"
-
-msgid "IDS_TASKMGR_TERMINATING_TASK"
-msgstr "Terminating task!"
-
-msgid "IDS_TASKMGR_TERMINATING_ALL_TASKS"
-msgstr "Terminating all tasks!"
-
-msgid "IDS_TASKMGR_NO_TASK_TO_TERMINATE"
-msgstr "No task to terminate!"
-
-msgid "IDS_TASKMGR_NO_TASK"
-msgstr "No task"
diff --git a/po/es_ES.po b/po/es_ES.po
new file mode 100644 (file)
index 0000000..093c114
--- /dev/null
@@ -0,0 +1,36 @@
+msgid "IDS_TASKMGR_BUTTON_CLEAR_HISTORY_ABB"
+msgstr "Borrar historial"
+
+msgid "IDS_TASKMGR_BUTTON_CLOSE_ALL_APPLICATIONS"
+msgstr "Cerrar todas las aplicaciones"
+
+msgid "IDS_TASKMGR_HEADER_RUNNING"
+msgstr "En uso"
+
+msgid "IDS_TASKMGR_MBODY_NO_APPS_OPEN"
+msgstr "Sin aplicaciones abiertas"
+
+msgid "IDS_TASKMGR_MBODY_NO_RECENTLY_USED_APPS"
+msgstr "Sin aplic usadas recient"
+
+msgid "IDS_TASKMGR_MBODY_RECENTLY_USED"
+msgstr "De uso reciente"
+
+msgid "IDS_TASKMGR_POP_CLEAR_ALL_APP_HISTORY_Q"
+msgstr "¿Borrar todo el historial de aplicaciones?"
+
+msgid "IDS_TASKMGR_POP_CLEAR_PS_HISTORY_Q"
+msgstr "¿Borrar el historial de %s?"
+
+msgid "IDS_TASKMGR_POP_CLOSE_ALL_APPS_Q_THIS_MAY_CAUSE_DATA_TO_BE_LOST"
+msgstr "¿Cerrar todas las aplicaciones? Esta acción puede provocar la pérdida de datos"
+
+msgid "IDS_TASKMGR_POP_CLOSE_PS_APP_Q_THIS_MAY_CAUSE_DATA_TO_BE_LOST"
+msgstr "¿Cerrar la aplicación %s? Esta acción puede provocar la pérdida de datos"
+
+msgid "IDS_TASKMGR_POP_UNABLE_TO_OPEN_APPLICATION"
+msgstr "No se puede abrir la aplicación"
+
+msgid "IDS_TASKMGR_HEADER_TASK_SWITCHER"
+msgstr "Conmutador de tareas"
+
diff --git a/po/fi.po b/po/fi.po
new file mode 100644 (file)
index 0000000..74cc157
--- /dev/null
+++ b/po/fi.po
@@ -0,0 +1,36 @@
+msgid "IDS_TASKMGR_BUTTON_CLEAR_HISTORY_ABB"
+msgstr "Tyhjennä historia"
+
+msgid "IDS_TASKMGR_BUTTON_CLOSE_ALL_APPLICATIONS"
+msgstr "Sulje kaikki sovellukset"
+
+msgid "IDS_TASKMGR_HEADER_RUNNING"
+msgstr "Käynnissä"
+
+msgid "IDS_TASKMGR_MBODY_NO_APPS_OPEN"
+msgstr "Sovelluksia ei ole auki"
+
+msgid "IDS_TASKMGR_MBODY_NO_RECENTLY_USED_APPS"
+msgstr "Viim. käyt. sov. ei ole"
+
+msgid "IDS_TASKMGR_MBODY_RECENTLY_USED"
+msgstr "Viimeksi käytetyt"
+
+msgid "IDS_TASKMGR_POP_CLEAR_ALL_APP_HISTORY_Q"
+msgstr "Tyhjennetäänkö koko sovellushistoria?"
+
+msgid "IDS_TASKMGR_POP_CLEAR_PS_HISTORY_Q"
+msgstr "Tyhjennetäänkö kohteen %s historia?"
+
+msgid "IDS_TASKMGR_POP_CLOSE_ALL_APPS_Q_THIS_MAY_CAUSE_DATA_TO_BE_LOST"
+msgstr "Suljetaanko kaikki sovellukset? Tietoja voidaan menettää"
+
+msgid "IDS_TASKMGR_POP_CLOSE_PS_APP_Q_THIS_MAY_CAUSE_DATA_TO_BE_LOST"
+msgstr "Suljetaanko sovellus %s? Tietoja voidaan menettää"
+
+msgid "IDS_TASKMGR_POP_UNABLE_TO_OPEN_APPLICATION"
+msgstr "Sovellusta ei voi avata"
+
+msgid "IDS_TASKMGR_HEADER_TASK_SWITCHER"
+msgstr "Tehtävänvaihtaja"
+
diff --git a/po/fr.po b/po/fr.po
deleted file mode 100644 (file)
index e514d32..0000000
--- a/po/fr.po
+++ /dev/null
@@ -1,95 +0,0 @@
-msgid "IDS_TASKMGR_BODY_APPLICATION"
-msgstr "Applications"
-
-msgid "IDS_TASKMGR_BUTTON_CLEAR_ALL"
-msgstr "Effacer tout"
-
-msgid "IDS_TASKMGR_HEADER_TASK_SWITCHER"
-msgstr "Gestionnaire de tâches"
-
-msgid "IDS_TASKMGR_POP_CLEARING_HISTORY_ING"
-msgstr "Effacement de l'historique..."
-
-msgid "IDS_TASKMGR_POP_EXITING_APPLICATIONS_ING"
-msgstr "Fermeture des applications..."
-
-msgid "IDS_TASKMGR_POP_EXITING_APPLICATION_ING"
-msgstr "Fermeture de l'application..."
-
-msgid "IDS_TASKMGR_POP_EXIT_ALL_APPLICATIONS_Q"
-msgstr "Quitter toutes les applications ?"
-
-msgid "IDS_TASKMGR_POP_EXIT_APPLICATION_Q"
-msgstr "Quitter l'application ?"
-
-msgid "IDS_TASKMGR_POP_NO_APPLICATIONS_RUNNING"
-msgstr "Aucune application en cours d'exécution"
-
-msgid "IDS_TASKMGR_POP_NO_HISTORY_TO_CLEAR"
-msgstr "Aucun historique à effacer"
-
-msgid "IDS_COM_BODY_END"
-msgstr "Fin"
-
-msgid "IDS_COM_OPT_DELETE"
-msgstr "Supprimer"
-
-msgid "IDS_COM_POP_CANCEL"
-msgstr "Annuler"
-
-msgid "IDS_COM_SK3_END_ALL_APPLICATIONS"
-msgstr "Quitter ttes appli."
-
-msgid "IDS_BMG_POP_NO_TASKS"
-msgstr "Aucune tâche"
-
-msgid "IDS_ST_BODY_IN_USE"
-msgstr "En cours d'utilisation"
-
-msgid "IDS_MUSIC_OPT_HISTORY"
-msgstr "Historique"
-
-msgid "IDS_TASKMGR_NO_RUNNING_TASK"
-msgstr "No running task"
-
-msgid "IDS_TASKMGR_NO_TASK_HISTORY"
-msgstr "No task history"
-
-msgid "IDS_TASKMGR_CANNOT_LAUNCH_APPLICATION"
-msgstr "Cannot launch application"
-
-msgid "IDS_TASKMGR_END_ALL_TASKS"
-msgstr "End all tasks"
-
-msgid "IDS_TASKMGR_DELETE_ALL_HISTORY"
-msgstr "Delete all history"
-
-msgid "IDS_TASKMGR_INFO_MESSAGE"
-msgstr "Select a task which you wish to return to from a task list."
-
-msgid "IDS_TASKMGR_WARNNING_TERMINATE_ALL_TASKS"
-msgstr "Terminate all tasks?<br><br>This may cause data loss!"
-
-msgid "IDS_TASKMGR_ASK_TERMINATE_TASK"
-msgstr "Are you sure to terminate<br> %s task?<br><br>This may cause data loss!"
-
-msgid "IDS_TASKMGR_ASK_CLEAR_HISTORY"
-msgstr "Are you sure to clear<br> %s history?"
-
-msgid "IDS_TASKMGR_DELETING_HISTORY"
-msgstr "Deleting history!"
-
-msgid "IDS_TASKMGR_ASK_DELETE_ALL_HISTORY"
-msgstr "Delete all task history?"
-
-msgid "IDS_TASKMGR_TERMINATING_TASK"
-msgstr "Terminating task!"
-
-msgid "IDS_TASKMGR_TERMINATING_ALL_TASKS"
-msgstr "Terminating all tasks!"
-
-msgid "IDS_TASKMGR_NO_TASK_TO_TERMINATE"
-msgstr "No task to terminate!"
-
-msgid "IDS_TASKMGR_NO_TASK"
-msgstr "No task"
diff --git a/po/fr_FR.po b/po/fr_FR.po
new file mode 100644 (file)
index 0000000..d805672
--- /dev/null
@@ -0,0 +1,36 @@
+msgid "IDS_TASKMGR_BUTTON_CLEAR_HISTORY_ABB"
+msgstr "Effacer historique"
+
+msgid "IDS_TASKMGR_BUTTON_CLOSE_ALL_APPLICATIONS"
+msgstr "Fermer toutes les applications"
+
+msgid "IDS_TASKMGR_HEADER_RUNNING"
+msgstr "Exécution"
+
+msgid "IDS_TASKMGR_MBODY_NO_APPS_OPEN"
+msgstr "Aucune appli ouverte"
+
+msgid "IDS_TASKMGR_MBODY_NO_RECENTLY_USED_APPS"
+msgstr "Auc appli récemment util"
+
+msgid "IDS_TASKMGR_MBODY_RECENTLY_USED"
+msgstr "Récemment utilisée"
+
+msgid "IDS_TASKMGR_POP_CLEAR_ALL_APP_HISTORY_Q"
+msgstr "Effacer l'historique de toutes les applications ?"
+
+msgid "IDS_TASKMGR_POP_CLEAR_PS_HISTORY_Q"
+msgstr "Effacer l'historique %s ?"
+
+msgid "IDS_TASKMGR_POP_CLOSE_ALL_APPS_Q_THIS_MAY_CAUSE_DATA_TO_BE_LOST"
+msgstr "Fermer toutes les applications ? Cela peut entraîner la perte de données"
+
+msgid "IDS_TASKMGR_POP_CLOSE_PS_APP_Q_THIS_MAY_CAUSE_DATA_TO_BE_LOST"
+msgstr "Fermer l'application %s ? Cela peut entraîner la perte de données"
+
+msgid "IDS_TASKMGR_POP_UNABLE_TO_OPEN_APPLICATION"
+msgstr "Impossible d'ouvrir l'application"
+
+msgid "IDS_TASKMGR_HEADER_TASK_SWITCHER"
+msgstr "Gestionnaire de tâches"
+
diff --git a/po/he.po b/po/he.po
new file mode 100644 (file)
index 0000000..cba0842
--- /dev/null
+++ b/po/he.po
@@ -0,0 +1,36 @@
+msgid "IDS_TASKMGR_BUTTON_CLEAR_HISTORY_ABB"
+msgstr "נקה את ההיסטוריה"
+
+msgid "IDS_TASKMGR_BUTTON_CLOSE_ALL_APPLICATIONS"
+msgstr "סגור את כל היישומים"
+
+msgid "IDS_TASKMGR_HEADER_RUNNING"
+msgstr "הפעלה"
+
+msgid "IDS_TASKMGR_MBODY_NO_APPS_OPEN"
+msgstr "אין יישומים פתוחים"
+
+msgid "IDS_TASKMGR_MBODY_NO_RECENTLY_USED_APPS"
+msgstr "אין יישומים אחרונים"
+
+msgid "IDS_TASKMGR_MBODY_RECENTLY_USED"
+msgstr "בוצע שימוש לאחרונה"
+
+msgid "IDS_TASKMGR_POP_CLEAR_ALL_APP_HISTORY_Q"
+msgstr "לנקות את כל היסטוריית היישומים?"
+
+msgid "IDS_TASKMGR_POP_CLEAR_PS_HISTORY_Q"
+msgstr "לנקות את ההיסטוריה של %s?"
+
+msgid "IDS_TASKMGR_POP_CLOSE_ALL_APPS_Q_THIS_MAY_CAUSE_DATA_TO_BE_LOST"
+msgstr "לסגור את כל היישומים? פעולה זו עשויה לגרום לאובדן נתונים"
+
+msgid "IDS_TASKMGR_POP_CLOSE_PS_APP_Q_THIS_MAY_CAUSE_DATA_TO_BE_LOST"
+msgstr "לסגור את היישום %s? פעולה זו עשויה לגרום לאובדן נתונים"
+
+msgid "IDS_TASKMGR_POP_UNABLE_TO_OPEN_APPLICATION"
+msgstr "לא ניתן לפתוח יישום"
+
+msgid "IDS_TASKMGR_HEADER_TASK_SWITCHER"
+msgstr "מחליף משימות"
+
diff --git a/po/hi.po b/po/hi.po
new file mode 100644 (file)
index 0000000..79f4ada
--- /dev/null
+++ b/po/hi.po
@@ -0,0 +1,36 @@
+msgid "IDS_TASKMGR_BUTTON_CLEAR_HISTORY_ABB"
+msgstr "इतिहास साफ़ करें"
+
+msgid "IDS_TASKMGR_BUTTON_CLOSE_ALL_APPLICATIONS"
+msgstr "सभी एप्लीकेशंस बंद करें"
+
+msgid "IDS_TASKMGR_HEADER_RUNNING"
+msgstr "चल रहा है"
+
+msgid "IDS_TASKMGR_MBODY_NO_APPS_OPEN"
+msgstr "कोई ऐप्स खुली नहीं"
+
+msgid "IDS_TASKMGR_MBODY_NO_RECENTLY_USED_APPS"
+msgstr "कोई हाल ही में उपयोग की गई ऐप्स नहीं"
+
+msgid "IDS_TASKMGR_MBODY_RECENTLY_USED"
+msgstr "हाल ही में उपयोग किए"
+
+msgid "IDS_TASKMGR_POP_CLEAR_ALL_APP_HISTORY_Q"
+msgstr "सभी ऐप इतिहास साफ़ करें?"
+
+msgid "IDS_TASKMGR_POP_CLEAR_PS_HISTORY_Q"
+msgstr "%s इतिहास साफ़ करें?"
+
+msgid "IDS_TASKMGR_POP_CLOSE_ALL_APPS_Q_THIS_MAY_CAUSE_DATA_TO_BE_LOST"
+msgstr "सभी ऐप्स बंद करें? इससे डाटा हानि हो सकती है"
+
+msgid "IDS_TASKMGR_POP_CLOSE_PS_APP_Q_THIS_MAY_CAUSE_DATA_TO_BE_LOST"
+msgstr "%s ऐप बंद करें? इससे डाटा हानि हो सकती है"
+
+msgid "IDS_TASKMGR_POP_UNABLE_TO_OPEN_APPLICATION"
+msgstr "एप्लीकेशन खोलने में अक्षम"
+
+msgid "IDS_TASKMGR_HEADER_TASK_SWITCHER"
+msgstr "कार्य स्विचर"
+
diff --git a/po/hr.po b/po/hr.po
new file mode 100644 (file)
index 0000000..6907f81
--- /dev/null
+++ b/po/hr.po
@@ -0,0 +1,36 @@
+msgid "IDS_TASKMGR_BUTTON_CLEAR_HISTORY_ABB"
+msgstr "Obriši povijest"
+
+msgid "IDS_TASKMGR_BUTTON_CLOSE_ALL_APPLICATIONS"
+msgstr "Zatvori sve aplikacije"
+
+msgid "IDS_TASKMGR_HEADER_RUNNING"
+msgstr "Pokrenuto"
+
+msgid "IDS_TASKMGR_MBODY_NO_APPS_OPEN"
+msgstr "Nema otvorenih aplikacija"
+
+msgid "IDS_TASKMGR_MBODY_NO_RECENTLY_USED_APPS"
+msgstr "Nema nedavnih aplikacija"
+
+msgid "IDS_TASKMGR_MBODY_RECENTLY_USED"
+msgstr "Nedavno korišteno"
+
+msgid "IDS_TASKMGR_POP_CLEAR_ALL_APP_HISTORY_Q"
+msgstr "Obrisati svu povijest aplikacija?"
+
+msgid "IDS_TASKMGR_POP_CLEAR_PS_HISTORY_Q"
+msgstr "Obrisati %s povijest?"
+
+msgid "IDS_TASKMGR_POP_CLOSE_ALL_APPS_Q_THIS_MAY_CAUSE_DATA_TO_BE_LOST"
+msgstr "Zatvoriti sve aplikacije? To može uzrokovati gubitak podataka"
+
+msgid "IDS_TASKMGR_POP_CLOSE_PS_APP_Q_THIS_MAY_CAUSE_DATA_TO_BE_LOST"
+msgstr "Zatvoriti %s aplikaciju? To može uzrokovati gubitak podataka"
+
+msgid "IDS_TASKMGR_POP_UNABLE_TO_OPEN_APPLICATION"
+msgstr "Nemoguće otvoriti aplikaciju"
+
+msgid "IDS_TASKMGR_HEADER_TASK_SWITCHER"
+msgstr "Biranje zadatka"
+
diff --git a/po/hu.po b/po/hu.po
new file mode 100644 (file)
index 0000000..a4d3775
--- /dev/null
+++ b/po/hu.po
@@ -0,0 +1,36 @@
+msgid "IDS_TASKMGR_BUTTON_CLEAR_HISTORY_ABB"
+msgstr "Előzmények törlése"
+
+msgid "IDS_TASKMGR_BUTTON_CLOSE_ALL_APPLICATIONS"
+msgstr "Összes alkalmazás bezárása"
+
+msgid "IDS_TASKMGR_HEADER_RUNNING"
+msgstr "Futás"
+
+msgid "IDS_TASKMGR_MBODY_NO_APPS_OPEN"
+msgstr "Nincs megnyitott alk."
+
+msgid "IDS_TASKMGR_MBODY_NO_RECENTLY_USED_APPS"
+msgstr "A legut. alk. list. üres"
+
+msgid "IDS_TASKMGR_MBODY_RECENTLY_USED"
+msgstr "Legutóbb használt"
+
+msgid "IDS_TASKMGR_POP_CLEAR_ALL_APP_HISTORY_Q"
+msgstr "Törli az összes alkalmazás előzményeit?"
+
+msgid "IDS_TASKMGR_POP_CLEAR_PS_HISTORY_Q"
+msgstr "Törli a(z) %s előzményeit?"
+
+msgid "IDS_TASKMGR_POP_CLOSE_ALL_APPS_Q_THIS_MAY_CAUSE_DATA_TO_BE_LOST"
+msgstr "Bezárja az összes alkalmazást? Így adatok veszhetnek el"
+
+msgid "IDS_TASKMGR_POP_CLOSE_PS_APP_Q_THIS_MAY_CAUSE_DATA_TO_BE_LOST"
+msgstr "Bezár %s alkalmazást? Így adatok veszhetnek el"
+
+msgid "IDS_TASKMGR_POP_UNABLE_TO_OPEN_APPLICATION"
+msgstr "Nem lehet megnyitni az alkalmazást"
+
+msgid "IDS_TASKMGR_HEADER_TASK_SWITCHER"
+msgstr "Feladatváltó"
+
diff --git a/po/id.po b/po/id.po
new file mode 100644 (file)
index 0000000..4691dce
--- /dev/null
+++ b/po/id.po
@@ -0,0 +1,36 @@
+msgid "IDS_TASKMGR_BUTTON_CLEAR_HISTORY_ABB"
+msgstr "Hapus riwayat"
+
+msgid "IDS_TASKMGR_BUTTON_CLOSE_ALL_APPLICATIONS"
+msgstr "Tutup semua aplikasi"
+
+msgid "IDS_TASKMGR_HEADER_RUNNING"
+msgstr "Berjalan"
+
+msgid "IDS_TASKMGR_MBODY_NO_APPS_OPEN"
+msgstr "Tdk ada aplikasi terbuka"
+
+msgid "IDS_TASKMGR_MBODY_NO_RECENTLY_USED_APPS"
+msgstr "Tdk ada app yg br dipakai"
+
+msgid "IDS_TASKMGR_MBODY_RECENTLY_USED"
+msgstr "Terakhir digunakan"
+
+msgid "IDS_TASKMGR_POP_CLEAR_ALL_APP_HISTORY_Q"
+msgstr "Hapus semua riwayat aplikasi?"
+
+msgid "IDS_TASKMGR_POP_CLEAR_PS_HISTORY_Q"
+msgstr "Hapus riwayat %s?"
+
+msgid "IDS_TASKMGR_POP_CLOSE_ALL_APPS_Q_THIS_MAY_CAUSE_DATA_TO_BE_LOST"
+msgstr "Tutup semua aplikasi? Ini dapat menyebabkan data hilang"
+
+msgid "IDS_TASKMGR_POP_CLOSE_PS_APP_Q_THIS_MAY_CAUSE_DATA_TO_BE_LOST"
+msgstr "Tutup aplikasi %s? Ini dapat menyebabkan data hilang"
+
+msgid "IDS_TASKMGR_POP_UNABLE_TO_OPEN_APPLICATION"
+msgstr "Tidak dapat membuka aplikasi"
+
+msgid "IDS_TASKMGR_HEADER_TASK_SWITCHER"
+msgstr "Pengalih tugas"
+
diff --git a/po/it.po b/po/it.po
deleted file mode 100644 (file)
index f942354..0000000
--- a/po/it.po
+++ /dev/null
@@ -1,95 +0,0 @@
-msgid "IDS_TASKMGR_BODY_APPLICATION"
-msgstr "Applicazioni"
-
-msgid "IDS_TASKMGR_BUTTON_CLEAR_ALL"
-msgstr "Cancella tutto"
-
-msgid "IDS_TASKMGR_HEADER_TASK_SWITCHER"
-msgstr "Cambia attività"
-
-msgid "IDS_TASKMGR_POP_CLEARING_HISTORY_ING"
-msgstr "Cancellazione cronologia in corso..."
-
-msgid "IDS_TASKMGR_POP_EXITING_APPLICATIONS_ING"
-msgstr "Chiusura delle applicazioni in corso..."
-
-msgid "IDS_TASKMGR_POP_EXITING_APPLICATION_ING"
-msgstr "Chiusura dell'applicazione in corso..."
-
-msgid "IDS_TASKMGR_POP_EXIT_ALL_APPLICATIONS_Q"
-msgstr "Uscire da tutte le applicazioni?"
-
-msgid "IDS_TASKMGR_POP_EXIT_APPLICATION_Q"
-msgstr "Uscire dall'applicazione?"
-
-msgid "IDS_TASKMGR_POP_NO_APPLICATIONS_RUNNING"
-msgstr "Nessuna applicazione in esecuzione"
-
-msgid "IDS_TASKMGR_POP_NO_HISTORY_TO_CLEAR"
-msgstr "Nessuna cronologia da cancellare"
-
-msgid "IDS_COM_BODY_END"
-msgstr "Fine"
-
-msgid "IDS_COM_OPT_DELETE"
-msgstr "Elimina"
-
-msgid "IDS_COM_POP_CANCEL"
-msgstr "Annulla"
-
-msgid "IDS_COM_SK3_END_ALL_APPLICATIONS"
-msgstr "Chiudi tutto"
-
-msgid "IDS_BMG_POP_NO_TASKS"
-msgstr "Nessuna attività"
-
-msgid "IDS_ST_BODY_IN_USE"
-msgstr "Spazio utilizzato"
-
-msgid "IDS_MUSIC_OPT_HISTORY"
-msgstr "Cronologia"
-
-msgid "IDS_TASKMGR_NO_RUNNING_TASK"
-msgstr "No running task"
-
-msgid "IDS_TASKMGR_NO_TASK_HISTORY"
-msgstr "No task history"
-
-msgid "IDS_TASKMGR_CANNOT_LAUNCH_APPLICATION"
-msgstr "Cannot launch application"
-
-msgid "IDS_TASKMGR_END_ALL_TASKS"
-msgstr "End all tasks"
-
-msgid "IDS_TASKMGR_DELETE_ALL_HISTORY"
-msgstr "Delete all history"
-
-msgid "IDS_TASKMGR_INFO_MESSAGE"
-msgstr "Select a task which you wish to return to from a task list."
-
-msgid "IDS_TASKMGR_WARNNING_TERMINATE_ALL_TASKS"
-msgstr "Terminate all tasks?<br><br>This may cause data loss!"
-
-msgid "IDS_TASKMGR_ASK_TERMINATE_TASK"
-msgstr "Are you sure to terminate<br> %s task?<br><br>This may cause data loss!"
-
-msgid "IDS_TASKMGR_ASK_CLEAR_HISTORY"
-msgstr "Are you sure to clear<br> %s history?"
-
-msgid "IDS_TASKMGR_DELETING_HISTORY"
-msgstr "Deleting history!"
-
-msgid "IDS_TASKMGR_ASK_DELETE_ALL_HISTORY"
-msgstr "Delete all task history?"
-
-msgid "IDS_TASKMGR_TERMINATING_TASK"
-msgstr "Terminating task!"
-
-msgid "IDS_TASKMGR_TERMINATING_ALL_TASKS"
-msgstr "Terminating all tasks!"
-
-msgid "IDS_TASKMGR_NO_TASK_TO_TERMINATE"
-msgstr "No task to terminate!"
-
-msgid "IDS_TASKMGR_NO_TASK"
-msgstr "No task"
diff --git a/po/it_IT.po b/po/it_IT.po
new file mode 100644 (file)
index 0000000..b7b4a8a
--- /dev/null
@@ -0,0 +1,36 @@
+msgid "IDS_TASKMGR_BUTTON_CLEAR_HISTORY_ABB"
+msgstr "Cancella cronologia"
+
+msgid "IDS_TASKMGR_BUTTON_CLOSE_ALL_APPLICATIONS"
+msgstr "Chiudi tutte le applicazioni"
+
+msgid "IDS_TASKMGR_HEADER_RUNNING"
+msgstr "In esecuzione"
+
+msgid "IDS_TASKMGR_MBODY_NO_APPS_OPEN"
+msgstr "Nessuna applicaz. aperta"
+
+msgid "IDS_TASKMGR_MBODY_NO_RECENTLY_USED_APPS"
+msgstr "Ness. utilizz. di recente"
+
+msgid "IDS_TASKMGR_MBODY_RECENTLY_USED"
+msgstr "Utilizzato di recente"
+
+msgid "IDS_TASKMGR_POP_CLEAR_ALL_APP_HISTORY_Q"
+msgstr "Cancellare la cronologia di tutte le applicazioni?"
+
+msgid "IDS_TASKMGR_POP_CLEAR_PS_HISTORY_Q"
+msgstr "Cancellare la cronologia di %s?"
+
+msgid "IDS_TASKMGR_POP_CLOSE_ALL_APPS_Q_THIS_MAY_CAUSE_DATA_TO_BE_LOST"
+msgstr "Chiudere tutte le applicazioni? Potrebbe verificarsi la perdita di dati"
+
+msgid "IDS_TASKMGR_POP_CLOSE_PS_APP_Q_THIS_MAY_CAUSE_DATA_TO_BE_LOST"
+msgstr "Chiudere l'applicazione %s? Potrebbe verificarsi la perdita di dati"
+
+msgid "IDS_TASKMGR_POP_UNABLE_TO_OPEN_APPLICATION"
+msgstr "Impossibile aprire l'applicazione"
+
+msgid "IDS_TASKMGR_HEADER_TASK_SWITCHER"
+msgstr "Cambia attività"
+
diff --git a/po/ja.po b/po/ja.po
deleted file mode 100644 (file)
index f803558..0000000
--- a/po/ja.po
+++ /dev/null
@@ -1,95 +0,0 @@
-msgid "IDS_TASKMGR_BODY_APPLICATION"
-msgstr "アプリケーション"
-
-msgid "IDS_TASKMGR_BUTTON_CLEAR_ALL"
-msgstr "全消去"
-
-msgid "IDS_TASKMGR_HEADER_TASK_SWITCHER"
-msgstr "タスク切替"
-
-msgid "IDS_TASKMGR_POP_CLEARING_HISTORY_ING"
-msgstr "履歴消去中..."
-
-msgid "IDS_TASKMGR_POP_EXITING_APPLICATIONS_ING"
-msgstr "アプリケーション​の​終了​中​..."
-
-msgid "IDS_TASKMGR_POP_EXITING_APPLICATION_ING"
-msgstr "アプリケーション​の​終了​中​..."
-
-msgid "IDS_TASKMGR_POP_EXIT_ALL_APPLICATIONS_Q"
-msgstr "全て​の​アプリケーション​を​終了​しますか?"
-
-msgid "IDS_TASKMGR_POP_EXIT_APPLICATION_Q"
-msgstr "アプリケーション​を​終了​しますか?"
-
-msgid "IDS_TASKMGR_POP_NO_APPLICATIONS_RUNNING"
-msgstr "実行中​の​アプリケーション​は​あり​ません"
-
-msgid "IDS_TASKMGR_POP_NO_HISTORY_TO_CLEAR"
-msgstr "消去​する​履歴​が​あり​ません"
-
-msgid "IDS_COM_BODY_END"
-msgstr "終了"
-
-msgid "IDS_COM_OPT_DELETE"
-msgstr "削除"
-
-msgid "IDS_COM_POP_CANCEL"
-msgstr "キャンセル"
-
-msgid "IDS_COM_SK3_END_ALL_APPLICATIONS"
-msgstr "全​アプリケーション​終了"
-
-msgid "IDS_BMG_POP_NO_TASKS"
-msgstr "タスク​は​ありません"
-
-msgid "IDS_ST_BODY_IN_USE"
-msgstr "使用中"
-
-msgid "IDS_MUSIC_OPT_HISTORY"
-msgstr "履歴"
-
-msgid "IDS_TASKMGR_NO_RUNNING_TASK"
-msgstr "No running task"
-
-msgid "IDS_TASKMGR_NO_TASK_HISTORY"
-msgstr "No task history"
-
-msgid "IDS_TASKMGR_CANNOT_LAUNCH_APPLICATION"
-msgstr "Cannot launch application"
-
-msgid "IDS_TASKMGR_END_ALL_TASKS"
-msgstr "End all tasks"
-
-msgid "IDS_TASKMGR_DELETE_ALL_HISTORY"
-msgstr "Delete all history"
-
-msgid "IDS_TASKMGR_INFO_MESSAGE"
-msgstr "Select a task which you wish to return to from a task list."
-
-msgid "IDS_TASKMGR_WARNNING_TERMINATE_ALL_TASKS"
-msgstr "Terminate all tasks?<br><br>This may cause data loss!"
-
-msgid "IDS_TASKMGR_ASK_TERMINATE_TASK"
-msgstr "Are you sure to terminate<br> %s task?<br><br>This may cause data loss!"
-
-msgid "IDS_TASKMGR_ASK_CLEAR_HISTORY"
-msgstr "Are you sure to clear<br> %s history?"
-
-msgid "IDS_TASKMGR_DELETING_HISTORY"
-msgstr "Deleting history!"
-
-msgid "IDS_TASKMGR_ASK_DELETE_ALL_HISTORY"
-msgstr "Delete all task history?"
-
-msgid "IDS_TASKMGR_TERMINATING_TASK"
-msgstr "Terminating task!"
-
-msgid "IDS_TASKMGR_TERMINATING_ALL_TASKS"
-msgstr "Terminating all tasks!"
-
-msgid "IDS_TASKMGR_NO_TASK_TO_TERMINATE"
-msgstr "No task to terminate!"
-
-msgid "IDS_TASKMGR_NO_TASK"
-msgstr "No task"
diff --git a/po/ja_JP.po b/po/ja_JP.po
new file mode 100644 (file)
index 0000000..5748d4a
--- /dev/null
@@ -0,0 +1,36 @@
+msgid "IDS_TASKMGR_BUTTON_CLEAR_HISTORY_ABB"
+msgstr "履歴を​消去"
+
+msgid "IDS_TASKMGR_BUTTON_CLOSE_ALL_APPLICATIONS"
+msgstr "全​アプリを​終了します。"
+
+msgid "IDS_TASKMGR_HEADER_RUNNING"
+msgstr "実行中"
+
+msgid "IDS_TASKMGR_MBODY_NO_APPS_OPEN"
+msgstr "起動アプリはありません。"
+
+msgid "IDS_TASKMGR_MBODY_NO_RECENTLY_USED_APPS"
+msgstr "最近​使った​アプリは​ありません。"
+
+msgid "IDS_TASKMGR_MBODY_RECENTLY_USED"
+msgstr "最近​使用​された​言語"
+
+msgid "IDS_TASKMGR_POP_CLEAR_ALL_APP_HISTORY_Q"
+msgstr "全ての​アプリの​履歴を​消去​しますか?"
+
+msgid "IDS_TASKMGR_POP_CLEAR_PS_HISTORY_Q"
+msgstr "%sの​履歴を​消去​しますか?"
+
+msgid "IDS_TASKMGR_POP_CLOSE_ALL_APPS_Q_THIS_MAY_CAUSE_DATA_TO_BE_LOST"
+msgstr "全ての​アプリを​終了​しますか?​この操作で、​データが​失われる​可能性が​あります。"
+
+msgid "IDS_TASKMGR_POP_CLOSE_PS_APP_Q_THIS_MAY_CAUSE_DATA_TO_BE_LOST"
+msgstr "%sアプリを​終了​しますか?​この操作で、​データが​失われる​可能性が​あります。"
+
+msgid "IDS_TASKMGR_POP_UNABLE_TO_OPEN_APPLICATION"
+msgstr "アプリケーションを​起動​できません。"
+
+msgid "IDS_TASKMGR_HEADER_TASK_SWITCHER"
+msgstr "タスク切替"
+
diff --git a/po/ko.po b/po/ko.po
deleted file mode 100644 (file)
index a620d8e..0000000
--- a/po/ko.po
+++ /dev/null
@@ -1,95 +0,0 @@
-msgid "IDS_TASKMGR_BODY_APPLICATION"
-msgstr "애플리케이션"
-
-msgid "IDS_TASKMGR_BUTTON_CLEAR_ALL"
-msgstr "모두 삭제"
-
-msgid "IDS_TASKMGR_HEADER_TASK_SWITCHER"
-msgstr "작업 전환기"
-
-msgid "IDS_TASKMGR_POP_CLEARING_HISTORY_ING"
-msgstr "기록 삭제 중..."
-
-msgid "IDS_TASKMGR_POP_EXITING_APPLICATIONS_ING"
-msgstr "애플리케이션 종료 중..."
-
-msgid "IDS_TASKMGR_POP_EXITING_APPLICATION_ING"
-msgstr "애플리케이션 종료 중..."
-
-msgid "IDS_TASKMGR_POP_EXIT_ALL_APPLICATIONS_Q"
-msgstr "모든 애플리케이션을 종료할까요?"
-
-msgid "IDS_TASKMGR_POP_EXIT_APPLICATION_Q"
-msgstr "프로그램을 종료할까요?"
-
-msgid "IDS_TASKMGR_POP_NO_APPLICATIONS_RUNNING"
-msgstr "실행 중인 애플리케이션이 없습니다"
-
-msgid "IDS_TASKMGR_POP_NO_HISTORY_TO_CLEAR"
-msgstr "삭제할 기록이 없습니다"
-
-msgid "IDS_COM_BODY_END"
-msgstr "종료"
-
-msgid "IDS_COM_OPT_DELETE"
-msgstr "삭제"
-
-msgid "IDS_COM_POP_CANCEL"
-msgstr "취소"
-
-msgid "IDS_COM_SK3_END_ALL_APPLICATIONS"
-msgstr "모든 프로그램 종료"
-
-msgid "IDS_BMG_POP_NO_TASKS"
-msgstr "작업이 없습니다"
-
-msgid "IDS_ST_BODY_IN_USE"
-msgstr "사용 중"
-
-msgid "IDS_MUSIC_OPT_HISTORY"
-msgstr "히스토리"
-
-msgid "IDS_TASKMGR_NO_RUNNING_TASK"
-msgstr "사용중인 작업이 없습니다"
-
-msgid "IDS_TASKMGR_NO_TASK_HISTORY"
-msgstr "작업 기록이 없습니다"
-
-msgid "IDS_TASKMGR_CANNOT_LAUNCH_APPLICATION"
-msgstr "어플리케이션을 실행할 수 없습니다"
-
-msgid "IDS_TASKMGR_END_ALL_TASKS"
-msgstr "모든 작업 종료"
-
-msgid "IDS_TASKMGR_DELETE_ALL_HISTORY"
-msgstr "모든 작업 기록 삭제"
-
-msgid "IDS_TASKMGR_INFO_MESSAGE"
-msgstr "작업목록에서 실행하고 싶은 작업을 선택하세요"
-
-msgid "IDS_TASKMGR_WARNNING_TERMINATE_ALL_TASKS"
-msgstr "모든 작업을 종료하시겠습니까?<br><br>작업 데이터가 손실될 수 있습니다"
-
-msgid "IDS_TASKMGR_ASK_TERMINATE_TASK"
-msgstr "%s 작업을 종료하시겠습니까?<br><br>작업 데이터가 손실될 수 있습니다"
-
-msgid "IDS_TASKMGR_ASK_CLEAR_HISTORY"
-msgstr "%s 기록을 삭제하겠습니까?"
-
-msgid "IDS_TASKMGR_DELETING_HISTORY"
-msgstr "작업 기록 삭제 중!"
-
-msgid "IDS_TASKMGR_ASK_DELETE_ALL_HISTORY"
-msgstr "모든 작업 기록을 삭제하겠습니까?"
-
-msgid "IDS_TASKMGR_TERMINATING_TASK"
-msgstr "작업 종료 중!"
-
-msgid "IDS_TASKMGR_TERMINATING_ALL_TASKS"
-msgstr "모든 작업 종료 중!"
-
-msgid "IDS_TASKMGR_NO_TASK_TO_TERMINATE"
-msgstr "종료할 작업이 없습니다!"
-
-msgid "IDS_TASKMGR_NO_TASK"
-msgstr "작업이 존재하지 않습니다"
diff --git a/po/ko_KR.po b/po/ko_KR.po
new file mode 100644 (file)
index 0000000..4b72422
--- /dev/null
@@ -0,0 +1,36 @@
+msgid "IDS_TASKMGR_BUTTON_CLEAR_HISTORY_ABB"
+msgstr "기록 삭제"
+
+msgid "IDS_TASKMGR_BUTTON_CLOSE_ALL_APPLICATIONS"
+msgstr "모든 애플리케이션을 종료합니다"
+
+msgid "IDS_TASKMGR_HEADER_RUNNING"
+msgstr "실행"
+
+msgid "IDS_TASKMGR_MBODY_NO_APPS_OPEN"
+msgstr "실행 중인 애플리케이션이 없습니다"
+
+msgid "IDS_TASKMGR_MBODY_NO_RECENTLY_USED_APPS"
+msgstr "최근 사용된 애플리케이션이 없습니다"
+
+msgid "IDS_TASKMGR_MBODY_RECENTLY_USED"
+msgstr "최근 사용"
+
+msgid "IDS_TASKMGR_POP_CLEAR_ALL_APP_HISTORY_Q"
+msgstr "애플리케이션 기록을 모두 삭제할까요?"
+
+msgid "IDS_TASKMGR_POP_CLEAR_PS_HISTORY_Q"
+msgstr "%s 기록을 삭제할까요?"
+
+msgid "IDS_TASKMGR_POP_CLOSE_ALL_APPS_Q_THIS_MAY_CAUSE_DATA_TO_BE_LOST"
+msgstr "애플리케이션을 모두 종료할까요? 데이터가 손실될 수 있습니다"
+
+msgid "IDS_TASKMGR_POP_CLOSE_PS_APP_Q_THIS_MAY_CAUSE_DATA_TO_BE_LOST"
+msgstr "%s 애플리케이션을 종료할까요? 데이터가 손실될 수 있습니다"
+
+msgid "IDS_TASKMGR_POP_UNABLE_TO_OPEN_APPLICATION"
+msgstr "애플리케이션을 실행하지 못하였습니다"
+
+msgid "IDS_TASKMGR_HEADER_TASK_SWITCHER"
+msgstr "작업 전환기"
+
diff --git a/po/lt.po b/po/lt.po
new file mode 100644 (file)
index 0000000..897d8ad
--- /dev/null
+++ b/po/lt.po
@@ -0,0 +1,36 @@
+msgid "IDS_TASKMGR_BUTTON_CLEAR_HISTORY_ABB"
+msgstr "Valyti istoriją"
+
+msgid "IDS_TASKMGR_BUTTON_CLOSE_ALL_APPLICATIONS"
+msgstr "Uždaryti visas programas"
+
+msgid "IDS_TASKMGR_HEADER_RUNNING"
+msgstr "Vykdoma"
+
+msgid "IDS_TASKMGR_MBODY_NO_APPS_OPEN"
+msgstr "Nėra atidarytų programų"
+
+msgid "IDS_TASKMGR_MBODY_NO_RECENTLY_USED_APPS"
+msgstr "Nėra neseniai naud.progr."
+
+msgid "IDS_TASKMGR_MBODY_RECENTLY_USED"
+msgstr "Pastarąjį kartą naudota"
+
+msgid "IDS_TASKMGR_POP_CLEAR_ALL_APP_HISTORY_Q"
+msgstr "Išvalyti visą programų istoriją?"
+
+msgid "IDS_TASKMGR_POP_CLEAR_PS_HISTORY_Q"
+msgstr "Išvalyti %s istoriją?"
+
+msgid "IDS_TASKMGR_POP_CLOSE_ALL_APPS_Q_THIS_MAY_CAUSE_DATA_TO_BE_LOST"
+msgstr "Uždaryti visas programas? Taip galite prarasti duomenis"
+
+msgid "IDS_TASKMGR_POP_CLOSE_PS_APP_Q_THIS_MAY_CAUSE_DATA_TO_BE_LOST"
+msgstr "Uždaryti programą %s? Taip galite prarasti duomenis"
+
+msgid "IDS_TASKMGR_POP_UNABLE_TO_OPEN_APPLICATION"
+msgstr "Neįmanoma atidaryti programos"
+
+msgid "IDS_TASKMGR_HEADER_TASK_SWITCHER"
+msgstr "Užduočių jungiklis"
+
diff --git a/po/lv.po b/po/lv.po
new file mode 100644 (file)
index 0000000..2f75264
--- /dev/null
+++ b/po/lv.po
@@ -0,0 +1,36 @@
+msgid "IDS_TASKMGR_BUTTON_CLEAR_HISTORY_ABB"
+msgstr "Notīrīt vēsturi"
+
+msgid "IDS_TASKMGR_BUTTON_CLOSE_ALL_APPLICATIONS"
+msgstr "Aizvērt visas programmas"
+
+msgid "IDS_TASKMGR_HEADER_RUNNING"
+msgstr "Darbojas"
+
+msgid "IDS_TASKMGR_MBODY_NO_APPS_OPEN"
+msgstr "Nav atvērtu programmu"
+
+msgid "IDS_TASKMGR_MBODY_NO_RECENTLY_USED_APPS"
+msgstr "Nav nesen lietotu progr."
+
+msgid "IDS_TASKMGR_MBODY_RECENTLY_USED"
+msgstr "Nesen lietota"
+
+msgid "IDS_TASKMGR_POP_CLEAR_ALL_APP_HISTORY_Q"
+msgstr "Vai notīrīt visu programmu vēsturi?"
+
+msgid "IDS_TASKMGR_POP_CLEAR_PS_HISTORY_Q"
+msgstr "Vai notīrīt %s vēsturi?"
+
+msgid "IDS_TASKMGR_POP_CLOSE_ALL_APPS_Q_THIS_MAY_CAUSE_DATA_TO_BE_LOST"
+msgstr "Vai aizvērt visas programmas? Tādejādi var tikt zaudēti dati"
+
+msgid "IDS_TASKMGR_POP_CLOSE_PS_APP_Q_THIS_MAY_CAUSE_DATA_TO_BE_LOST"
+msgstr "Vai aizvērt %s programmu? Tādejādi var tikt zaudēti dati"
+
+msgid "IDS_TASKMGR_POP_UNABLE_TO_OPEN_APPLICATION"
+msgstr "Nevar atvērt programmu"
+
+msgid "IDS_TASKMGR_HEADER_TASK_SWITCHER"
+msgstr "Uzdevumu pārslēdzējs"
+
diff --git a/po/ms.po b/po/ms.po
new file mode 100644 (file)
index 0000000..a150e07
--- /dev/null
+++ b/po/ms.po
@@ -0,0 +1,36 @@
+msgid "IDS_TASKMGR_BUTTON_CLEAR_HISTORY_ABB"
+msgstr "Padam sejarah"
+
+msgid "IDS_TASKMGR_BUTTON_CLOSE_ALL_APPLICATIONS"
+msgstr "Tutup semua aplikasi"
+
+msgid "IDS_TASKMGR_HEADER_RUNNING"
+msgstr "Sedang dijalankan"
+
+msgid "IDS_TASKMGR_MBODY_NO_APPS_OPEN"
+msgstr "Tiada aplikasi yng dibuka"
+
+msgid "IDS_TASKMGR_MBODY_NO_RECENTLY_USED_APPS"
+msgstr "Tiada aplikasi diguna baru-baru ini"
+
+msgid "IDS_TASKMGR_MBODY_RECENTLY_USED"
+msgstr "Diguna baru-baru ini"
+
+msgid "IDS_TASKMGR_POP_CLEAR_ALL_APP_HISTORY_Q"
+msgstr "Kosongkan semua sejarah aplikasi?"
+
+msgid "IDS_TASKMGR_POP_CLEAR_PS_HISTORY_Q"
+msgstr "Padam sejarah %s?"
+
+msgid "IDS_TASKMGR_POP_CLOSE_ALL_APPS_Q_THIS_MAY_CAUSE_DATA_TO_BE_LOST"
+msgstr "Tutup semua aplikasi? Ini akan menyebabkan data hilang"
+
+msgid "IDS_TASKMGR_POP_CLOSE_PS_APP_Q_THIS_MAY_CAUSE_DATA_TO_BE_LOST"
+msgstr "Tutup aplikasi %s? Ini akan menyebabkan data hilang"
+
+msgid "IDS_TASKMGR_POP_UNABLE_TO_OPEN_APPLICATION"
+msgstr "Tidak dapat membuka aplikasi"
+
+msgid "IDS_TASKMGR_HEADER_TASK_SWITCHER"
+msgstr "Penukar tugasan"
+
diff --git a/po/nl.po b/po/nl.po
deleted file mode 100644 (file)
index 103b76e..0000000
--- a/po/nl.po
+++ /dev/null
@@ -1,95 +0,0 @@
-msgid "IDS_TASKMGR_BODY_APPLICATION"
-msgstr "Toepassing"
-
-msgid "IDS_TASKMGR_BUTTON_CLEAR_ALL"
-msgstr "Wis alles"
-
-msgid "IDS_TASKMGR_HEADER_TASK_SWITCHER"
-msgstr "Taak afwisselen"
-
-msgid "IDS_TASKMGR_POP_CLEARING_HISTORY_ING"
-msgstr "Geschiedenis wissen..."
-
-msgid "IDS_TASKMGR_POP_EXITING_APPLICATIONS_ING"
-msgstr "Toepassingen afsluiten..."
-
-msgid "IDS_TASKMGR_POP_EXITING_APPLICATION_ING"
-msgstr "Toepassing afsluiten..."
-
-msgid "IDS_TASKMGR_POP_EXIT_ALL_APPLICATIONS_Q"
-msgstr "Alle toepassingen sluiten?"
-
-msgid "IDS_TASKMGR_POP_EXIT_APPLICATION_Q"
-msgstr "Toepassing afsluiten?"
-
-msgid "IDS_TASKMGR_POP_NO_APPLICATIONS_RUNNING"
-msgstr "Geen actieve applicaties"
-
-msgid "IDS_TASKMGR_POP_NO_HISTORY_TO_CLEAR"
-msgstr "Geen geschiedenis om te wissen"
-
-msgid "IDS_COM_BODY_END"
-msgstr "Stop"
-
-msgid "IDS_COM_OPT_DELETE"
-msgstr "Wissen"
-
-msgid "IDS_COM_POP_CANCEL"
-msgstr "Annuleer"
-
-msgid "IDS_COM_SK3_END_ALL_APPLICATIONS"
-msgstr "Alles afsluiten"
-
-msgid "IDS_BMG_POP_NO_TASKS"
-msgstr "Geen taken"
-
-msgid "IDS_ST_BODY_IN_USE"
-msgstr "In gebruik"
-
-msgid "IDS_MUSIC_OPT_HISTORY"
-msgstr "Geschiedenis"
-
-msgid "IDS_TASKMGR_NO_RUNNING_TASK"
-msgstr "No running task"
-
-msgid "IDS_TASKMGR_NO_TASK_HISTORY"
-msgstr "No task history"
-
-msgid "IDS_TASKMGR_CANNOT_LAUNCH_APPLICATION"
-msgstr "Cannot launch application"
-
-msgid "IDS_TASKMGR_END_ALL_TASKS"
-msgstr "End all tasks"
-
-msgid "IDS_TASKMGR_DELETE_ALL_HISTORY"
-msgstr "Delete all history"
-
-msgid "IDS_TASKMGR_INFO_MESSAGE"
-msgstr "Select a task which you wish to return to from a task list."
-
-msgid "IDS_TASKMGR_WARNNING_TERMINATE_ALL_TASKS"
-msgstr "Terminate all tasks?<br><br>This may cause data loss!"
-
-msgid "IDS_TASKMGR_ASK_TERMINATE_TASK"
-msgstr "Are you sure to terminate<br> %s task?<br><br>This may cause data loss!"
-
-msgid "IDS_TASKMGR_ASK_CLEAR_HISTORY"
-msgstr "Are you sure to clear<br> %s history?"
-
-msgid "IDS_TASKMGR_DELETING_HISTORY"
-msgstr "Deleting history!"
-
-msgid "IDS_TASKMGR_ASK_DELETE_ALL_HISTORY"
-msgstr "Delete all task history?"
-
-msgid "IDS_TASKMGR_TERMINATING_TASK"
-msgstr "Terminating task!"
-
-msgid "IDS_TASKMGR_TERMINATING_ALL_TASKS"
-msgstr "Terminating all tasks!"
-
-msgid "IDS_TASKMGR_NO_TASK_TO_TERMINATE"
-msgstr "No task to terminate!"
-
-msgid "IDS_TASKMGR_NO_TASK"
-msgstr "No task"
diff --git a/po/nl_NL.po b/po/nl_NL.po
new file mode 100644 (file)
index 0000000..d9e3864
--- /dev/null
@@ -0,0 +1,36 @@
+msgid "IDS_TASKMGR_BUTTON_CLEAR_HISTORY_ABB"
+msgstr "Geschiedenis wissen"
+
+msgid "IDS_TASKMGR_BUTTON_CLOSE_ALL_APPLICATIONS"
+msgstr "Alle toepassingen sluiten"
+
+msgid "IDS_TASKMGR_HEADER_RUNNING"
+msgstr "Actief"
+
+msgid "IDS_TASKMGR_MBODY_NO_APPS_OPEN"
+msgstr "Geen apps open"
+
+msgid "IDS_TASKMGR_MBODY_NO_RECENTLY_USED_APPS"
+msgstr "Geen recent gebruik. apps"
+
+msgid "IDS_TASKMGR_MBODY_RECENTLY_USED"
+msgstr "Recent gebruikt"
+
+msgid "IDS_TASKMGR_POP_CLEAR_ALL_APP_HISTORY_Q"
+msgstr "Alle app-geschiedenis wissen?"
+
+msgid "IDS_TASKMGR_POP_CLEAR_PS_HISTORY_Q"
+msgstr "Geschiedenis %s wissen?"
+
+msgid "IDS_TASKMGR_POP_CLOSE_ALL_APPS_Q_THIS_MAY_CAUSE_DATA_TO_BE_LOST"
+msgstr "Alle apps sluiten? Hierbij kunnen gegevens verloren gaan"
+
+msgid "IDS_TASKMGR_POP_CLOSE_PS_APP_Q_THIS_MAY_CAUSE_DATA_TO_BE_LOST"
+msgstr "App %s sluiten? Hierbij kunnen gegevens verloren gaan"
+
+msgid "IDS_TASKMGR_POP_UNABLE_TO_OPEN_APPLICATION"
+msgstr "Kan applicatie niet openen"
+
+msgid "IDS_TASKMGR_HEADER_TASK_SWITCHER"
+msgstr "Taak afwisselen"
+
diff --git a/po/no.po b/po/no.po
new file mode 100644 (file)
index 0000000..32acb7a
--- /dev/null
+++ b/po/no.po
@@ -0,0 +1,36 @@
+msgid "IDS_TASKMGR_BUTTON_CLEAR_HISTORY_ABB"
+msgstr "Tøm logg"
+
+msgid "IDS_TASKMGR_BUTTON_CLOSE_ALL_APPLICATIONS"
+msgstr "Lukk alle programmer"
+
+msgid "IDS_TASKMGR_HEADER_RUNNING"
+msgstr "Kjørende"
+
+msgid "IDS_TASKMGR_MBODY_NO_APPS_OPEN"
+msgstr "Ingen programmer åpne"
+
+msgid "IDS_TASKMGR_MBODY_NO_RECENTLY_USED_APPS"
+msgstr "Ingen nylig brukte prog."
+
+msgid "IDS_TASKMGR_MBODY_RECENTLY_USED"
+msgstr "Nylig brukt"
+
+msgid "IDS_TASKMGR_POP_CLEAR_ALL_APP_HISTORY_Q"
+msgstr "Tømme alle programlogger?"
+
+msgid "IDS_TASKMGR_POP_CLEAR_PS_HISTORY_Q"
+msgstr "Tømme %s logg?"
+
+msgid "IDS_TASKMGR_POP_CLOSE_ALL_APPS_Q_THIS_MAY_CAUSE_DATA_TO_BE_LOST"
+msgstr "Lukke alle programmer? Dette kan føre til at data går tapt"
+
+msgid "IDS_TASKMGR_POP_CLOSE_PS_APP_Q_THIS_MAY_CAUSE_DATA_TO_BE_LOST"
+msgstr "Lukke %s programmet? Dette kan føre til at data går tapt"
+
+msgid "IDS_TASKMGR_POP_UNABLE_TO_OPEN_APPLICATION"
+msgstr "Kan ikke åpne program"
+
+msgid "IDS_TASKMGR_HEADER_TASK_SWITCHER"
+msgstr "Oppgaveveksler"
+
diff --git a/po/pl.po b/po/pl.po
new file mode 100644 (file)
index 0000000..97ba671
--- /dev/null
+++ b/po/pl.po
@@ -0,0 +1,36 @@
+msgid "IDS_TASKMGR_BUTTON_CLEAR_HISTORY_ABB"
+msgstr "Wyczyść historię"
+
+msgid "IDS_TASKMGR_BUTTON_CLOSE_ALL_APPLICATIONS"
+msgstr "Zamknij wszystkie aplikacje"
+
+msgid "IDS_TASKMGR_HEADER_RUNNING"
+msgstr "Uruchomione"
+
+msgid "IDS_TASKMGR_MBODY_NO_APPS_OPEN"
+msgstr "Brak otwartych aplikacji"
+
+msgid "IDS_TASKMGR_MBODY_NO_RECENTLY_USED_APPS"
+msgstr "Brak ostat. używ. aplik."
+
+msgid "IDS_TASKMGR_MBODY_RECENTLY_USED"
+msgstr "Ostatnio używany"
+
+msgid "IDS_TASKMGR_POP_CLEAR_ALL_APP_HISTORY_Q"
+msgstr "Wyczyścić historię wszystkich aplikacji?"
+
+msgid "IDS_TASKMGR_POP_CLEAR_PS_HISTORY_Q"
+msgstr "Wyczyścić historię %s?"
+
+msgid "IDS_TASKMGR_POP_CLOSE_ALL_APPS_Q_THIS_MAY_CAUSE_DATA_TO_BE_LOST"
+msgstr "Zamknąć wszystkie aplikacje? To może spowodować utratę danych"
+
+msgid "IDS_TASKMGR_POP_CLOSE_PS_APP_Q_THIS_MAY_CAUSE_DATA_TO_BE_LOST"
+msgstr "Zamknąć aplikację %s? To może spowodować utratę danych"
+
+msgid "IDS_TASKMGR_POP_UNABLE_TO_OPEN_APPLICATION"
+msgstr "Nie można otworzyć aplikacji"
+
+msgid "IDS_TASKMGR_HEADER_TASK_SWITCHER"
+msgstr "Menedżer zadań"
+
diff --git a/po/pt.po b/po/pt.po
deleted file mode 100644 (file)
index cf5c5fe..0000000
--- a/po/pt.po
+++ /dev/null
@@ -1,95 +0,0 @@
-msgid "IDS_TASKMGR_BODY_APPLICATION"
-msgstr "Aplicação"
-
-msgid "IDS_TASKMGR_BUTTON_CLEAR_ALL"
-msgstr "Limpar tudo"
-
-msgid "IDS_TASKMGR_HEADER_TASK_SWITCHER"
-msgstr "Comutador de tarefas"
-
-msgid "IDS_TASKMGR_POP_CLEARING_HISTORY_ING"
-msgstr "A limpar histórico..."
-
-msgid "IDS_TASKMGR_POP_EXITING_APPLICATIONS_ING"
-msgstr "A sair das aplicações..."
-
-msgid "IDS_TASKMGR_POP_EXITING_APPLICATION_ING"
-msgstr "A sair da aplicação..."
-
-msgid "IDS_TASKMGR_POP_EXIT_ALL_APPLICATIONS_Q"
-msgstr "Sair de todas as aplicações?"
-
-msgid "IDS_TASKMGR_POP_EXIT_APPLICATION_Q"
-msgstr "Sair da aplicação?"
-
-msgid "IDS_TASKMGR_POP_NO_APPLICATIONS_RUNNING"
-msgstr "Nenhumas aplicações a serem executadas"
-
-msgid "IDS_TASKMGR_POP_NO_HISTORY_TO_CLEAR"
-msgstr "Nenhum histórico para limpar"
-
-msgid "IDS_COM_BODY_END"
-msgstr "Terminar"
-
-msgid "IDS_COM_OPT_DELETE"
-msgstr "Eliminar"
-
-msgid "IDS_COM_POP_CANCEL"
-msgstr "Cancelar"
-
-msgid "IDS_COM_SK3_END_ALL_APPLICATIONS"
-msgstr "Term. tds aplic."
-
-msgid "IDS_BMG_POP_NO_TASKS"
-msgstr "Sem tarefas"
-
-msgid "IDS_ST_BODY_IN_USE"
-msgstr "Em utilização"
-
-msgid "IDS_MUSIC_OPT_HISTORY"
-msgstr "Histórico"
-
-msgid "IDS_TASKMGR_NO_RUNNING_TASK"
-msgstr "No running task"
-
-msgid "IDS_TASKMGR_NO_TASK_HISTORY"
-msgstr "No task history"
-
-msgid "IDS_TASKMGR_CANNOT_LAUNCH_APPLICATION"
-msgstr "Cannot launch application"
-
-msgid "IDS_TASKMGR_END_ALL_TASKS"
-msgstr "End all tasks"
-
-msgid "IDS_TASKMGR_DELETE_ALL_HISTORY"
-msgstr "Delete all history"
-
-msgid "IDS_TASKMGR_INFO_MESSAGE"
-msgstr "Select a task which you wish to return to from a task list."
-
-msgid "IDS_TASKMGR_WARNNING_TERMINATE_ALL_TASKS"
-msgstr "Terminate all tasks?<br><br>This may cause data loss!"
-
-msgid "IDS_TASKMGR_ASK_TERMINATE_TASK"
-msgstr "Are you sure to terminate<br> %s task?<br><br>This may cause data loss!"
-
-msgid "IDS_TASKMGR_ASK_CLEAR_HISTORY"
-msgstr "Are you sure to clear<br> %s history?"
-
-msgid "IDS_TASKMGR_DELETING_HISTORY"
-msgstr "Deleting history!"
-
-msgid "IDS_TASKMGR_ASK_DELETE_ALL_HISTORY"
-msgstr "Delete all task history?"
-
-msgid "IDS_TASKMGR_TERMINATING_TASK"
-msgstr "Terminating task!"
-
-msgid "IDS_TASKMGR_TERMINATING_ALL_TASKS"
-msgstr "Terminating all tasks!"
-
-msgid "IDS_TASKMGR_NO_TASK_TO_TERMINATE"
-msgstr "No task to terminate!"
-
-msgid "IDS_TASKMGR_NO_TASK"
-msgstr "No task"
diff --git a/po/pt_PT.po b/po/pt_PT.po
new file mode 100644 (file)
index 0000000..dd7c192
--- /dev/null
@@ -0,0 +1,36 @@
+msgid "IDS_TASKMGR_BUTTON_CLEAR_HISTORY_ABB"
+msgstr "Limpar histórico"
+
+msgid "IDS_TASKMGR_BUTTON_CLOSE_ALL_APPLICATIONS"
+msgstr "Fechar todas as aplicações"
+
+msgid "IDS_TASKMGR_HEADER_RUNNING"
+msgstr "A ser executado"
+
+msgid "IDS_TASKMGR_MBODY_NO_APPS_OPEN"
+msgstr "Sem aplicações abertas"
+
+msgid "IDS_TASKMGR_MBODY_NO_RECENTLY_USED_APPS"
+msgstr "Sem aplics. util. recent."
+
+msgid "IDS_TASKMGR_MBODY_RECENTLY_USED"
+msgstr "Utilizado recentemente"
+
+msgid "IDS_TASKMGR_POP_CLEAR_ALL_APP_HISTORY_Q"
+msgstr "Limpar o histórico de todas as aplicações?"
+
+msgid "IDS_TASKMGR_POP_CLEAR_PS_HISTORY_Q"
+msgstr "Limpar histórico de %s?"
+
+msgid "IDS_TASKMGR_POP_CLOSE_ALL_APPS_Q_THIS_MAY_CAUSE_DATA_TO_BE_LOST"
+msgstr "Fechar todas as aplicações? Isto pode causar a perda de dados"
+
+msgid "IDS_TASKMGR_POP_CLOSE_PS_APP_Q_THIS_MAY_CAUSE_DATA_TO_BE_LOST"
+msgstr "Fechar %s aplicações? Isto pode causar a perda de dados"
+
+msgid "IDS_TASKMGR_POP_UNABLE_TO_OPEN_APPLICATION"
+msgstr "Impossível abrir aplicação"
+
+msgid "IDS_TASKMGR_HEADER_TASK_SWITCHER"
+msgstr "Comutador de tarefas"
+
diff --git a/po/ro.po b/po/ro.po
new file mode 100644 (file)
index 0000000..18fad11
--- /dev/null
+++ b/po/ro.po
@@ -0,0 +1,36 @@
+msgid "IDS_TASKMGR_BUTTON_CLEAR_HISTORY_ABB"
+msgstr "Ştergere istoric"
+
+msgid "IDS_TASKMGR_BUTTON_CLOSE_ALL_APPLICATIONS"
+msgstr "Închideţi toate aplicaţiile"
+
+msgid "IDS_TASKMGR_HEADER_RUNNING"
+msgstr "În funcţiune"
+
+msgid "IDS_TASKMGR_MBODY_NO_APPS_OPEN"
+msgstr "Nicio aplicaţie deschisă"
+
+msgid "IDS_TASKMGR_MBODY_NO_RECENTLY_USED_APPS"
+msgstr "Nicio aplic. util. recent"
+
+msgid "IDS_TASKMGR_MBODY_RECENTLY_USED"
+msgstr "Utilizată recent"
+
+msgid "IDS_TASKMGR_POP_CLEAR_ALL_APP_HISTORY_Q"
+msgstr "Ştergeţi istoricul tuturor aplicaţiilor?"
+
+msgid "IDS_TASKMGR_POP_CLEAR_PS_HISTORY_Q"
+msgstr "Ştergeţi istoricul %s?"
+
+msgid "IDS_TASKMGR_POP_CLOSE_ALL_APPS_Q_THIS_MAY_CAUSE_DATA_TO_BE_LOST"
+msgstr "Închideţi toate aplicaţiile? Aceasta poate cauza pierderea datelor"
+
+msgid "IDS_TASKMGR_POP_CLOSE_PS_APP_Q_THIS_MAY_CAUSE_DATA_TO_BE_LOST"
+msgstr "Închideţi aplicaţia %s? Aceasta poate cauza pierderea datelor"
+
+msgid "IDS_TASKMGR_POP_UNABLE_TO_OPEN_APPLICATION"
+msgstr "Imposibil de deschis aplicaţia"
+
+msgid "IDS_TASKMGR_HEADER_TASK_SWITCHER"
+msgstr "Comutator activităţi"
+
diff --git a/po/ru.po b/po/ru.po
deleted file mode 100644 (file)
index cc8d4c5..0000000
--- a/po/ru.po
+++ /dev/null
@@ -1,95 +0,0 @@
-msgid "IDS_TASKMGR_BODY_APPLICATION"
-msgstr "Приложение"
-
-msgid "IDS_TASKMGR_BUTTON_CLEAR_ALL"
-msgstr "Очистить все"
-
-msgid "IDS_TASKMGR_HEADER_TASK_SWITCHER"
-msgstr "Диспетчер задач"
-
-msgid "IDS_TASKMGR_POP_CLEARING_HISTORY_ING"
-msgstr "Очистка журнала..."
-
-msgid "IDS_TASKMGR_POP_EXITING_APPLICATIONS_ING"
-msgstr "Закрытие приложений..."
-
-msgid "IDS_TASKMGR_POP_EXITING_APPLICATION_ING"
-msgstr "Закрытие приложения..."
-
-msgid "IDS_TASKMGR_POP_EXIT_ALL_APPLICATIONS_Q"
-msgstr "Закрыть все приложения?"
-
-msgid "IDS_TASKMGR_POP_EXIT_APPLICATION_Q"
-msgstr "Выйти из приложения?"
-
-msgid "IDS_TASKMGR_POP_NO_APPLICATIONS_RUNNING"
-msgstr "Приложения не запущены"
-
-msgid "IDS_TASKMGR_POP_NO_HISTORY_TO_CLEAR"
-msgstr "Нет журнала для удаления"
-
-msgid "IDS_COM_BODY_END"
-msgstr "Завершить"
-
-msgid "IDS_COM_OPT_DELETE"
-msgstr "Удалить"
-
-msgid "IDS_COM_POP_CANCEL"
-msgstr "Отмена"
-
-msgid "IDS_COM_SK3_END_ALL_APPLICATIONS"
-msgstr "Закрыть все"
-
-msgid "IDS_BMG_POP_NO_TASKS"
-msgstr "Нет задач"
-
-msgid "IDS_ST_BODY_IN_USE"
-msgstr "Используется"
-
-msgid "IDS_MUSIC_OPT_HISTORY"
-msgstr "Журнал"
-
-msgid "IDS_TASKMGR_NO_RUNNING_TASK"
-msgstr "No running task"
-
-msgid "IDS_TASKMGR_NO_TASK_HISTORY"
-msgstr "No task history"
-
-msgid "IDS_TASKMGR_CANNOT_LAUNCH_APPLICATION"
-msgstr "Cannot launch application"
-
-msgid "IDS_TASKMGR_END_ALL_TASKS"
-msgstr "End all tasks"
-
-msgid "IDS_TASKMGR_DELETE_ALL_HISTORY"
-msgstr "Delete all history"
-
-msgid "IDS_TASKMGR_INFO_MESSAGE"
-msgstr "Select a task which you wish to return to from a task list."
-
-msgid "IDS_TASKMGR_WARNNING_TERMINATE_ALL_TASKS"
-msgstr "Terminate all tasks?<br><br>This may cause data loss!"
-
-msgid "IDS_TASKMGR_ASK_TERMINATE_TASK"
-msgstr "Are you sure to terminate<br> %s task?<br><br>This may cause data loss!"
-
-msgid "IDS_TASKMGR_ASK_CLEAR_HISTORY"
-msgstr "Are you sure to clear<br> %s history?"
-
-msgid "IDS_TASKMGR_DELETING_HISTORY"
-msgstr "Deleting history!"
-
-msgid "IDS_TASKMGR_ASK_DELETE_ALL_HISTORY"
-msgstr "Delete all task history?"
-
-msgid "IDS_TASKMGR_TERMINATING_TASK"
-msgstr "Terminating task!"
-
-msgid "IDS_TASKMGR_TERMINATING_ALL_TASKS"
-msgstr "Terminating all tasks!"
-
-msgid "IDS_TASKMGR_NO_TASK_TO_TERMINATE"
-msgstr "No task to terminate!"
-
-msgid "IDS_TASKMGR_NO_TASK"
-msgstr "No task"
diff --git a/po/ru_RU.po b/po/ru_RU.po
new file mode 100644 (file)
index 0000000..5f9a476
--- /dev/null
@@ -0,0 +1,36 @@
+msgid "IDS_TASKMGR_BUTTON_CLEAR_HISTORY_ABB"
+msgstr "Очистить журнал"
+
+msgid "IDS_TASKMGR_BUTTON_CLOSE_ALL_APPLICATIONS"
+msgstr "Закрыть все приложения"
+
+msgid "IDS_TASKMGR_HEADER_RUNNING"
+msgstr "Выполнять"
+
+msgid "IDS_TASKMGR_MBODY_NO_APPS_OPEN"
+msgstr "Нет открытых приложений"
+
+msgid "IDS_TASKMGR_MBODY_NO_RECENTLY_USED_APPS"
+msgstr "Нет последних приложений"
+
+msgid "IDS_TASKMGR_MBODY_RECENTLY_USED"
+msgstr "Недавно использовавшийся"
+
+msgid "IDS_TASKMGR_POP_CLEAR_ALL_APP_HISTORY_Q"
+msgstr "Очистить журнал всех приложений?"
+
+msgid "IDS_TASKMGR_POP_CLEAR_PS_HISTORY_Q"
+msgstr "Очистить журнал %s?"
+
+msgid "IDS_TASKMGR_POP_CLOSE_ALL_APPS_Q_THIS_MAY_CAUSE_DATA_TO_BE_LOST"
+msgstr "Закрыть все приложения? Это может привести к потере данных"
+
+msgid "IDS_TASKMGR_POP_CLOSE_PS_APP_Q_THIS_MAY_CAUSE_DATA_TO_BE_LOST"
+msgstr "Закрыть приложение %s? Это может привести к потере данных"
+
+msgid "IDS_TASKMGR_POP_UNABLE_TO_OPEN_APPLICATION"
+msgstr "Не удалось открыть приложение"
+
+msgid "IDS_TASKMGR_HEADER_TASK_SWITCHER"
+msgstr "Диспетчер задач"
+
diff --git a/po/sk.po b/po/sk.po
new file mode 100644 (file)
index 0000000..6d57d73
--- /dev/null
+++ b/po/sk.po
@@ -0,0 +1,36 @@
+msgid "IDS_TASKMGR_BUTTON_CLEAR_HISTORY_ABB"
+msgstr "Vymazať históriu"
+
+msgid "IDS_TASKMGR_BUTTON_CLOSE_ALL_APPLICATIONS"
+msgstr "Ukončite všetky aplikácie"
+
+msgid "IDS_TASKMGR_HEADER_RUNNING"
+msgstr "Spustené"
+
+msgid "IDS_TASKMGR_MBODY_NO_APPS_OPEN"
+msgstr "Žiadne otvorené aplikácie"
+
+msgid "IDS_TASKMGR_MBODY_NO_RECENTLY_USED_APPS"
+msgstr "Žiadne nap. použ. aplik."
+
+msgid "IDS_TASKMGR_MBODY_RECENTLY_USED"
+msgstr "Nedávno použité"
+
+msgid "IDS_TASKMGR_POP_CLEAR_ALL_APP_HISTORY_Q"
+msgstr "Vymazať celú históriu aplikácií?"
+
+msgid "IDS_TASKMGR_POP_CLEAR_PS_HISTORY_Q"
+msgstr "Vymazať históriu aplikácie %s?"
+
+msgid "IDS_TASKMGR_POP_CLOSE_ALL_APPS_Q_THIS_MAY_CAUSE_DATA_TO_BE_LOST"
+msgstr "Ukončiť všetky aplikácie? Môže to spôsobiť stratu údajov"
+
+msgid "IDS_TASKMGR_POP_CLOSE_PS_APP_Q_THIS_MAY_CAUSE_DATA_TO_BE_LOST"
+msgstr "Ukončiť aplikáciu %s? Môže to spôsobiť stratu údajov"
+
+msgid "IDS_TASKMGR_POP_UNABLE_TO_OPEN_APPLICATION"
+msgstr "Aplikácia sa nedá otvoriť"
+
+msgid "IDS_TASKMGR_HEADER_TASK_SWITCHER"
+msgstr "Prepínanie úloh"
+
diff --git a/po/sl.po b/po/sl.po
new file mode 100644 (file)
index 0000000..1acbdbc
--- /dev/null
+++ b/po/sl.po
@@ -0,0 +1,36 @@
+msgid "IDS_TASKMGR_BUTTON_CLEAR_HISTORY_ABB"
+msgstr "Počisti zgodovino"
+
+msgid "IDS_TASKMGR_BUTTON_CLOSE_ALL_APPLICATIONS"
+msgstr "Zapri vse programe"
+
+msgid "IDS_TASKMGR_HEADER_RUNNING"
+msgstr "Se izvaja"
+
+msgid "IDS_TASKMGR_MBODY_NO_APPS_OPEN"
+msgstr "Ni odprtih programov"
+
+msgid "IDS_TASKMGR_MBODY_NO_RECENTLY_USED_APPS"
+msgstr "Ni nedavno up. programov"
+
+msgid "IDS_TASKMGR_MBODY_RECENTLY_USED"
+msgstr "Nazadnje uporabljeno"
+
+msgid "IDS_TASKMGR_POP_CLEAR_ALL_APP_HISTORY_Q"
+msgstr "Želite počistiti zgodovino vseh programov?"
+
+msgid "IDS_TASKMGR_POP_CLEAR_PS_HISTORY_Q"
+msgstr "Želite počistiti zgodovino programa %s?"
+
+msgid "IDS_TASKMGR_POP_CLOSE_ALL_APPS_Q_THIS_MAY_CAUSE_DATA_TO_BE_LOST"
+msgstr "Želite zapreti vse programe? To lahko povzroči izgubo podatkov"
+
+msgid "IDS_TASKMGR_POP_CLOSE_PS_APP_Q_THIS_MAY_CAUSE_DATA_TO_BE_LOST"
+msgstr "Želite zapreti program %s? To lahko povzroči izgubo podatkov"
+
+msgid "IDS_TASKMGR_POP_UNABLE_TO_OPEN_APPLICATION"
+msgstr "Programa ni mogoče odpreti"
+
+msgid "IDS_TASKMGR_HEADER_TASK_SWITCHER"
+msgstr "Preklopnik med opravili"
+
diff --git a/po/sr.po b/po/sr.po
new file mode 100644 (file)
index 0000000..0d3ff15
--- /dev/null
+++ b/po/sr.po
@@ -0,0 +1,36 @@
+msgid "IDS_TASKMGR_BUTTON_CLEAR_HISTORY_ABB"
+msgstr "Obriši istoriju"
+
+msgid "IDS_TASKMGR_BUTTON_CLOSE_ALL_APPLICATIONS"
+msgstr "Zatvori sve aplikacije"
+
+msgid "IDS_TASKMGR_HEADER_RUNNING"
+msgstr "Izvršavanje"
+
+msgid "IDS_TASKMGR_MBODY_NO_APPS_OPEN"
+msgstr "Nema otvorenih aplikacija"
+
+msgid "IDS_TASKMGR_MBODY_NO_RECENTLY_USED_APPS"
+msgstr "Aplik. nisu skoro korišć."
+
+msgid "IDS_TASKMGR_MBODY_RECENTLY_USED"
+msgstr "Nedavno korišćeno"
+
+msgid "IDS_TASKMGR_POP_CLEAR_ALL_APP_HISTORY_Q"
+msgstr "Obrisati istoriju za sve aplikacije?"
+
+msgid "IDS_TASKMGR_POP_CLEAR_PS_HISTORY_Q"
+msgstr "Obrisati %s istoriju?"
+
+msgid "IDS_TASKMGR_POP_CLOSE_ALL_APPS_Q_THIS_MAY_CAUSE_DATA_TO_BE_LOST"
+msgstr "Zatvoriti sve aplikacije? To može dovesti do gubitka podataka"
+
+msgid "IDS_TASKMGR_POP_CLOSE_PS_APP_Q_THIS_MAY_CAUSE_DATA_TO_BE_LOST"
+msgstr "Zatvoriti %s aplikaciju? To može dovesti do gubitka podataka"
+
+msgid "IDS_TASKMGR_POP_UNABLE_TO_OPEN_APPLICATION"
+msgstr "Nije moguće otvoriti aplikaciju"
+
+msgid "IDS_TASKMGR_HEADER_TASK_SWITCHER"
+msgstr "Planer zadataka"
+
diff --git a/po/sv.po b/po/sv.po
new file mode 100644 (file)
index 0000000..61babd1
--- /dev/null
+++ b/po/sv.po
@@ -0,0 +1,36 @@
+msgid "IDS_TASKMGR_BUTTON_CLEAR_HISTORY_ABB"
+msgstr "Rensa historik"
+
+msgid "IDS_TASKMGR_BUTTON_CLOSE_ALL_APPLICATIONS"
+msgstr "Stäng alla program"
+
+msgid "IDS_TASKMGR_HEADER_RUNNING"
+msgstr "Körs"
+
+msgid "IDS_TASKMGR_MBODY_NO_APPS_OPEN"
+msgstr "Inga öppna program"
+
+msgid "IDS_TASKMGR_MBODY_NO_RECENTLY_USED_APPS"
+msgstr "Inga nyligen anv. program"
+
+msgid "IDS_TASKMGR_MBODY_RECENTLY_USED"
+msgstr "Nyligen använd"
+
+msgid "IDS_TASKMGR_POP_CLEAR_ALL_APP_HISTORY_Q"
+msgstr "Rensa all programhistorik?"
+
+msgid "IDS_TASKMGR_POP_CLEAR_PS_HISTORY_Q"
+msgstr "Rensa historik för %s?"
+
+msgid "IDS_TASKMGR_POP_CLOSE_ALL_APPS_Q_THIS_MAY_CAUSE_DATA_TO_BE_LOST"
+msgstr "Stäng alla program? Detta kan medföra att data förloras"
+
+msgid "IDS_TASKMGR_POP_CLOSE_PS_APP_Q_THIS_MAY_CAUSE_DATA_TO_BE_LOST"
+msgstr "Stäng %s program? Detta kan medföra att data förloras"
+
+msgid "IDS_TASKMGR_POP_UNABLE_TO_OPEN_APPLICATION"
+msgstr "Det går inte att öppna program"
+
+msgid "IDS_TASKMGR_HEADER_TASK_SWITCHER"
+msgstr "Aktivitetsväxlare"
+
diff --git a/po/th.po b/po/th.po
new file mode 100644 (file)
index 0000000..996c1dd
--- /dev/null
+++ b/po/th.po
@@ -0,0 +1,36 @@
+msgid "IDS_TASKMGR_BUTTON_CLEAR_HISTORY_ABB"
+msgstr "ลบประวัติ"
+
+msgid "IDS_TASKMGR_BUTTON_CLOSE_ALL_APPLICATIONS"
+msgstr "ปิดแอพพลิเคชั่นทั้งหมด"
+
+msgid "IDS_TASKMGR_HEADER_RUNNING"
+msgstr "การ​ทำ​งาน"
+
+msgid "IDS_TASKMGR_MBODY_NO_APPS_OPEN"
+msgstr "ไม่มีแอพส์ที่เปิดไว้"
+
+msgid "IDS_TASKMGR_MBODY_NO_RECENTLY_USED_APPS"
+msgstr "ไม่มีแอพส์ที่ใช้ล่าสุด"
+
+msgid "IDS_TASKMGR_MBODY_RECENTLY_USED"
+msgstr "ใช้​ล่า​สุด"
+
+msgid "IDS_TASKMGR_POP_CLEAR_ALL_APP_HISTORY_Q"
+msgstr "ล้างประวัติแอพส์ทั้งหมด?"
+
+msgid "IDS_TASKMGR_POP_CLEAR_PS_HISTORY_Q"
+msgstr "ล้างประวัติ %s?"
+
+msgid "IDS_TASKMGR_POP_CLOSE_ALL_APPS_Q_THIS_MAY_CAUSE_DATA_TO_BE_LOST"
+msgstr "ปิดแอพส์ทั้งหมด? การดำเนินการนี้อาจทำให้สูญเสียข้อมูลไปได้"
+
+msgid "IDS_TASKMGR_POP_CLOSE_PS_APP_Q_THIS_MAY_CAUSE_DATA_TO_BE_LOST"
+msgstr "ปิดแอพส์ %s? การดำเนินการนี้อาจทำให้สูญเสียข้อมูลไปได้"
+
+msgid "IDS_TASKMGR_POP_UNABLE_TO_OPEN_APPLICATION"
+msgstr "ไม่สามารถเปิดแอพพลิเคชั่น"
+
+msgid "IDS_TASKMGR_HEADER_TASK_SWITCHER"
+msgstr "ตัว​สลับ​สิ่ง​ที่​ต้อง​ทำ"
+
index 8c0918a5a3efac83406813f06fd1b4a3434a1756..848c3552172ed7eabd68a87ce95db885cbc54b3f 100644 (file)
@@ -1,95 +1,36 @@
-msgid "IDS_TASKMGR_BODY_APPLICATION"
-msgstr "Uygulama"
+msgid "IDS_TASKMGR_BUTTON_CLEAR_HISTORY_ABB"
+msgstr "Geçmişi sil"
 
-msgid "IDS_TASKMGR_BUTTON_CLEAR_ALL"
-msgstr "Tümünü sil"
+msgid "IDS_TASKMGR_BUTTON_CLOSE_ALL_APPLICATIONS"
+msgstr "Tüm uygulamaları kapat"
 
-msgid "IDS_TASKMGR_HEADER_TASK_SWITCHER"
-msgstr "Görev değiştirici"
-
-msgid "IDS_TASKMGR_POP_CLEARING_HISTORY_ING"
-msgstr "Geçmiş siliniyor..."
-
-msgid "IDS_TASKMGR_POP_EXITING_APPLICATIONS_ING"
-msgstr "Uygulamalardan çıkılıyor..."
-
-msgid "IDS_TASKMGR_POP_EXITING_APPLICATION_ING"
-msgstr "Uygulamadan çıkılıyor..."
-
-msgid "IDS_TASKMGR_POP_EXIT_ALL_APPLICATIONS_Q"
-msgstr "Tüm uygulamalardan çıkılsın mı?"
-
-msgid "IDS_TASKMGR_POP_EXIT_APPLICATION_Q"
-msgstr "Uygulamadan çıkılsın mı?"
-
-msgid "IDS_TASKMGR_POP_NO_APPLICATIONS_RUNNING"
-msgstr "Çalışan uygulama yok"
-
-msgid "IDS_TASKMGR_POP_NO_HISTORY_TO_CLEAR"
-msgstr "Silinecek geçmiş yok"
-
-msgid "IDS_COM_BODY_END"
-msgstr "Bitir"
-
-msgid "IDS_COM_OPT_DELETE"
-msgstr "Sil"
-
-msgid "IDS_COM_POP_CANCEL"
-msgstr "İptal"
+msgid "IDS_TASKMGR_HEADER_RUNNING"
+msgstr "Çalışıyor"
 
-msgid "IDS_COM_SK3_END_ALL_APPLICATIONS"
-msgstr "Tümünü sonlandır"
+msgid "IDS_TASKMGR_MBODY_NO_APPS_OPEN"
+msgstr "Açık uygulama yok"
 
-msgid "IDS_BMG_POP_NO_TASKS"
-msgstr "Görev yok"
+msgid "IDS_TASKMGR_MBODY_NO_RECENTLY_USED_APPS"
+msgstr "Son kullanılan uyg yok"
 
-msgid "IDS_ST_BODY_IN_USE"
-msgstr "Kullanımda"
+msgid "IDS_TASKMGR_MBODY_RECENTLY_USED"
+msgstr "Son kullanılanlar"
 
-msgid "IDS_MUSIC_OPT_HISTORY"
-msgstr "Geçmiş"
+msgid "IDS_TASKMGR_POP_CLEAR_ALL_APP_HISTORY_Q"
+msgstr "Tüm uygulama geçmişi silinsin mi?"
 
-msgid "IDS_TASKMGR_NO_RUNNING_TASK"
-msgstr "No running task"
+msgid "IDS_TASKMGR_POP_CLEAR_PS_HISTORY_Q"
+msgstr "%s geçmişi silinsin mi?"
 
-msgid "IDS_TASKMGR_NO_TASK_HISTORY"
-msgstr "No task history"
+msgid "IDS_TASKMGR_POP_CLOSE_ALL_APPS_Q_THIS_MAY_CAUSE_DATA_TO_BE_LOST"
+msgstr "Tüm uygulamalar kapatılsın mı? Bu veri kaybına neden olabilir"
 
-msgid "IDS_TASKMGR_CANNOT_LAUNCH_APPLICATION"
-msgstr "Cannot launch application"
+msgid "IDS_TASKMGR_POP_CLOSE_PS_APP_Q_THIS_MAY_CAUSE_DATA_TO_BE_LOST"
+msgstr "%s uygulaması kapatılsın mı? Bu veri kaybına neden olabilir"
 
-msgid "IDS_TASKMGR_END_ALL_TASKS"
-msgstr "End all tasks"
+msgid "IDS_TASKMGR_POP_UNABLE_TO_OPEN_APPLICATION"
+msgstr "Uygulama açılamıyor"
 
-msgid "IDS_TASKMGR_DELETE_ALL_HISTORY"
-msgstr "Delete all history"
-
-msgid "IDS_TASKMGR_INFO_MESSAGE"
-msgstr "Select a task which you wish to return to from a task list."
-
-msgid "IDS_TASKMGR_WARNNING_TERMINATE_ALL_TASKS"
-msgstr "Terminate all tasks?<br><br>This may cause data loss!"
-
-msgid "IDS_TASKMGR_ASK_TERMINATE_TASK"
-msgstr "Are you sure to terminate<br> %s task?<br><br>This may cause data loss!"
-
-msgid "IDS_TASKMGR_ASK_CLEAR_HISTORY"
-msgstr "Are you sure to clear<br> %s history?"
-
-msgid "IDS_TASKMGR_DELETING_HISTORY"
-msgstr "Deleting history!"
-
-msgid "IDS_TASKMGR_ASK_DELETE_ALL_HISTORY"
-msgstr "Delete all task history?"
-
-msgid "IDS_TASKMGR_TERMINATING_TASK"
-msgstr "Terminating task!"
-
-msgid "IDS_TASKMGR_TERMINATING_ALL_TASKS"
-msgstr "Terminating all tasks!"
-
-msgid "IDS_TASKMGR_NO_TASK_TO_TERMINATE"
-msgstr "No task to terminate!"
+msgid "IDS_TASKMGR_HEADER_TASK_SWITCHER"
+msgstr "Görev değiştirici"
 
-msgid "IDS_TASKMGR_NO_TASK"
-msgstr "No task"
diff --git a/po/uk.po b/po/uk.po
new file mode 100644 (file)
index 0000000..83807af
--- /dev/null
+++ b/po/uk.po
@@ -0,0 +1,36 @@
+msgid "IDS_TASKMGR_BUTTON_CLEAR_HISTORY_ABB"
+msgstr "Очищення історії"
+
+msgid "IDS_TASKMGR_BUTTON_CLOSE_ALL_APPLICATIONS"
+msgstr "Закрити всі програми"
+
+msgid "IDS_TASKMGR_HEADER_RUNNING"
+msgstr "Виконується"
+
+msgid "IDS_TASKMGR_MBODY_NO_APPS_OPEN"
+msgstr "Немає відкритих програм"
+
+msgid "IDS_TASKMGR_MBODY_NO_RECENTLY_USED_APPS"
+msgstr "Немає нещод. вик. програм"
+
+msgid "IDS_TASKMGR_MBODY_RECENTLY_USED"
+msgstr "Нещодавно використані"
+
+msgid "IDS_TASKMGR_POP_CLEAR_ALL_APP_HISTORY_Q"
+msgstr "Очистити всю історію програм?"
+
+msgid "IDS_TASKMGR_POP_CLEAR_PS_HISTORY_Q"
+msgstr "Очистити історію %s?"
+
+msgid "IDS_TASKMGR_POP_CLOSE_ALL_APPS_Q_THIS_MAY_CAUSE_DATA_TO_BE_LOST"
+msgstr "Закрити усі програми? Це може спричинити втрату даних"
+
+msgid "IDS_TASKMGR_POP_CLOSE_PS_APP_Q_THIS_MAY_CAUSE_DATA_TO_BE_LOST"
+msgstr "Закрити програму %s? Це може спричинити втрату даних"
+
+msgid "IDS_TASKMGR_POP_UNABLE_TO_OPEN_APPLICATION"
+msgstr "Неможливо відкрити програму"
+
+msgid "IDS_TASKMGR_HEADER_TASK_SWITCHER"
+msgstr "Диспетчер задач"
+
diff --git a/po/vi.po b/po/vi.po
new file mode 100644 (file)
index 0000000..8f6ddd3
--- /dev/null
+++ b/po/vi.po
@@ -0,0 +1,36 @@
+msgid "IDS_TASKMGR_BUTTON_CLEAR_HISTORY_ABB"
+msgstr "Xóa nhật ký"
+
+msgid "IDS_TASKMGR_BUTTON_CLOSE_ALL_APPLICATIONS"
+msgstr "Đóng tất cả các ứng dụng"
+
+msgid "IDS_TASKMGR_HEADER_RUNNING"
+msgstr "Đang chạy"
+
+msgid "IDS_TASKMGR_MBODY_NO_APPS_OPEN"
+msgstr "Không mở ứng dụng nào"
+
+msgid "IDS_TASKMGR_MBODY_NO_RECENTLY_USED_APPS"
+msgstr "Không có ứng dụng nào sử dụng gần đây"
+
+msgid "IDS_TASKMGR_MBODY_RECENTLY_USED"
+msgstr "Đã dùng gần đây"
+
+msgid "IDS_TASKMGR_POP_CLEAR_ALL_APP_HISTORY_Q"
+msgstr "Xóa toàn bộ nhật ký ứng dụng?"
+
+msgid "IDS_TASKMGR_POP_CLEAR_PS_HISTORY_Q"
+msgstr "Xóa nhật ký %s?"
+
+msgid "IDS_TASKMGR_POP_CLOSE_ALL_APPS_Q_THIS_MAY_CAUSE_DATA_TO_BE_LOST"
+msgstr "Đóng tất cả các ứng dụng? Điều này có thể làm mất dữ liệu"
+
+msgid "IDS_TASKMGR_POP_CLOSE_PS_APP_Q_THIS_MAY_CAUSE_DATA_TO_BE_LOST"
+msgstr "Đóng ứng dụng %s? Điều này có thể làm mất dữ liệu"
+
+msgid "IDS_TASKMGR_POP_UNABLE_TO_OPEN_APPLICATION"
+msgstr "Chưa thể mở ứng dụng"
+
+msgid "IDS_TASKMGR_HEADER_TASK_SWITCHER"
+msgstr "Chuyển nhiệm vụ"
+
index a837db1bf69105cb5720fee8d2ab6753c5428e76..19088c5b237739b21cdb0c5a2810e2cd2e32103e 100644 (file)
@@ -1,95 +1,36 @@
-msgid "IDS_TASKMGR_BODY_APPLICATION"
-msgstr "软件"
+msgid "IDS_TASKMGR_BUTTON_CLEAR_HISTORY_ABB"
+msgstr "清除历史"
 
-msgid "IDS_TASKMGR_BUTTON_CLEAR_ALL"
-msgstr "å\85¨é\83¨æ¸\85é\99¤"
+msgid "IDS_TASKMGR_BUTTON_CLOSE_ALL_APPLICATIONS"
+msgstr "å\85³é\97­æ\89\80æ\9c\89åº\94ç\94¨ç¨\8båº\8f"
 
-msgid "IDS_TASKMGR_HEADER_TASK_SWITCHER"
-msgstr "任务切换器"
-
-msgid "IDS_TASKMGR_POP_CLEARING_HISTORY_ING"
-msgstr "正在清除历史记录…"
-
-msgid "IDS_TASKMGR_POP_EXITING_APPLICATIONS_ING"
-msgstr "正在退出应用程序?"
-
-msgid "IDS_TASKMGR_POP_EXITING_APPLICATION_ING"
-msgstr "正在退出应用程序?"
-
-msgid "IDS_TASKMGR_POP_EXIT_ALL_APPLICATIONS_Q"
-msgstr "退出全部应用程序?"
-
-msgid "IDS_TASKMGR_POP_EXIT_APPLICATION_Q"
-msgstr "退出应用程序?"
-
-msgid "IDS_TASKMGR_POP_NO_APPLICATIONS_RUNNING"
-msgstr "没有运行中应用程序"
-
-msgid "IDS_TASKMGR_POP_NO_HISTORY_TO_CLEAR"
-msgstr "没有可清除的历史记录"
-
-msgid "IDS_COM_BODY_END"
-msgstr "结束"
-
-msgid "IDS_COM_OPT_DELETE"
-msgstr "删除"
-
-msgid "IDS_COM_POP_CANCEL"
-msgstr "取消"
+msgid "IDS_TASKMGR_HEADER_RUNNING"
+msgstr "正在运行"
 
-msgid "IDS_COM_SK3_END_ALL_APPLICATIONS"
-msgstr "结束所有的程序"
+msgid "IDS_TASKMGR_MBODY_NO_APPS_OPEN"
+msgstr "无开启应用程序"
 
-msgid "IDS_BMG_POP_NO_TASKS"
-msgstr "没æ\9c\89ä»»å\8a¡"
+msgid "IDS_TASKMGR_MBODY_NO_RECENTLY_USED_APPS"
+msgstr "æ\97 æ\9c\80è¿\91使ç\94¨ç\9a\84åº\94ç\94¨ç¨\8båº\8f"
 
-msgid "IDS_ST_BODY_IN_USE"
-msgstr "使用中"
+msgid "IDS_TASKMGR_MBODY_RECENTLY_USED"
+msgstr "最近使用"
 
-msgid "IDS_MUSIC_OPT_HISTORY"
-msgstr "历史记录"
+msgid "IDS_TASKMGR_POP_CLEAR_ALL_APP_HISTORY_Q"
+msgstr "是否清除所有应用程序历史?"
 
-msgid "IDS_TASKMGR_NO_RUNNING_TASK"
-msgstr "No running task"
+msgid "IDS_TASKMGR_POP_CLEAR_PS_HISTORY_Q"
+msgstr "是否清除 %s 历史?"
 
-msgid "IDS_TASKMGR_NO_TASK_HISTORY"
-msgstr "No task history"
+msgid "IDS_TASKMGR_POP_CLOSE_ALL_APPS_Q_THIS_MAY_CAUSE_DATA_TO_BE_LOST"
+msgstr "是否关闭所有应用程序?这可能导致数据丢失"
 
-msgid "IDS_TASKMGR_CANNOT_LAUNCH_APPLICATION"
-msgstr "Cannot launch application"
+msgid "IDS_TASKMGR_POP_CLOSE_PS_APP_Q_THIS_MAY_CAUSE_DATA_TO_BE_LOST"
+msgstr "是否关闭 %s 应用程序?这可能导致数据丢失"
 
-msgid "IDS_TASKMGR_END_ALL_TASKS"
-msgstr "End all tasks"
+msgid "IDS_TASKMGR_POP_UNABLE_TO_OPEN_APPLICATION"
+msgstr "无法打开应用程序"
 
-msgid "IDS_TASKMGR_DELETE_ALL_HISTORY"
-msgstr "Delete all history"
-
-msgid "IDS_TASKMGR_INFO_MESSAGE"
-msgstr "Select a task which you wish to return to from a task list."
-
-msgid "IDS_TASKMGR_WARNNING_TERMINATE_ALL_TASKS"
-msgstr "Terminate all tasks?<br><br>This may cause data loss!"
-
-msgid "IDS_TASKMGR_ASK_TERMINATE_TASK"
-msgstr "Are you sure to terminate<br> %s task?<br><br>This may cause data loss!"
-
-msgid "IDS_TASKMGR_ASK_CLEAR_HISTORY"
-msgstr "Are you sure to clear<br> %s history?"
-
-msgid "IDS_TASKMGR_DELETING_HISTORY"
-msgstr "Deleting history!"
-
-msgid "IDS_TASKMGR_ASK_DELETE_ALL_HISTORY"
-msgstr "Delete all task history?"
-
-msgid "IDS_TASKMGR_TERMINATING_TASK"
-msgstr "Terminating task!"
-
-msgid "IDS_TASKMGR_TERMINATING_ALL_TASKS"
-msgstr "Terminating all tasks!"
-
-msgid "IDS_TASKMGR_NO_TASK_TO_TERMINATE"
-msgstr "No task to terminate!"
+msgid "IDS_TASKMGR_HEADER_TASK_SWITCHER"
+msgstr "任务切换器"
 
-msgid "IDS_TASKMGR_NO_TASK"
-msgstr "No task"
index 44f6ec42fb2efe7da3184837c47f1ee574704134..916d9c18169b22e095d6b3bdd2f993c979a70f47 100644 (file)
@@ -1,95 +1,36 @@
-msgid "IDS_TASKMGR_BODY_APPLICATION"
-msgstr "æ\87\89ç\94¨ç¨\8bå¼\8f"
+msgid "IDS_TASKMGR_BUTTON_CLEAR_HISTORY_ABB"
+msgstr "æ¸\85é\99¤è¨\98é\8c\84"
 
-msgid "IDS_TASKMGR_BUTTON_CLEAR_ALL"
-msgstr "全部清除"
+msgid "IDS_TASKMGR_BUTTON_CLOSE_ALL_APPLICATIONS"
+msgstr "關閉所有應用程式"
 
-msgid "IDS_TASKMGR_HEADER_TASK_SWITCHER"
-msgstr "工作切換器"
-
-msgid "IDS_TASKMGR_POP_CLEARING_HISTORY_ING"
-msgstr "正在清除歷史記錄..."
-
-msgid "IDS_TASKMGR_POP_EXITING_APPLICATIONS_ING"
-msgstr "正在退出應用程式..."
-
-msgid "IDS_TASKMGR_POP_EXITING_APPLICATION_ING"
-msgstr "正在退出應用程式..."
-
-msgid "IDS_TASKMGR_POP_EXIT_ALL_APPLICATIONS_Q"
-msgstr "退出所有應用程式?"
-
-msgid "IDS_TASKMGR_POP_EXIT_APPLICATION_Q"
-msgstr "要退出應用程式嗎?"
-
-msgid "IDS_TASKMGR_POP_NO_APPLICATIONS_RUNNING"
-msgstr "沒有執行中的應用程式"
-
-msgid "IDS_TASKMGR_POP_NO_HISTORY_TO_CLEAR"
-msgstr "沒有要清除的歷史記錄"
-
-msgid "IDS_COM_BODY_END"
-msgstr "結束"
-
-msgid "IDS_COM_OPT_DELETE"
-msgstr "刪除"
-
-msgid "IDS_COM_POP_CANCEL"
-msgstr "取消"
+msgid "IDS_TASKMGR_HEADER_RUNNING"
+msgstr "執行"
 
-msgid "IDS_COM_SK3_END_ALL_APPLICATIONS"
-msgstr "çµ\90æ\9d\9få\85¨é\83¨應用程式"
+msgid "IDS_TASKMGR_MBODY_NO_APPS_OPEN"
+msgstr "ç\84¡é\96\8bå\95\9fç\9a\84應用程式"
 
-msgid "IDS_BMG_POP_NO_TASKS"
-msgstr "無工作"
+msgid "IDS_TASKMGR_MBODY_NO_RECENTLY_USED_APPS"
+msgstr "無最近使用的應用程式"
 
-msgid "IDS_ST_BODY_IN_USE"
-msgstr "使用中"
+msgid "IDS_TASKMGR_MBODY_RECENTLY_USED"
+msgstr "最近使用"
 
-msgid "IDS_MUSIC_OPT_HISTORY"
-msgstr "æ­·ç¨\8bè¨\98é\8c\84"
+msgid "IDS_TASKMGR_POP_CLEAR_ALL_APP_HISTORY_Q"
+msgstr "æ¸\85é\99¤æ\89\80æ\9c\89æ\87\89ç\94¨ç¨\8bå¼\8fè¨\98é\8c\84å\97\8eï¼\9f"
 
-msgid "IDS_TASKMGR_NO_RUNNING_TASK"
-msgstr "No running task"
+msgid "IDS_TASKMGR_POP_CLEAR_PS_HISTORY_Q"
+msgstr "清除 %s 記錄嗎?"
 
-msgid "IDS_TASKMGR_NO_TASK_HISTORY"
-msgstr "No task history"
+msgid "IDS_TASKMGR_POP_CLOSE_ALL_APPS_Q_THIS_MAY_CAUSE_DATA_TO_BE_LOST"
+msgstr "關閉所有應用程式嗎?這可能會導致數據遺失"
 
-msgid "IDS_TASKMGR_CANNOT_LAUNCH_APPLICATION"
-msgstr "Cannot launch application"
+msgid "IDS_TASKMGR_POP_CLOSE_PS_APP_Q_THIS_MAY_CAUSE_DATA_TO_BE_LOST"
+msgstr "關閉 %s 應用程式嗎?這可能會導致數據遺失"
 
-msgid "IDS_TASKMGR_END_ALL_TASKS"
-msgstr "End all tasks"
+msgid "IDS_TASKMGR_POP_UNABLE_TO_OPEN_APPLICATION"
+msgstr "無法開啟應用程式"
 
-msgid "IDS_TASKMGR_DELETE_ALL_HISTORY"
-msgstr "Delete all history"
-
-msgid "IDS_TASKMGR_INFO_MESSAGE"
-msgstr "Select a task which you wish to return to from a task list."
-
-msgid "IDS_TASKMGR_WARNNING_TERMINATE_ALL_TASKS"
-msgstr "Terminate all tasks?<br><br>This may cause data loss!"
-
-msgid "IDS_TASKMGR_ASK_TERMINATE_TASK"
-msgstr "Are you sure to terminate<br> %s task?<br><br>This may cause data loss!"
-
-msgid "IDS_TASKMGR_ASK_CLEAR_HISTORY"
-msgstr "Are you sure to clear<br> %s history?"
-
-msgid "IDS_TASKMGR_DELETING_HISTORY"
-msgstr "Deleting history!"
-
-msgid "IDS_TASKMGR_ASK_DELETE_ALL_HISTORY"
-msgstr "Delete all task history?"
-
-msgid "IDS_TASKMGR_TERMINATING_TASK"
-msgstr "Terminating task!"
-
-msgid "IDS_TASKMGR_TERMINATING_ALL_TASKS"
-msgstr "Terminating all tasks!"
-
-msgid "IDS_TASKMGR_NO_TASK_TO_TERMINATE"
-msgstr "No task to terminate!"
+msgid "IDS_TASKMGR_HEADER_TASK_SWITCHER"
+msgstr "工作切換器"
 
-msgid "IDS_TASKMGR_NO_TASK"
-msgstr "No task"
index 2c52289df8e3a4a1b5d5b9926d69dd26d6623e69..89c754b4fe38413a732e2f1c7241302448efcf82 100644 (file)
@@ -1,95 +1,36 @@
-msgid "IDS_TASKMGR_BODY_APPLICATION"
-msgstr "æ\87\89ç\94¨ç¨\8bå¼\8f"
+msgid "IDS_TASKMGR_BUTTON_CLEAR_HISTORY_ABB"
+msgstr "æ¸\85é\99¤æ­·ç¨\8bè¨\98é\8c\84"
 
-msgid "IDS_TASKMGR_BUTTON_CLEAR_ALL"
-msgstr "全部清除"
+msgid "IDS_TASKMGR_BUTTON_CLOSE_ALL_APPLICATIONS"
+msgstr "關閉所有應用程式"
 
-msgid "IDS_TASKMGR_HEADER_TASK_SWITCHER"
-msgstr "程式切換"
-
-msgid "IDS_TASKMGR_POP_CLEARING_HISTORY_ING"
-msgstr "清除歷程…"
-
-msgid "IDS_TASKMGR_POP_EXITING_APPLICATIONS_ING"
-msgstr "退出應用程式..."
-
-msgid "IDS_TASKMGR_POP_EXITING_APPLICATION_ING"
-msgstr "退出應用程式..."
-
-msgid "IDS_TASKMGR_POP_EXIT_ALL_APPLICATIONS_Q"
-msgstr "退出所有應用程式"
-
-msgid "IDS_TASKMGR_POP_EXIT_APPLICATION_Q"
-msgstr "要退出應用程式嗎?"
-
-msgid "IDS_TASKMGR_POP_NO_APPLICATIONS_RUNNING"
-msgstr "沒有執行的應用程式"
-
-msgid "IDS_TASKMGR_POP_NO_HISTORY_TO_CLEAR"
-msgstr "沒有歷程可被清除"
-
-msgid "IDS_COM_BODY_END"
-msgstr "結束"
-
-msgid "IDS_COM_OPT_DELETE"
-msgstr "刪除"
-
-msgid "IDS_COM_POP_CANCEL"
-msgstr "取消"
+msgid "IDS_TASKMGR_HEADER_RUNNING"
+msgstr "執行中"
 
-msgid "IDS_COM_SK3_END_ALL_APPLICATIONS"
-msgstr "結束所有應用程式"
+msgid "IDS_TASKMGR_MBODY_NO_APPS_OPEN"
+msgstr "沒有開啟應用程式"
 
-msgid "IDS_BMG_POP_NO_TASKS"
-msgstr "沒有任務"
+msgid "IDS_TASKMGR_MBODY_NO_RECENTLY_USED_APPS"
+msgstr "沒有最近使用的應用程式"
 
-msgid "IDS_ST_BODY_IN_USE"
-msgstr "使用中"
+msgid "IDS_TASKMGR_MBODY_RECENTLY_USED"
+msgstr "最近使用"
 
-msgid "IDS_MUSIC_OPT_HISTORY"
-msgstr "æ­·ç¨\8bè¨\98é\8c\84"
+msgid "IDS_TASKMGR_POP_CLEAR_ALL_APP_HISTORY_Q"
+msgstr "æ¸\85é\99¤æ\89\80æ\9c\89æ\87\89ç\94¨ç¨\8bå¼\8fæ­·ç¨\8bè¨\98é\8c\84å\97\8eï¼\9f"
 
-msgid "IDS_TASKMGR_NO_RUNNING_TASK"
-msgstr "No running task"
+msgid "IDS_TASKMGR_POP_CLEAR_PS_HISTORY_Q"
+msgstr "清除 %s 歷程記錄嗎?"
 
-msgid "IDS_TASKMGR_NO_TASK_HISTORY"
-msgstr "No task history"
+msgid "IDS_TASKMGR_POP_CLOSE_ALL_APPS_Q_THIS_MAY_CAUSE_DATA_TO_BE_LOST"
+msgstr "關閉所有應用程式嗎?這可能會導致資料遺失"
 
-msgid "IDS_TASKMGR_CANNOT_LAUNCH_APPLICATION"
-msgstr "Cannot launch application"
+msgid "IDS_TASKMGR_POP_CLOSE_PS_APP_Q_THIS_MAY_CAUSE_DATA_TO_BE_LOST"
+msgstr "關閉 %s 應用程式嗎?這可能會導致資料遺失"
 
-msgid "IDS_TASKMGR_END_ALL_TASKS"
-msgstr "End all tasks"
+msgid "IDS_TASKMGR_POP_UNABLE_TO_OPEN_APPLICATION"
+msgstr "無法開啟應用程式"
 
-msgid "IDS_TASKMGR_DELETE_ALL_HISTORY"
-msgstr "Delete all history"
-
-msgid "IDS_TASKMGR_INFO_MESSAGE"
-msgstr "Select a task which you wish to return to from a task list."
-
-msgid "IDS_TASKMGR_WARNNING_TERMINATE_ALL_TASKS"
-msgstr "Terminate all tasks?<br><br>This may cause data loss!"
-
-msgid "IDS_TASKMGR_ASK_TERMINATE_TASK"
-msgstr "Are you sure to terminate<br> %s task?<br><br>This may cause data loss!"
-
-msgid "IDS_TASKMGR_ASK_CLEAR_HISTORY"
-msgstr "Are you sure to clear<br> %s history?"
-
-msgid "IDS_TASKMGR_DELETING_HISTORY"
-msgstr "Deleting history!"
-
-msgid "IDS_TASKMGR_ASK_DELETE_ALL_HISTORY"
-msgstr "Delete all task history?"
-
-msgid "IDS_TASKMGR_TERMINATING_TASK"
-msgstr "Terminating task!"
-
-msgid "IDS_TASKMGR_TERMINATING_ALL_TASKS"
-msgstr "Terminating all tasks!"
-
-msgid "IDS_TASKMGR_NO_TASK_TO_TERMINATE"
-msgstr "No task to terminate!"
+msgid "IDS_TASKMGR_HEADER_TASK_SWITCHER"
+msgstr "任務切換"
 
-msgid "IDS_TASKMGR_NO_TASK"
-msgstr "No task"
index 1d8973720c972e66b2bdb899e0e23148c37de967..5b7f7377c842b7b55dc0007411c37a436eb9e2f2 100644 (file)
@@ -1,18 +1,20 @@
- /*
-  * Copyright 2012  Samsung Electronics Co., Ltd
-  *
-  * Licensed under the Flora License, Version 1.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.tizenopensource.org/license
-  *
-  * 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.
-  */
+/*
+ * Copyright 2012  Samsung Electronics Co., Ltd
+ * 
+ * Licensed under the Flora License, Version 1.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.tizenopensource.org/license
+ * 
+ * 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.
+ */
+
+
 
 
 #include <unistd.h>
index 11171d87890abf77e25e2e803c8da66610f6f43d..15a29ec911e16bb19b08e65003a2e5c62ec2d8bd 100644 (file)
@@ -1,18 +1,20 @@
- /*
-  * Copyright 2012  Samsung Electronics Co., Ltd
-  *
-  * Licensed under the Flora License, Version 1.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.tizenopensource.org/license
-  *
-  * 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.
-  */
+/*
+ * Copyright 2012  Samsung Electronics Co., Ltd
+ * 
+ * Licensed under the Flora License, Version 1.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.tizenopensource.org/license
+ * 
+ * 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.
+ */
+
+
 
 
 #ifndef __TASKMANAGER_CPU_H__
index 6a0ed22dfacc0c6a55a9a196a5b9fb8ec5beb1e7..eeb0e070e5299ad0a83d64ca23501e92ee581633 100644 (file)
@@ -1,18 +1,20 @@
- /*
-  * Copyright 2012  Samsung Electronics Co., Ltd
-  *
-  * Licensed under the Flora License, Version 1.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.tizenopensource.org/license
-  *
-  * 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.
-  */
+/*
+ * Copyright 2012  Samsung Electronics Co., Ltd
+ * 
+ * Licensed under the Flora License, Version 1.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.tizenopensource.org/license
+ * 
+ * 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.
+ */
+
+
 
 
 #include <stdlib.h>
@@ -166,6 +168,8 @@ int taskmanager_get_history_app_info(void *data)
                    || strlen(rec_result.pkg_name) < 1) {
                        continue;
                }
+
+               _D("%s\n", rec_result.pkg_name);
                ret = ail_package_get_appinfo(rec_result.pkg_name, &handle);
                if (ret != AIL_ERROR_OK) {
                        _D("Failed to get appinfo(%d)\n", ret);
@@ -207,6 +211,7 @@ int taskmanager_get_history_app_info(void *data)
                        }
                        snprintf(buf, sizeof(buf), "%s", valc);
                        info->icn_path = strdup(buf);
+                       _D("%s\n", info->icn_path);
 
                        info->ad = ad;
                        info->pid = 0;
index 1a57c21e49ff01ab412f1613717c0ffe89b5d633..8d8ef060931dbf25a7b1d4e5c7d35cf7629f129d 100644 (file)
@@ -1,18 +1,20 @@
- /*
-  * Copyright 2012  Samsung Electronics Co., Ltd
-  *
-  * Licensed under the Flora License, Version 1.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.tizenopensource.org/license
-  *
-  * 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.
-  */
+/*
+ * Copyright 2012  Samsung Electronics Co., Ltd
+ * 
+ * Licensed under the Flora License, Version 1.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.tizenopensource.org/license
+ * 
+ * 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.
+ */
+
+
 
 
 #ifndef __TASKMANAGER_EINA_H__
old mode 100644 (file)
new mode 100755 (executable)
index 75e7246..88a8341
@@ -1,18 +1,20 @@
- /*
-  * Copyright 2012  Samsung Electronics Co., Ltd
-  *
-  * Licensed under the Flora License, Version 1.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.tizenopensource.org/license
-  *
-  * 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.
-  */
+/*
+ * Copyright 2012  Samsung Electronics Co., Ltd
+ * 
+ * Licensed under the Flora License, Version 1.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.tizenopensource.org/license
+ * 
+ * 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.
+ */
+
+
 
 
 #include <stdio.h>
@@ -54,8 +56,8 @@ static Elm_Genlist_Item_Class itc_separator4;
 static Elm_Genlist_Item_Class itc_separator2;
 
 static char *button_text[TS_MAX] = {
-       "IDS_COM_SK3_END_ALL_APPLICATIONS",
-       "IDS_TASKMGR_DELETE_ALL_HISTORY"
+       "IDS_TASKMGR_BUTTON_CLOSE_ALL_APPLICATIONS",
+       "IDS_TASKMGR_BUTTON_CLEAR_HISTORY_ABB"
 };
 
 static void end_all_inuse_cb(void *data, Evas_Object *obj, void *event_info);
@@ -64,24 +66,19 @@ static void delete_all_history_cb(void *data, Evas_Object *obj,
 void (*func_del[TS_MAX]) (void *data, Evas_Object *obj, void *event_info) = {
 &end_all_inuse_cb, &delete_all_history_cb};
 
-static char *icon_text[TS_MAX] = {
-       "IDS_COM_BODY_END",
-       "IDS_COM_OPT_DELETE"
-};
-
 static void end_inuse_cb(void *data, Evas_Object *obj, void *event_info);
 static void delete_history_cb(void *data, Evas_Object *obj, void *event_info);
 void (*func_end[TS_MAX]) (void *data, Evas_Object *obj, void *event_info) = {
 &end_inuse_cb, &delete_history_cb};
 
 static char *group_name[TS_MAX] = {
-       "IDS_ST_BODY_IN_USE",
-       "IDS_MUSIC_OPT_HISTORY"
+       "IDS_TASKMGR_HEADER_RUNNING",
+       "IDS_TASKMGR_MBODY_RECENTLY_USED"
 };
 
 static char *nolist_text[TS_MAX] = {
-       "IDS_TASKMGR_NO_RUNNING_TASK",
-       "IDS_TASKMGR_NO_TASK_HISTORY"
+       "IDS_TASKMGR_MBODY_NO_APPS_OPEN",
+       "IDS_TASKMGR_MBODY_NO_RECENTLY_USED_APPS"
 };
 
 void taskmanager_free_info(struct _task_info *info);
@@ -146,7 +143,7 @@ static void end_all_inuse_cb(void *data, Evas_Object *obj, void *event_info)
        char buf[_BUF_MAX] = { 0, };
 
        ad->mode = MODE_END_ALL_INUSE;
-       snprintf(buf, sizeof(buf), _("IDS_TASKMGR_WARNNING_TERMINATE_ALL_TASKS"));
+       snprintf(buf, sizeof(buf), T_("IDS_TASKMGR_POP_CLOSE_ALL_APPS_Q_THIS_MAY_CAUSE_DATA_TO_BE_LOST"));
        if (ad->popup_ask) {
                evas_object_del(ad->popup_ask);
                ad->popup_ask = NULL;
@@ -166,7 +163,7 @@ _D("func\n");
 //     refresh_app_info(ad);
 
        ad->mode = MODE_DEL_ALL_HISTORY;
-       snprintf(buf, sizeof(buf), _("IDS_TASKMGR_ASK_DELETE_ALL_HISTORY"));
+       snprintf(buf, sizeof(buf), T_("IDS_TASKMGR_POP_CLEAR_ALL_APP_HISTORY_Q"));
        if (ad->popup_ask) {
                evas_object_del(ad->popup_ask);
                ad->popup_ask = NULL;
@@ -183,7 +180,7 @@ static void end_inuse_cb(void *data, Evas_Object *obj, void *event_info)
        char buf[_BUF_MAX] = { 0, };
 
        ad->mode = MODE_END_INUSE;
-       snprintf(buf, _BUF_MAX, _("IDS_TASKMGR_ASK_TERMINATE_TASK"), info_ev->app_name);
+       snprintf(buf, _BUF_MAX, T_("IDS_TASKMGR_POP_CLOSE_PS_APP_Q_THIS_MAY_CAUSE_DATA_TO_BE_LOST"), info_ev->app_name);
        if (ad->popup_ask) {
                evas_object_del(ad->popup_ask);
                ad->popup_ask = NULL;
@@ -203,7 +200,7 @@ static void delete_history_cb(void *data, Evas_Object *obj, void *event_info)
 
        ad->mode = MODE_DEL_HISTORY;
 
-       snprintf(buf, _BUF_MAX, _("IDS_TASKMGR_ASK_CLEAR_HISTORY"), info_ev->app_name);
+       snprintf(buf, _BUF_MAX, T_("IDS_TASKMGR_POP_CLEAR_PS_HISTORY_Q"), info_ev->app_name);
        if (ad->popup_ask) {
                evas_object_del(ad->popup_ask);
                ad->popup_ask = NULL;
@@ -226,7 +223,7 @@ static char *nl_text_get(void *data, Evas_Object *obj, const char *part)
        char buf[_BUF_MAX] = { 0, };
 
        if (!strcmp(part, "elm.text")) {
-               snprintf(buf, sizeof(buf), "%s", _(nolist_text[(int)data]));
+               snprintf(buf, sizeof(buf), "%s", T_(nolist_text[(int)data]));
 
                return strdup(buf);
        }
@@ -241,6 +238,9 @@ _D("func\n");
        struct _task_info *info;
        /* parameter to block double click */
        static int selected = 0;
+       Elm_Object_Item *it = (Elm_Object_Item *) event_info;
+
+       elm_genlist_item_selected_set(it, EINA_FALSE);
 
        retm_if(ad == NULL, "Invalid argument: appdata is NULL\n");
 
@@ -270,14 +270,13 @@ _D("func\n");
        if (info->pid) {
                /* when application is alive */
                aul_resume_pid(info->pid);
-               elm_exit();
-
+               selected = 0;
        } else {
                /* when application is dead */
                if (info->pkg_name == NULL) {
                        util_show_popup_with_message(info->ad->win,
                                        3.0,
-                                       _("IDS_TASKMGR_CANNOT_LAUNCH_APPLICATION"));
+                                       T_("IDS_TASKMGR_POP_UNABLE_TO_OPEN_APPLICATION"));
                        selected = 0;
 
                } else {
@@ -288,10 +287,10 @@ _D("func\n");
                                 * since being unifyed dialer, voice call and video call
                                 */
                                aul_launch_app(info->pkg_name, NULL);
-
+                               selected = 0;
                        } else {
                                aul_launch_app(info->pkg_name, info->b);
-
+                               selected = 0;
                        }
                }
        }
@@ -345,7 +344,7 @@ static Evas_Object *_gl_content_get_app(void *data, Evas_Object *obj,
 
        } else if (!strcmp(part, "elm.icon.2")) {
                btn = elm_button_add(obj);
-               elm_object_text_set(btn, _("IDS_COM_BODY_END"));
+               elm_object_text_set(btn, S_("IDS_COM_BODY_END"));
                elm_object_style_set(btn, "default");
 
                evas_object_smart_callback_add(btn, "clicked",
@@ -406,7 +405,7 @@ _D("func\n");
 static char *_bl_text_get(void *data, Evas_Object *obj, const char *part)
 {
        if (!strcmp(part, "elm.text")) {
-               return strdup(_(button_text[(int)data]));
+               return strdup(T_(button_text[(int)data]));
 
        }
        return NULL;
@@ -423,7 +422,7 @@ static Evas_Object *_bl_content_get(void *data, Evas_Object *obj,
                btn = elm_button_add(obj);
                elm_object_style_set(btn, "default");
 
-               elm_object_text_set(btn, _(button_text[(int)data]));
+               elm_object_text_set(btn, T_(button_text[(int)data]));
                evas_object_smart_callback_add(btn, "clicked",
                                               func_del[(int)data], ad);
                elm_object_focus_set(btn, EINA_FALSE);
@@ -446,8 +445,8 @@ static char *_gl_text_get_title(void *data, Evas_Object *obj, const char *part)
        char buf[_BUF_MAX];
 
        if (!strcmp(part, "elm.text")) {
-               snprintf(buf, sizeof(buf), "%s (%d)", _(group_name[(int)data]),
-                        _get_grp_cnt((int)data));
+               snprintf(buf, sizeof(buf), "%s (%d)",
+                               T_(group_name[(int)data]), _get_grp_cnt((int)data));
                return strdup(buf);
        }
        return NULL;
@@ -513,7 +512,7 @@ static Evas_Object *_gl_content_get_his(void *data, Evas_Object *obj,
 
        } else if (!strcmp(part, "elm.icon.2")) {
                btn = elm_button_add(obj);
-               elm_object_text_set(btn, _("IDS_COM_OPT_DELETE"));
+               elm_object_text_set(btn, S_("IDS_COM_OPT_DELETE"));
                elm_object_style_set(btn, "default");
 
                evas_object_smart_callback_add(btn, "clicked",
@@ -633,6 +632,7 @@ _D("func\n");
                                                (void *)i, git,
                                                ELM_GENLIST_ITEM_NONE,
                                                nl_sel, NULL);
+                       elm_genlist_item_select_mode_set(item, ELM_OBJECT_SELECT_MODE_DISPLAY_ONLY);
                }
        }
        return 0;
@@ -705,17 +705,17 @@ _D("func\n");
 void _set_genlist(struct appdata *ad)
 {
 _D("func\n");
-       int ret;
        retm_if(ad == NULL, "Invalid argument: appdata is NULL\n");
+       int ret = AUL_R_ERROR;
 
        _init_grp_cnt();
 
-       aul_app_get_running_app_info(runapp_info_get, ad);
+       while (ret != AUL_R_OK)
+               ret = aul_app_get_running_app_info(runapp_info_get, ad);
+
        taskmanager_get_history_app_info(ad);
-       ret = _set_genlist_from_eina(ad);
-       if (ret < 0) {
-               elm_exit();
-       }
+       _set_genlist_from_eina(ad);
+
 }
 
 void _init_pthread(void)
@@ -799,6 +799,7 @@ _D("func\n");
        retvm_if(ad == NULL, -1, "Invalid argument: appdata is NULL\n");
 
        ad->ending = EINA_TRUE;
+//     egi = evas_object_data_get(ad->popup_ask, "selected_egi");
 
        EINA_LIST_FOREACH_SAFE(ad->applist[TS_INUSE], l, l_next, info) {
                if (info->it == g_egi) {
@@ -871,6 +872,7 @@ int response_del_history(struct appdata *ad)
        retvm_if(ad == NULL, -1, "Invalid argument: appdata is NULL\n");
 
        _show_progressbar(ad);
+//     egi = evas_object_data_get(ad->popup_ask, "selected_egi");
        EINA_LIST_FOREACH_SAFE(ad->applist[TS_HISTORY], l, l_next, info) {
                if (info->it == g_egi) {
 
@@ -949,6 +951,7 @@ int response_kill_inuse(struct appdata *ad)
        retvm_if(ad == NULL, -1, "Invalid argument: appdata is NULL\n");
 
        _show_progressbar(ad);
+//     egi = evas_object_data_get(ad->popup_ask, "selected_egi");
 
        EINA_LIST_FOREACH_SAFE(ad->applist[TS_INUSE], l, l_next, info) {
                if (info->it == g_egi) {
index b6a3fa89a8c64a3f50da1cc3afedeb1be1e5875b..fd15c30625c6761ef679b2ce21ef66b9cb8d3abf 100644 (file)
@@ -1,18 +1,20 @@
- /*
-  * Copyright 2012  Samsung Electronics Co., Ltd
-  *
-  * Licensed under the Flora License, Version 1.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.tizenopensource.org/license
-  *
-  * 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.
-  */
+/*
+ * Copyright 2012  Samsung Electronics Co., Ltd
+ * 
+ * Licensed under the Flora License, Version 1.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.tizenopensource.org/license
+ * 
+ * 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.
+ */
+
+
 
 
 #ifndef __TASKMANAGER_GENLIST_H__
index bf45470ef54da39d2ef46ce8b04e6d100bef340d..33b41c5c2311ecf28a0a1765bacb1f5dcb60e2d6 100644 (file)
@@ -1,18 +1,20 @@
- /*
-  * Copyright 2012  Samsung Electronics Co., Ltd
-  *
-  * Licensed under the Flora License, Version 1.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.tizenopensource.org/license
-  *
-  * 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.
-  */
+/*
+ * Copyright 2012  Samsung Electronics Co., Ltd
+ * 
+ * Licensed under the Flora License, Version 1.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.tizenopensource.org/license
+ * 
+ * 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.
+ */
+
+
 
 
 #include <stdio.h>
index 45cac1e0c224f30e5511894556eab1524358b6cf..dd721f4f447140816937d9765d215f39684c96e2 100644 (file)
@@ -1,18 +1,20 @@
- /*
-  * Copyright 2012  Samsung Electronics Co., Ltd
-  *
-  * Licensed under the Flora License, Version 1.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.tizenopensource.org/license
-  *
-  * 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.
-  */
+/*
+ * Copyright 2012  Samsung Electronics Co., Ltd
+ * 
+ * Licensed under the Flora License, Version 1.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.tizenopensource.org/license
+ * 
+ * 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.
+ */
+
+
 
 
 #ifndef __TASKMANAGER_INFO_H__
old mode 100644 (file)
new mode 100755 (executable)
index 655deb1..8285da0
@@ -1,18 +1,20 @@
- /*
-  * Copyright 2012  Samsung Electronics Co., Ltd
-  *
-  * Licensed under the Flora License, Version 1.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.tizenopensource.org/license
-  *
-  * 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.
-  */
+/*
+ * Copyright 2012  Samsung Electronics Co., Ltd
+ * 
+ * Licensed under the Flora License, Version 1.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.tizenopensource.org/license
+ * 
+ * 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.
+ */
+
+
 
 
 #include <appcore-common.h>
@@ -28,7 +30,6 @@
 #include "_progressbar.h"
 #include "_info.h"
 
-
 int _dead_cb(int pid, void *data)
 {
 _D("func\n");
@@ -148,7 +149,6 @@ int _app_create(struct appdata *ad)
 
        nv = _add_naviframe(ly);
        retvm_if(nv == NULL, -1, "Failed to add naviframe\n");
-       evas_object_show(nv);
        ad->nv = nv;
 
        ly = _add_layout(ad->nv, EDJ_NAME, GRP_TM);
@@ -166,7 +166,6 @@ int _app_create(struct appdata *ad)
        evas_object_smart_callback_add(gl, "scroll,anim,start", _anim_start_cb, ad);
        evas_object_smart_callback_add(gl, "scroll,anim,stop", _anim_stop_cb, ad);
 //     evas_object_smart_callback_add(gl, "edge,bottom", _moved_cb, ad);
-       evas_object_show(gl);
        ad->gl = gl;
 
        bt = elm_button_add(nv);
@@ -208,11 +207,12 @@ static Eina_Bool __climsg_cb(void *data, int type, void *event)
        static Atom a_deact;
        pid_t pid_a, pid_d;
 
+       struct appdata *ad = (struct appdata *)data;
        Ecore_X_Event_Client_Message *ev = event;
 
        if(ev == NULL) {
                _E("Invalid argument: event is NULL\n");
-               ecore_timer_add(1.5, _exit_cb, NULL);
+               ecore_timer_add(0.3, _exit_cb, NULL);
                return ECORE_CALLBACK_CANCEL;
        }
 
@@ -227,7 +227,7 @@ static Eina_Bool __climsg_cb(void *data, int type, void *event)
 
        if (ev->message_type == a_deact) {
                _D("exit after 1.0 sec\n");
-               ecore_timer_add(1.5, _exit_cb, NULL);
+               ad->exit_timer = ecore_timer_add(0.3, _exit_cb, ad);
                return ECORE_CALLBACK_CANCEL;
        } else {
                _D("messagre is act\n");
@@ -246,18 +246,6 @@ static Eina_Bool _ask_kill_process(void *data)
        ad->mode *= 2;
        /* why? check enum in taskmgr.h */
 
-       switch (ad->mode) {
-               case MODE_KILL_INUSE:
-                       _D("kill all inuse\n");
-                       response_kill_inuse(ad);
-                       break;
-
-               case MODE_KILL_ALL_INUSE:
-                       _D("kill all inuse\n");
-                       response_kill_all_inuse(ad);
-                       break;
-       }
-/*
        if (ad->popup_ask) {
                evas_object_del(ad->popup_ask);
                ad->popup_ask = NULL;
@@ -265,7 +253,7 @@ static Eina_Bool _ask_kill_process(void *data)
        ad->popup_ask = _add_popup_ask(ad->win,
                        "It might be an invalid process. Do you want to kill this proceess anyway?",
                        ad);
-*/
+
        return ECORE_CALLBACK_CANCEL;
 }
 
@@ -352,7 +340,7 @@ Eina_Bool _create_idler_cb(void *data)
        _init_pthread();
        _get_win_geometry(ad);
        _set_vconf_noti(ad);
-       ecore_event_handler_add(ECORE_X_EVENT_CLIENT_MESSAGE, __climsg_cb, NULL);
+       ecore_event_handler_add(ECORE_X_EVENT_CLIENT_MESSAGE, __climsg_cb, ad);
 
        return ECORE_CALLBACK_CANCEL;
 }
index 61f8b8898ba5ffe791105e7c426aad162d8686ae..aff83387a7813ec74b860d20f0f48724e92e9c8f 100644 (file)
@@ -1,18 +1,20 @@
- /*
-  * Copyright 2012  Samsung Electronics Co., Ltd
-  *
-  * Licensed under the Flora License, Version 1.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.tizenopensource.org/license
-  *
-  * 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.
-  */
+/*
+ * Copyright 2012  Samsung Electronics Co., Ltd
+ * 
+ * Licensed under the Flora License, Version 1.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.tizenopensource.org/license
+ * 
+ * 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.
+ */
+
+
 
 
 #ifndef __TASKMANAGER_LOGIC_H__
index e96173576978237946b05b57ddb7a2e203ef1e63..3c3b19ffb4701ae0b5599f15f7017669ff65e354 100644 (file)
@@ -1,18 +1,20 @@
- /*
-  * Copyright 2012  Samsung Electronics Co., Ltd
-  *
-  * Licensed under the Flora License, Version 1.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.tizenopensource.org/license
-  *
-  * 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.
-  */
+/*
+ * Copyright 2012  Samsung Electronics Co., Ltd
+ * 
+ * Licensed under the Flora License, Version 1.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.tizenopensource.org/license
+ * 
+ * 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.
+ */
+
+
 
 
 #include "taskmanager.h"
index f983cf31a275f999feb4ceb4d268880b36eeb4a3..26646250e9cffbf8078f55ec8faf5fa8b3cc3416 100644 (file)
@@ -1,18 +1,20 @@
- /*
-  * Copyright 2012  Samsung Electronics Co., Ltd
-  *
-  * Licensed under the Flora License, Version 1.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.tizenopensource.org/license
-  *
-  * 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.
-  */
+/*
+ * Copyright 2012  Samsung Electronics Co., Ltd
+ * 
+ * Licensed under the Flora License, Version 1.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.tizenopensource.org/license
+ * 
+ * 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.
+ */
+
+
 
 
 #ifndef __TASKMANAGER_PROGRESSBAR_H__
index def79ceb5ebb3455cd8213c914e99ac686f3db84..9f8d71a54c317d92704c119fd1e6e7c4d5026a45 100644 (file)
@@ -1,18 +1,20 @@
- /*
-  * Copyright 2012  Samsung Electronics Co., Ltd
-  *
-  * Licensed under the Flora License, Version 1.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.tizenopensource.org/license
-  *
-  * 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.
-  */
+/*
+ * Copyright 2012  Samsung Electronics Co., Ltd
+ * 
+ * Licensed under the Flora License, Version 1.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.tizenopensource.org/license
+ * 
+ * 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.
+ */
+
+
 
 
 #include <appcore-efl.h>
@@ -169,17 +171,17 @@ Evas_Object *_add_popup_ask(Evas_Object *parent, char *text, void *data)
        pu = elm_popup_add(parent);
        retvm_if(pu == NULL, NULL, "Falied to add popup\n");
        evas_object_size_hint_weight_set(pu, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
-       elm_object_part_text_set(pu, "title,text", D_("IDS_COM_POP_WARNING"));
+       elm_object_part_text_set(pu, "title,text", S_("IDS_COM_POP_WARNING"));
        elm_object_text_set(pu, text);
        evas_object_show(pu);
 
        bt1 = elm_button_add(pu);
-       elm_object_text_set(bt1, D_("IDS_COM_SK_OK"));
+       elm_object_text_set(bt1, S_("IDS_COM_SK_OK"));
        elm_object_part_content_set(pu, "button1", bt1);
        evas_object_smart_callback_add(bt1, "clicked", _ok_response_cb, data);
 
        bt2 = elm_button_add(pu);
-       elm_object_text_set(bt2, _("IDS_COM_POP_CANCEL"));
+       elm_object_text_set(bt2, S_("IDS_COM_POP_CANCEL"));
        elm_object_part_content_set(pu, "button2", bt2);
        evas_object_smart_callback_add(bt2, "clicked", _cancel_response_cb, data);
 
index c93323361d67a244ab079bfae930cd25682b63cf..db7930aa054e1ecaf924fd81f3882c7c66ac4d63 100644 (file)
@@ -1,18 +1,20 @@
- /*
-  * Copyright 2012  Samsung Electronics Co., Ltd
-  *
-  * Licensed under the Flora License, Version 1.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.tizenopensource.org/license
-  *
-  * 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.
-  */
+/*
+ * Copyright 2012  Samsung Electronics Co., Ltd
+ * 
+ * Licensed under the Flora License, Version 1.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.tizenopensource.org/license
+ * 
+ * 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.
+ */
+
+
 
 
 #ifndef __TASKMANAGER_UTIL_EFL_H__
index c65a3d04ed160cec04fea1e448da4f95da6c06e8..8143e7f16b7c1dba8caeef1d5fdaf4b51564056a 100644 (file)
@@ -1,18 +1,20 @@
- /*
-  * Copyright 2012  Samsung Electronics Co., Ltd
-  *
-  * Licensed under the Flora License, Version 1.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.tizenopensource.org/license
-  *
-  * 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.
-  */
+/*
+ * Copyright 2012  Samsung Electronics Co., Ltd
+ * 
+ * Licensed under the Flora License, Version 1.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.tizenopensource.org/license
+ * 
+ * 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.
+ */
+
+
 
 
 #ifndef __TASKMANAGER_UTIL_LOG_H__
old mode 100644 (file)
new mode 100755 (executable)
index 2c0264e..afad212
@@ -1,18 +1,20 @@
- /*
-  * Copyright 2012  Samsung Electronics Co., Ltd
-  *
-  * Licensed under the Flora License, Version 1.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.tizenopensource.org/license
-  *
-  * 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.
-  */
+/*
+ * Copyright 2012  Samsung Electronics Co., Ltd
+ * 
+ * Licensed under the Flora License, Version 1.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.tizenopensource.org/license
+ * 
+ * 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.
+ */
+
+
 
 
 #include <stdio.h>
@@ -100,6 +102,9 @@ static int rotate(enum appcore_rm m, void *data)
 
 Eina_Bool _exit_cb(void *data)
 {
+       struct appdata *ad = (struct appdata *)data;
+
+       ad->exit_timer = NULL;
        elm_exit();
        return ECORE_CALLBACK_CANCEL;
 }
@@ -209,7 +214,9 @@ static int app_terminate(void *data)
 {
 _D("func\n");
        struct appdata *ad = data;
-       evas_object_del(ad->win);
+//     sleep(1);
+//     ecore_timer_add(0.2, _exit_cb, NULL);
+
        return 0;
 }
 
@@ -217,14 +224,19 @@ static int app_pause(void *data)
 {
 _D("func\n");
        _fini_pthread();
-       elm_exit();
        return 0;
 }
 
 static int app_resume(void *data)
 {
 _D("func\n");
-//     elm_exit();
+       struct appdata *ad = data;
+
+       if (ad->exit_timer) {
+               ecore_timer_del(ad->exit_timer);
+               ad->exit_timer = NULL;
+       }
+
        return 0;
 }
 
old mode 100644 (file)
new mode 100755 (executable)
index d77b835..47d9635
@@ -1,18 +1,20 @@
- /*
-  * Copyright 2012  Samsung Electronics Co., Ltd
-  *
-  * Licensed under the Flora License, Version 1.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.tizenopensource.org/license
-  *
-  * 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.
-  */
+/*
+ * Copyright 2012  Samsung Electronics Co., Ltd
+ * 
+ * Licensed under the Flora License, Version 1.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.tizenopensource.org/license
+ * 
+ * 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.
+ */
+
+
 
 
 #ifndef __TASKMANAGER_H__
@@ -51,7 +53,9 @@
 #define EDJ_THEME EDJDIR"/theme_taskmanager.edj"
 #define GRP_TM "task_manager"
 
-#define D_(str) dgettext("sys_string", str)
+#define S_(str) dgettext("sys_string", str)
+#define T_(str) dgettext(PACKAGE, str)
+
 #define _BUF_MAX       256
 #define _EDJ(x)        elm_layout_edje_get(x)
 
@@ -72,6 +76,7 @@ struct appdata {
        Evas_Object *popup_progressbar;
 
        Ecore_Timer *update_timer;
+       Ecore_Timer *exit_timer;
 
        double mem_total;