From 645d7e48cc6bc3db08a74245bcd1ed57547bc2e4 Mon Sep 17 00:00:00 2001 From: David Sansome Date: Sun, 21 Mar 2010 13:07:02 +0000 Subject: [PATCH] Translate this missing string - thanks Mariano Copetti --- src/clementine_el.ts | 4 ++++ src/clementine_es.ts | 4 ++++ src/clementine_ru.ts | 4 ++++ src/clementine_sk.ts | 5 +++++ src/savedradio.cpp | 2 +- 5 files changed, 18 insertions(+), 1 deletion(-) diff --git a/src/clementine_el.ts b/src/clementine_el.ts index 74513f09c..9bc44c6bb 100644 --- a/src/clementine_el.ts +++ b/src/clementine_el.ts @@ -931,6 +931,10 @@ p, li { white-space: pre-wrap; } Add another stream... Προσθήκη άλλης ροής... + + Your radio streams + + SettingsDialog diff --git a/src/clementine_es.ts b/src/clementine_es.ts index 527781056..1d7da0f32 100644 --- a/src/clementine_es.ts +++ b/src/clementine_es.ts @@ -914,6 +914,10 @@ p, li { white-space: pre-wrap; } Add another stream... Añadir un flujo de radio... + + Your radio streams + + SettingsDialog diff --git a/src/clementine_ru.ts b/src/clementine_ru.ts index 63259301c..2c65d5c73 100644 --- a/src/clementine_ru.ts +++ b/src/clementine_ru.ts @@ -898,6 +898,10 @@ p, li { white-space: pre-wrap; } Add another stream... Добавить другой поток... + + Your radio streams + + SettingsDialog diff --git a/src/clementine_sk.ts b/src/clementine_sk.ts index 6ed06e664..e66444a1d 100644 --- a/src/clementine_sk.ts +++ b/src/clementine_sk.ts @@ -1127,6 +1127,11 @@ p, li { white-space: pre-wrap; } Add another stream... Pridať ďalší stream... + + + Your radio streams + + SettingsDialog diff --git a/src/savedradio.cpp b/src/savedradio.cpp index 1613da069..a4d1e4ef5 100644 --- a/src/savedradio.cpp +++ b/src/savedradio.cpp @@ -24,7 +24,7 @@ SavedRadio::~SavedRadio() { } RadioItem* SavedRadio::CreateRootItem(RadioItem* parent) { - root_ = new RadioItem(this, RadioItem::Type_Service, "Your radio streams", parent); + root_ = new RadioItem(this, RadioItem::Type_Service, tr("Your radio streams"), parent); root_->icon = QIcon(":open_stream.png"); return root_; }