From 0187620642405dec4e9c3141d9ef4d7223f62357 Mon Sep 17 00:00:00 2001 From: Rodrigo Braz Monteiro Date: Thu, 4 Jan 2007 05:04:31 +0000 Subject: [PATCH] About screen updated Originally committed to SVN as r711. --- aegisub/dialog_about.cpp | 20 +++++++++++++------- aegisub/options.cpp | 1 + 2 files changed, 14 insertions(+), 7 deletions(-) diff --git a/aegisub/dialog_about.cpp b/aegisub/dialog_about.cpp index 9f200026e..d2b45f75b 100644 --- a/aegisub/dialog_about.cpp +++ b/aegisub/dialog_about.cpp @@ -36,10 +36,11 @@ //////////// // Includes +#include #include "dialog_about.h" #include "version.h" #include "options.h" -#include +#include "setup.h" /////////////// @@ -54,17 +55,22 @@ AboutScreen::AboutScreen(wxWindow *parent) wxSizer *PicSizer = new wxBoxSizer(wxHORIZONTAL); PicSizer->Add(new BitmapControl(this,splash)); + // Generate library string + // Generate about string wxString aboutString; wxString translatorCredit = _("Translated into LANGUAGE by PERSON\n"); if (translatorCredit == _T("Translated into LANGUAGE by PERSON\n")) translatorCredit.Clear(); aboutString += wxString(_T("Aegisub ")) + GetAegisubShortVersionString() + _(" by ArchMage ZeratuL.\n"); - aboutString += _("Copyright (c) 2005-2006 - Rodrigo Braz Monteiro.\n\n"); - aboutString += _("Automation module is Copyright (c) 2005-2006 Niels Martin Hansen (aka jfs).\n"); - aboutString += _("Motion tracker module is Copyright (c) 2006 Hajo Krabbenhoeft (aka Tentacle).\n"); - aboutString += _("Coding by ArchMageZeratuL, jfs, Myrsloik, equinox, Tentacle and nmap.\n"); - aboutString += _("Manual by ArchMage ZeratuL, jfs, movax, Kobi, TheFluff and Jcubed.\n"); - aboutString += _("Forum and bug tracker hosting by Bot1.\n"); + aboutString += _T("Copyright (c) 2005-2007 - Rodrigo Braz Monteiro.\n\n"); + aboutString += _T("Automation - Copyright (c) 2005-2007 Niels Martin Hansen (aka jfs).\n"); + aboutString += _T("Motion Tracker - Copyright (c) 2006 Hajo Krabbenhoeft (aka Tentacle).\n"); + aboutString += _("Programmers: "); + aboutString += _T(" ArchMageZeratuL, jfs, Myrsloik, equinox, Tentacle, Yuvi,\n Azzy, Pomyk, Motoko-chan.\n"); + aboutString += _("Manual by: "); + aboutString += _T("ArchMage ZeratuL, jfs, movax, Kobi, TheFluff, Jcubed.\n"); + aboutString += _("Forum, wiki and bug tracker hosting by: "); + aboutString += _T("Bot1.\n"); aboutString += _("SVN hosting by BerliOS and Mentar.\n"); aboutString += translatorCredit; aboutString += _("\nSee the help file for full credits.\n"); diff --git a/aegisub/options.cpp b/aegisub/options.cpp index 626324ec4..1a3f8ed2b 100644 --- a/aegisub/options.cpp +++ b/aegisub/options.cpp @@ -126,6 +126,7 @@ void OptionsManager::LoadDefaults() { SetInt(_T("Video Check Script Res"), 0); SetInt(_T("Video Default Zoom"), 7); SetInt(_T("Video Fast Jump Step"), 10); + SetText(_T("Video Screenshot Path"),_T("?video")); SetModificationType(MOD_VIDEO); SetBool(_T("Show keyframes on video slider"),true);