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:
parent
0f6d975d36
commit
468f826656
@ -42,7 +42,7 @@ GIFView::GIFView(const char *name)
|
||||
{
|
||||
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);
|
||||
|
||||
char version_string[100];
|
||||
|
@ -27,7 +27,7 @@ ConfigView::ConfigView(uint32 flags)
|
||||
{
|
||||
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);
|
||||
|
||||
char version[256];
|
||||
|
@ -58,7 +58,8 @@ ConfigView::ConfigView(TranslatorSettings* settings, uint32 flags)
|
||||
{
|
||||
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);
|
||||
|
||||
char versionString[256];
|
||||
|
@ -629,7 +629,7 @@ TPrefsWindow::_BuildAccountMenu(int32 account)
|
||||
//menu->SetRadioMode(true);
|
||||
BMailAccounts accounts;
|
||||
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);
|
||||
return menu;
|
||||
}
|
||||
|
@ -114,7 +114,7 @@ EthernetSettingsView::EthernetSettingsView()
|
||||
rootLayout->SetSpacing(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++) {
|
||||
BString& name = *fInterfaces.ItemAt(i);
|
||||
BString label = name;
|
||||
|
Loading…
Reference in New Issue
Block a user