1
0
mirror of https://github.com/clementine-player/Clementine synced 2025-02-05 21:53:28 +01:00

Translate this missing string - thanks Mariano Copetti

This commit is contained in:
David Sansome 2010-03-21 13:07:02 +00:00
parent da7e88d754
commit 645d7e48cc
5 changed files with 18 additions and 1 deletions

View File

@ -931,6 +931,10 @@ p, li { white-space: pre-wrap; }
<source>Add another stream...</source>
<translation>Προσθήκη άλλης ροής...</translation>
</message>
<message>
<source>Your radio streams</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>SettingsDialog</name>

View File

@ -914,6 +914,10 @@ p, li { white-space: pre-wrap; }
<source>Add another stream...</source>
<translation>Añadir un flujo de radio...</translation>
</message>
<message>
<source>Your radio streams</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>SettingsDialog</name>

View File

@ -898,6 +898,10 @@ p, li { white-space: pre-wrap; }
<source>Add another stream...</source>
<translation>Добавить другой поток...</translation>
</message>
<message>
<source>Your radio streams</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>SettingsDialog</name>

View File

@ -1127,6 +1127,11 @@ p, li { white-space: pre-wrap; }
<source>Add another stream...</source>
<translation>Pridať ďalší stream...</translation>
</message>
<message>
<location filename="savedradio.cpp" line="27"/>
<source>Your radio streams</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>SettingsDialog</name>

View File

@ -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_;
}