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
Includes both a windows GUI and a command line utility to translate and rename files from their source language to the set language. By default, the set language is the local system TwoLetterISOLanguageName.
4
5
5
6
## What does it do?
6
7
7
-
The program renames all the files from their source language to the specified target language (default: locale).
8
+
This program renames all files in a folder from their source language to the specified target language (default: locale).
8
9
9
10
Example use-case:
10
11
Translate foreign movie *.mp4 file names.
11
12
Translate names of songs ripped from an imported foreign album.
12
13
14
+
# Content
15
+
16
+
[Features](README.md#Features)
17
+
-[Translates all file names in folder](README.md#Translates-all-file-names-in-folder)
###1. Translates all file names in selected folder.
40
+
#### Translates all file names in folder
17
41
18
42
Scans all files in selected folder, and only displays files having names in different language from the targetted language.
19
43
@@ -38,44 +62,47 @@ File renaming does not occur untill one of the following options is selected.
38
62
39
63
Renames only files which have not been checked.
40
64
65
+
#### Filter
41
66
67
+
This option allows user to use keywords to find or filter the list to only items having the keyword(s).
42
68
69
+
When this option is used, and the "Rename All" option is selected, only the resulting filtered items displayed are renamed.
43
70
44
-
###2. Modify translated name
71
+
####Modify translated name
45
72
46
73
The translated name on the list, can be edited before performing the rename action.
47
74
48
-
###3. Search Recursively
75
+
####Search Recursively
49
76
50
77
By default, only the files on the root directory are scanned, but by selecting this option, the scan will also search all sub folders.
51
78
52
-
###4. Long Path Support
79
+
####Long Path Support
53
80
54
81
By selecting this option, the rename will occur even if the full path is longer then 255 characters.
55
82
56
-
###5. Append Original Name
83
+
####Append Original Name
57
84
58
85
When selected, this options includes the original file name when renaming the file. Example: TranslatedName(OriginalName).gif
59
86
60
-
###6. Append Language Name
87
+
####Append Language Name
61
88
62
89
When selected, appends the source language name to the renamed file. Example: TranslatedName_[Russian].gif
63
90
64
-
###7. File Type
91
+
####File Type
65
92
66
93
This option can be used to scan only file a specific file extension. Example: .gif
67
94
68
-
###8. Max Threads
95
+
####Max Threads
69
96
70
97
By default the programs uses the ProcessorCount to determine the maximum threads to use. This options allows the end user to override that option. The minimum value is 4, and the maximum value is 400.
71
98
72
-
###9. Max Translation Len
99
+
####Max Translation Len
73
100
74
101
The translation length is used when the program translates many files in a single translation request. This happens if there are many files (over 100), or if the user selects option to translate many files per request.
75
102
76
103
This value is set to 10000 by default. The minimum value is 255, and the maximum value is 10,000.
77
104
78
-
###10 Files-Per-Translation-Req
105
+
####Files-Per-Translation-Req
79
106
80
107
This options determines if one file is used per translation request, or if many files are used per translation request. The following are the possible options to select from the combobox window.
81
108
@@ -92,37 +119,38 @@ This options determines if one file is used per translation request, or if many
92
119
Multiple files are sent per translation request. This is the perferred option if the files are all in either the source language or the target language.
93
120
94
121
95
-
###11 Target Language
122
+
####Target Language
96
123
97
124
This setting is an [ISO 639-1](https://wikipedia.org/wiki/List_of_ISO_639-1_codes) two letter code.
98
125
By default, the target language is set to the operating system language settings. (CurrentCulture.TwoLetterISOLanguageName)
99
126
100
127
Use this option to override the target language. See [ISO 639-1](https://wikipedia.org/wiki/List_of_ISO_639-1_codes) link to get desired language code.
101
128
102
-
###12 Source Language
129
+
####Source Language
103
130
104
131
This is empty by default. When this value is empty, the translation works in "Auto" mode, which lets the translator determine the source language.
105
132
106
133
For most use cases, this value should be left empty. If populated, use [ISO 639-1](https://wikipedia.org/wiki/List_of_ISO_639-1_codes) link to get desired language code.
107
134
108
-
###13 Filter
135
+
#### Sortable File List
109
136
110
-
This option allows user to use keywords to find or filter the list to only items having the keyword(s).
137
+
The list view has multiple columns, and the list can be sorted by any column by clicking on the column header.
138
+
139
+
## Option Window Screenshot
111
140
112
-
When this option is used, and the "Rename All" option is selected, only the resulting filtered items displayed are renamed.
0 commit comments