PO Changes in Music Player 81/92381/1
authorbhutani.92 <bhutani.92@samsung.com>
Sat, 15 Oct 2016 10:05:41 +0000 (15:35 +0530)
committerbhutani.92 <bhutani.92@samsung.com>
Sat, 15 Oct 2016 10:05:41 +0000 (15:35 +0530)
Change-Id: I406dd0ff4892832b82b0b1ef79312a9d5f05e349
Signed-off-by: bhutani.92 <bhutani.92@samsung.com>
inc/mp-resource.h
res/po/ca.po
src/widget/mp-popup.c

index 8bc704a996bfc2edceda70a3d2702782bf8fc5e0..cb69b00e98a3d4066e5a721b259eedfcab4a4c7d 100755 (executable)
 
 #define STR_MP_ONE_TRACK_DETELED    "IDS_MUSIC_POP_THIS_TRACK_WILL_BE_DELETED"
 #define STR_MP_PLURAL_TRACKS_DETELED    "IDS_MUSIC_POP_THE_SELECTED_TRACKS_WILL_BE_DELETED"
-#define STR_MP_ALL_TRACKS_DETELED    "All tracks will be deleted."
+#define STR_MP_ALL_TRACKS_DETELED    "IDS_MUSIC_POP_ALL_TRACKS_WILL_BE_DELETED"
 
 #define STR_MP_ONE_ARTIST_DETELED    "IDS_MUSIC_POP_THIS_ARTIST_WILL_BE_DELETED"
 #define STR_MP_PLURAL_ARTISTS_DETELED    "IDS_MUSIC_POP_THE_SELECTED_ARTISTS_WILL_BE_DELETED"
index eaaa7b107c9a4f8a337a67c0e7ac02287c9cecd8..a7ba2824058306bef5d18b3750a301107bd4a38d 100644 (file)
@@ -295,6 +295,9 @@ msgstr "Reenviant"
 msgid "IDS_MUSIC_BODY_RECORDED_DATE"
 msgstr "Date of recording"
 
+msgid "IDS_MUSIC_BODY_GENRE"
+msgstr "Gènere"
+
 msgid "IDS_MUSIC_BODY_PLAYLISTS"
 msgstr "Llistes de reproducció"
 
@@ -323,7 +326,7 @@ msgid "IDS_MUSIC_POP_ALL_ARTISTS_WILL_BE_DELETED"
 msgstr "S'esborraran tots els artistes"
 
 msgid "IDS_MUSIC_POP_THIS_FOLDER_WILL_BE_DELETED"
-msgstr "S'esborrarà aquesta carpeta"
+msgstr "S'esborrarà aquesta carpeta."
 
 msgid "IDS_MUSIC_POP_THE_SELECTED_FOLDERS_WILL_BE_DELETED"
 msgstr "S'esborraran les carpetes seleccionades."
@@ -1229,7 +1232,7 @@ msgid "IDS_MUSIC_BODY_PD_ARTISTS_WILL_BE_DELETED"
 msgstr "S'esborraran %d artistes"
 
 msgid "IDS_MUSIC_POP_PD_FOLDERS_WILL_BE_DELETED"
-msgstr "S'esborraran %d carpetes"
+msgstr "S'esborraran %d carpetes."
 
 msgid "IDS_ST_POP_CONNECTION_FAILED"
 msgstr "Error de connexió"
@@ -1397,7 +1400,7 @@ msgid "IDS_MUSIC_SK_OK"
 msgstr "Acceptar"
 
 msgid "IDS_MUSIC_SK_CANCEL"
-msgstr "Cancel"
+msgstr "Cancel·lar"
 
 msgid "IDS_MUSIC_BUTTON_REFRESH"
 msgstr "Actualitzar"
@@ -1462,7 +1465,11 @@ msgstr "Error"
 msgid "IDS_MF_POP_MEMORY_FULL"
 msgstr "Memòria plena"
 
+msgid "IDS_TPLATFORM_MBODY_STORAGE_LOCATION"
+msgstr "Ubicació d'emmagatzematge"
 
+msgid "IDS_MUSIC_OPT_REMOVE_M_PLAYLIST"
+msgstr "Eliminar"
 
 msgid "IDS_MUSIC_MBODY_QUEUE"
 msgstr "Cua"
index 7a3182c7b241c864b9eabf2749ed5903d55770e1..b50a9e23dee49540184a359e4c79f41d725b975c 100755 (executable)
@@ -418,7 +418,7 @@ _mp_popup_add_to_playlist_create(Evas_Object * parent, void *data, struct appdat
        }
        DEBUG_TRACE("count,%d", count);
 
-       popup = _mp_popup_create_min_style_popup(parent, GET_STR("IDS_MUSIC_BODY_ADD_TO_PLAYLIST"), count, NULL, _mp_popup_cancel_button_cb, ad);
+       popup = _mp_popup_create_min_style_popup(parent, GET_STR(STR_MP_ADD_TO_PLAYLIST), count, NULL, _mp_popup_cancel_button_cb, ad);
        MP_CHECK_NULL(popup);
        mp_popup_button_set(popup, MP_POPUP_BTN_1, STR_MP_CANCEL, MP_POPUP_NO);
        mp_popup_button_set_add_to_palylist(popup, STR_MP_CREATE, MP_POPUP_YES);
@@ -434,9 +434,9 @@ _mp_popup_delete_track_create(Evas_Object * parent, void *data, struct appdata *
        Evas_Object *popup = NULL;
        int count = -1;
 
-       popup = _mp_popup_create_min_style_popup(parent, GET_STR("IDS_MUSIC_POP_THIS_TRACK_WILL_BE_DELETED"), count, NULL, _mp_popup_cancel_button_cb, ad);
+       popup = _mp_popup_create_min_style_popup(parent, GET_STR(STR_MP_ONE_TRACK_DETELED), count, NULL, _mp_popup_cancel_button_cb, ad);
        MP_CHECK_NULL(popup);
-       mp_popup_button_set(popup, MP_POPUP_BTN_1, "IDS_COM_POP_CANCEL", MP_POPUP_NO);
+       mp_popup_button_set(popup, MP_POPUP_BTN_1, STR_MP_CANCEL, MP_POPUP_NO);
        mp_popup_button_set(popup, MP_POPUP_BTN_2, STR_MP_DELETE, MP_POPUP_YES);
 
        return popup;