You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
aegisublocale.cpp -- Make dialog window translatable
auto4_base.cpp -- Make warning logs translatable
auto4_lua.cpp -- Make descriptions used in the Create() function translatable
dialog_attachments.cpp -- Make file types translatable --> I also noticed that the file extraction dialog only has one file type ("Font Files"), so I added two new types: "All Supported Formats" and "Graphic Files"
dialog_automation.cpp -- Make warning log translatable
dialog_dummy_video.cpp -- Make resolution names translatable
dialog_export.cpp -- Make message boxes translatable
dialog_properties.cpp -- Make "YCbCr Matrix:" string translatable
dialog_spellchecker.cpp -- Make message boxes translatable
dialog_style_manager.cpp -- Make message boxes translatable
main.cpp -- Make message boxes translatable
preferences.cpp -- Make FFmpegSource's log levels, search bar and columns' titles of hotkey table translatable
project.cpp -- Make message boxes translatable
subs_controller.cpp -- Make "Untitled" string filename and messages translatable
subs_preview.cpp -- Make message box translatable
video_provider_manager.cpp -- Make error strings translatable
macro-2-mkfullwitdh.lua -- Make script metadata translatable
Copy file name to clipboardExpand all lines: automation/autoload/macro-2-mkfullwitdh.lua
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -3,8 +3,8 @@
3
3
4
4
localtr=aegisub.gettext
5
5
6
-
script_name=tr("Make text fullwidth")
7
-
script_description=tr("Shows how to use the unicode include to iterate over characters and a lookup table to convert those characters to something else.")
6
+
script_name=tr"Make text fullwidth"
7
+
script_description=tr"Shows how to use the unicode include to iterate over characters and a lookup table to convert those characters to something else."
Copy file name to clipboardExpand all lines: src/auto4_base.cpp
+9-9Lines changed: 9 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -33,13 +33,13 @@
33
33
#include"ass_style.h"
34
34
#include"compat.h"
35
35
#include"dialog_progress.h"
36
+
#include"format.h"
36
37
#include"include/aegisub/context.h"
37
38
#include"options.h"
38
39
#include"string_codec.h"
39
40
#include"subs_controller.h"
40
41
41
42
#include<libaegisub/dispatch.h>
42
-
#include<libaegisub/format.h>
43
43
#include<libaegisub/fs.h>
44
44
#include<libaegisub/path.h>
45
45
#include<libaegisub/split.h>
@@ -341,16 +341,16 @@ namespace Automation4 {
341
341
}
342
342
343
343
if (error_count == 1) {
344
-
wxLogWarning("A script in the Automation autoload directory failed to load.\nPlease review the errors, fix them and use the Rescan Autoload Dir button in Automation Manager to load the scripts again.");
344
+
wxLogWarning(_("A script in the Automation autoload directory failed to load.\nPlease review the errors, fix them and use the Rescan Autoload Dir button in Automation Manager to load the scripts again."));
345
345
}
346
346
elseif (error_count > 1) {
347
-
wxLogWarning("Multiple scripts in the Automation autoload directory failed to load.\nPlease review the errors, fix them and use the Rescan Autoload Dir button in Automation Manager to load the scripts again.");
347
+
wxLogWarning(_("Multiple scripts in the Automation autoload directory failed to load.\nPlease review the errors, fix them and use the Rescan Autoload Dir button in Automation Manager to load the scripts again."));
348
348
}
349
349
elseif (warning_count == 1) {
350
-
wxLogWarning("A script in the Automation autoload directory loaded with warnings.\nPlease review the warnings, fix them and use the Rescan Autoload Dir button in Automation Manager to load the scripts again.");
350
+
wxLogWarning(_("A script in the Automation autoload directory loaded with warnings.\nPlease review the warnings, fix them and use the Rescan Autoload Dir button in Automation Manager to load the scripts again."));
351
351
}
352
352
elseif (warning_count > 1) {
353
-
wxLogWarning("Multiple scripts in the Automation autoload directory loaded with warnings.\nPlease review the warnings, fix them and use the Rescan Autoload Dir button in Automation Manager to load the scripts again.");
353
+
wxLogWarning(_("Multiple scripts in the Automation autoload directory loaded with warnings.\nPlease review the warnings, fix them and use the Rescan Autoload Dir button in Automation Manager to load the scripts again."));
0 commit comments