Some more string translations.
A few more translator changes I missed with last commit. Added a few more strings for translation, pointed out by diver. Thanks!
This commit is contained in:
@@ -42,7 +42,7 @@ GIFView::GIFView(const char *name)
|
|||||||
{
|
{
|
||||||
SetViewColor(ui_color(B_PANEL_BACKGROUND_COLOR));
|
SetViewColor(ui_color(B_PANEL_BACKGROUND_COLOR));
|
||||||
|
|
||||||
BStringView *title = new BStringView("Title", translatorName);
|
BStringView *title = new BStringView("Title", B_TRANSLATE("GIF image translator"));
|
||||||
title->SetFont(be_bold_font);
|
title->SetFont(be_bold_font);
|
||||||
|
|
||||||
char version_string[100];
|
char version_string[100];
|
||||||
|
|||||||
@@ -27,7 +27,7 @@ ConfigView::ConfigView(uint32 flags)
|
|||||||
{
|
{
|
||||||
SetViewColor(ui_color(B_PANEL_BACKGROUND_COLOR));
|
SetViewColor(ui_color(B_PANEL_BACKGROUND_COLOR));
|
||||||
|
|
||||||
BStringView *fTitle = new BStringView("title", B_TRANSLATE("RAW Images"));
|
BStringView *fTitle = new BStringView("title", B_TRANSLATE("RAW image translator"));
|
||||||
fTitle->SetFont(be_bold_font);
|
fTitle->SetFont(be_bold_font);
|
||||||
|
|
||||||
char version[256];
|
char version[256];
|
||||||
|
|||||||
@@ -58,7 +58,8 @@ ConfigView::ConfigView(TranslatorSettings* settings, uint32 flags)
|
|||||||
{
|
{
|
||||||
SetViewColor(ui_color(B_PANEL_BACKGROUND_COLOR));
|
SetViewColor(ui_color(B_PANEL_BACKGROUND_COLOR));
|
||||||
|
|
||||||
BStringView* title = new BStringView("title", B_TRANSLATE("WebP Images"));
|
BStringView* title = new BStringView("title",
|
||||||
|
B_TRANSLATE("WebP image translator"));
|
||||||
title->SetFont(be_bold_font);
|
title->SetFont(be_bold_font);
|
||||||
|
|
||||||
char versionString[256];
|
char versionString[256];
|
||||||
|
|||||||
@@ -629,7 +629,7 @@ TPrefsWindow::_BuildAccountMenu(int32 account)
|
|||||||
//menu->SetRadioMode(true);
|
//menu->SetRadioMode(true);
|
||||||
BMailAccounts accounts;
|
BMailAccounts accounts;
|
||||||
if (accounts.CountAccounts() == 0) {
|
if (accounts.CountAccounts() == 0) {
|
||||||
menu->AddItem(item = new BMenuItem("<no account found>", NULL));
|
menu->AddItem(item = new BMenuItem(B_TRANSLATE("<no account found>"), NULL));
|
||||||
item->SetEnabled(false);
|
item->SetEnabled(false);
|
||||||
return menu;
|
return menu;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -114,7 +114,7 @@ EthernetSettingsView::EthernetSettingsView()
|
|||||||
rootLayout->SetSpacing(inset);
|
rootLayout->SetSpacing(inset);
|
||||||
layout->SetSpacing(inset, inset);
|
layout->SetSpacing(inset, inset);
|
||||||
|
|
||||||
BPopUpMenu* deviceMenu = new BPopUpMenu("<No adapter>");
|
BPopUpMenu* deviceMenu = new BPopUpMenu((B_TRANSLATE("<no adapter>"));
|
||||||
for (int32 i = 0; i < fInterfaces.CountItems(); i++) {
|
for (int32 i = 0; i < fInterfaces.CountItems(); i++) {
|
||||||
BString& name = *fInterfaces.ItemAt(i);
|
BString& name = *fInterfaces.ItemAt(i);
|
||||||
BString label = name;
|
BString label = name;
|
||||||
|
|||||||
Reference in New Issue
Block a user