summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/wx/about_dialog.cc4
-rw-r--r--src/wx/config_dialog.cc4
2 files changed, 6 insertions, 2 deletions
diff --git a/src/wx/about_dialog.cc b/src/wx/about_dialog.cc
index be01548a4..01332dfcc 100644
--- a/src/wx/about_dialog.cc
+++ b/src/wx/about_dialog.cc
@@ -101,6 +101,10 @@ AboutDialog::AboutDialog (wxWindow* parent)
translated_by.Add (wxT ("Markus Raab"));
add_section (_("Translated by"), translated_by);
+ wxArrayString artwork_by;
+ artwork_by.Add (wxT ("David Vignoni"));
+ add_section (_("Artwork by"), artwork_by);
+
wxArrayString supported_by;
supported_by.Add (wxT ("Manual AC"));
supported_by.Add (wxT ("Kambiz Afshar"));
diff --git a/src/wx/config_dialog.cc b/src/wx/config_dialog.cc
index d9a9f8978..7fe81de4e 100644
--- a/src/wx/config_dialog.cc
+++ b/src/wx/config_dialog.cc
@@ -425,13 +425,13 @@ class EncodingServersPage : public wxPreferencesPage
public:
wxString GetName () const
{
- return _("Encoding Servers");
+ return _("Servers");
}
#ifdef DCPOMATIC_OSX
wxBitmap GetLargeIcon () const
{
- return wxBitmap ("blank", wxBITMAP_TYPE_PNG_RESOURCE);
+ return wxBitmap ("servers", wxBITMAP_TYPE_PNG_RESOURCE);
}
#endif