This file is indexed.

/usr/share/pyshared/SCRIBES/i18n.py is in scribes 0.4~r543-2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
from gettext import gettext as _

# From module accelerators.py
msg0003 = _("Cannot redo action")#.decode(encoding).encode("utf-8")


msg0024 = _("Leave Fullscreen")#.decode(encoding).encode("utf-8")

# From module editor_ng.py, fileloader.py, timeout.py
msg0025 = _("Unsaved Document")#.decode(encoding).encode("utf-8")

# From module filechooser.py

msg0027 = _("All Documents")#.decode(encoding).encode("utf-8")
msg0028 = _("Python Documents")#.decode(encoding).encode("utf-8")
msg0029 = _("Text Documents")#.decode(encoding).encode("utf-8")

# From module fileloader.py
msg0030 = _('Loaded file "%s"')#.decode(encoding).encode("utf-8")
msg0032 = _("Loading file please wait...")#.decode(encoding).encode("utf-8")
# From module fileloader.py, savechooser.py
msg0034 = _(" <READONLY>")#.decode(encoding).encode("utf-8")

# From module main.py
msg0038 = _("Unrecognized option: '%s'")#.decode(encoding).encode("utf-8")
msg0039 = _("Try 'scribes --help' for more information")#.decode(encoding).encode("utf-8")
msg0040 = _("Scribes only supports using one option at a time")#.decode(encoding).encode("utf-8")
msg0042 = _("Scribes version %s")#.decode(encoding).encode("utf-8")
msg0043 = _("%s does not exist")#.decode(encoding).encode("utf-8")

# From module timeout.py
msg0044 = _('The file "%s" is open in readonly mode')#.decode(encoding).encode("utf-8")
msg0045 = _('The file "%s" is open')#.decode(encoding).encode("utf-8")

msg0085 = _('Saved "%s"')#.decode(encoding).encode("utf-8")

msg0089 = _("Copied selected text")#.decode(encoding).encode("utf-8")
msg0090 = _("No selection to copy")#.decode(encoding).encode("utf-8")
msg0091 = _("Cut selected text")#.decode(encoding).encode("utf-8")
msg0092 = _(u"No selection to cut")#.decode(encoding).encode("utf-8")
msg0093 = _("Pasted copied text")#.decode(encoding).encode("utf-8")
msg0094 = _("No text content in the clipboard")#.decode(encoding).encode("utf-8")

# From module tooltips.py
msg0097 = _("Open a new window")#.decode(encoding).encode("utf-8")
msg0098 = _("Open a file")#.decode(encoding).encode("utf-8")
msg0099 = _("Rename the current file")#.decode(encoding).encode("utf-8")
msg0100 = _("Print the current file")#.decode(encoding).encode("utf-8")
msg0101 = _("Undo last action")#.decode(encoding).encode("utf-8")
msg0102 = _("Redo undone action")#.decode(encoding).encode("utf-8")
msg0103 = _("Search for text")#.decode(encoding).encode("utf-8")
msg0104 = _("Search for and replace text")#.decode(encoding).encode("utf-8")
msg0105 = _("Go to a specific line")#.decode(encoding).encode("utf-8")
msg0106 = _("Configure the editor")#.decode(encoding).encode("utf-8")
msg0107 = _("Launch the help browser")#.decode(encoding).encode("utf-8")
msg0108 = _("Search for previous occurrence of the string")#.decode(encoding).encode("utf-8")
msg0109 = _("Search for next occurrence of the string")#.decode(encoding).encode("utf-8")
msg0110 = _("Find occurrences of the string that match upper and lower cases \
only")#.decode(encoding).encode("utf-8")
msg0111 = _("Find occurrences of the string that match the entire word only")#.decode(encoding).encode("utf-8")
msg0112 = _("Type in the text you want to search for")#.decode(encoding).encode("utf-8")
msg0113 = _("Type in the text you want to replace with")#.decode(encoding).encode("utf-8")
msg0114 = _("Replace the selected found match")#.decode(encoding).encode("utf-8")
msg0115 = _("Replace all found matches")#.decode(encoding).encode("utf-8")
msg0116 = _("Click to specify the font type, style, and size to use for text.")#.decode(encoding).encode("utf-8")
msg0117 = _("Click to specify the width of the space that is inserted when \
you press the Tab key.")#.decode(encoding).encode("utf-8")
msg0118 = _("Select to wrap text onto the next line when you reach the \
text window boundary.")#.decode(encoding).encode("utf-8")
msg0119 = _("Select to display a vertical line that indicates the right \
margin.")#.decode(encoding).encode("utf-8")
msg0120 = _("Click to specify the location of the vertical line.")#.decode(encoding).encode("utf-8")
msg0121 = _("Select to enable spell checking")#.decode(encoding).encode("utf-8")


# From module usage.py
msg0124 = _("A text editor for GNOME.")#.decode(encoding).encode("utf-8")
msg0125 = _("usage: scribes [OPTION] [FILE] [...]")#.decode(encoding).encode("utf-8")
msg0126 = _("Options:")#.decode(encoding).encode("utf-8")
msg0127 = _("display this help screen")#.decode(encoding).encode("utf-8")
msg0128 = _("output version information of Scribes")#.decode(encoding).encode("utf-8")
msg0129 = _("create a new file and open the file with Scribes")#.decode(encoding).encode("utf-8")
msg0130 = _("get debuggin information for scribes")#.decode(encoding).encode("utf-8")

# From error.py
msg0133 = _("error")#.decode(encoding).encode("utf-8")

# From module actions.py
msg0145 = _("Cannot perform operation in readonly mode")#.decode(encoding).encode("utf-8")

# From encoding.py
msg0157 = _("Character _Encoding: ")#.decode(encoding).encode("utf-8")
msg0158 = _("Add or Remove Encoding ...")#.decode(encoding).encode("utf-8")
msg0159 = _("Recommended (UTF-8)")#.decode(encoding).encode("utf-8")
msg0160 = _("Add or Remove Character Encoding")#.decode(encoding).encode("utf-8")
msg0161 = _("Language and Region")#.decode(encoding).encode("utf-8")
msg0162 = _("Character Encoding")#.decode(encoding).encode("utf-8")
msg0163 = _("Select")#.decode(encoding).encode("utf-8")

# From filechooser.py
msg0187 = _("Closed dialog window")#.decode(encoding).encode("utf-8")

# From encoding.py
msg0208 = _("English")#.decode(encoding).encode("utf-8")
msg0209 = _("Traditional Chinese")#.decode(encoding).encode("utf-8")
msg0210 = _("Traditional Chinese")#.decode(encoding).encode("utf-8")
msg0211 = _("English")#.decode(encoding).encode("utf-8")
msg0212 = _("Hebrew")#.decode(encoding).encode("utf-8")
msg0213 = _("English")#.decode(encoding).encode("utf-8")
msg0214 = _("Western Europe")#.decode(encoding).encode("utf-8")
msg0215 = _("Greek")#.decode(encoding).encode("utf-8")
msg0216 = _("Baltic languages")#.decode(encoding).encode("utf-8")
msg0217 = _("Western Europe")#.decode(encoding).encode("utf-8")
msg0218 = _("Central and Eastern Europe")#.decode(encoding).encode("utf-8")
msg0219 = _("Bulgarian, Macedonian, Russian, Serbian")#.decode(encoding).encode("utf-8")
msg0220 = _("Hebrew")#.decode(encoding).encode("utf-8")
msg0221 = _("Turkish")#.decode(encoding).encode("utf-8")
msg0222 = _("Portuguese")#.decode(encoding).encode("utf-8")
msg0223 = _("Icelandic")#.decode(encoding).encode("utf-8")
msg0224 = _("Hebrew")#.decode(encoding).encode("utf-8")
msg0225 = _("Canadian")#.decode(encoding).encode("utf-8")
msg0226 = _("Arabic")#.decode(encoding).encode("utf-8")
msg0227 = _("Danish, Norwegian")#.decode(encoding).encode("utf-8")
msg0228 = _("Russian")#.decode(encoding).encode("utf-8")
msg0229 = _("Greek")#.decode(encoding).encode("utf-8")
msg0230 = _("Thai")#.decode(encoding).encode("utf-8")
msg0231 = _("Greek")#.decode(encoding).encode("utf-8")
msg0232 = _("Japanese")#.decode(encoding).encode("utf-8")
msg0233 = _("Korean")#.decode(encoding).encode("utf-8")
msg0234 = _("Traditional Chinese")#.decode(encoding).encode("utf-8")
msg0235 = _("Urdu")#.decode(encoding).encode("utf-8")
msg0236 = _("Turkish")#.decode(encoding).encode("utf-8")
msg0237 = _("Western Europe")#.decode(encoding).encode("utf-8")
msg0238 = _("Central and Eastern Europe")#.decode(encoding).encode("utf-8")
msg0239 = _("Bulgarian, Macedonian, Russian, Serbian")#.decode(encoding).encode("utf-8")
msg0240 = _("Western Europe")#.decode(encoding).encode("utf-8")
msg0241 = _("Greek")#.decode(encoding).encode("utf-8")
msg0242 = _("Turkish")#.decode(encoding).encode("utf-8")
msg0243 = _("Hebrew")#.decode(encoding).encode("utf-8")
msg0244 = _("Arabic")#.decode(encoding).encode("utf-8")
msg0245 = _("Baltic languages")#.decode(encoding).encode("utf-8")
msg0246 = _("Vietnamese")#.decode(encoding).encode("utf-8")
msg0247 = _("Japanese")#.decode(encoding).encode("utf-8")
msg0248 = _("Japanese")#.decode(encoding).encode("utf-8")
msg0249 = _("Japanese")#.decode(encoding).encode("utf-8")
msg0250 = _("Korean")#.decode(encoding).encode("utf-8")
msg0251 = _("Simplified Chinese")#.decode(encoding).encode("utf-8")
msg0252 = _("Unified Chinese")#.decode(encoding).encode("utf-8")
msg0253 = _("Unified Chinese")#.decode(encoding).encode("utf-8")
msg0254 = _("Simplified Chinese")#.decode(encoding).encode("utf-8")
msg0255 = _("Japanese")#.decode(encoding).encode("utf-8")
msg0256 = _("Japanese")#.decode(encoding).encode("utf-8")
msg0257 = _("Japanese, Korean, Simplified Chinese")#.decode(encoding).encode("utf-8")
msg0258 = _("Japanese")#.decode(encoding).encode("utf-8")
msg0259 = _("Japanese")#.decode(encoding).encode("utf-8")
msg0260 = _("Japanese")#.decode(encoding).encode("utf-8")
msg0261 = _("Korean")#.decode(encoding).encode("utf-8")
msg0262 = _("West Europe")#.decode(encoding).encode("utf-8")
msg0263 = _("Central and Eastern Europe")#.decode(encoding).encode("utf-8")
msg0264 = _("Esperanto, Maltese")#.decode(encoding).encode("utf-8")
msg0265 = _("Baltic languagues")#.decode(encoding).encode("utf-8")
msg0266 = _("Bulgarian, Macedonian, Russian, Serbian")#.decode(encoding).encode("utf-8")
msg0267 = _("Arabic")#.decode(encoding).encode("utf-8")
msg0268 = _("Greek")#.decode(encoding).encode("utf-8")
msg0269 = _("Hebrew")#.decode(encoding).encode("utf-8")
msg0270 = _("Turkish")#.decode(encoding).encode("utf-8")
msg0271 = _("Nordic languages")#.decode(encoding).encode("utf-8")
msg0272 = _("Baltic languages")#.decode(encoding).encode("utf-8")
msg0273 = _("Celtic languages")#.decode(encoding).encode("utf-8")
msg0274 = _("Western Europe")#.decode(encoding).encode("utf-8")
msg0275 = _("Korean")#.decode(encoding).encode("utf-8")
msg0276 = _("Russian")#.decode(encoding).encode("utf-8")
msg0277 = _("Ukrainian")#.decode(encoding).encode("utf-8")
msg0278 = _("Bulgarian, Macedonian, Russian, Serbian")#.decode(encoding).encode("utf-8")
msg0279 = _("Greek")#.decode(encoding).encode("utf-8")
msg0280 = _("Icelandic")#.decode(encoding).encode("utf-8")
msg0281 = _("Central and Eastern Europe")#.decode(encoding).encode("utf-8")
msg0282 = _("Western Europe")#.decode(encoding).encode("utf-8")
msg0283 = _("Turkish")#.decode(encoding).encode("utf-8")
msg0284 = _("Kazakh")#.decode(encoding).encode("utf-8")
msg0285 = _("Japanese")#.decode(encoding).encode("utf-8")
msg0286 = _("Japanese")#.decode(encoding).encode("utf-8")
msg0287 = _("Japanese")#.decode(encoding).encode("utf-8")
msg0288 = _("All languages")#.decode(encoding).encode("utf-8")
msg0289 = _("All Languages (BMP only)")#.decode(encoding).encode("utf-8")
msg0290 = _("All Languages (BMP only)")#.decode(encoding).encode("utf-8")
msg0291 = _("All Languages")#.decode(encoding).encode("utf-8")
msg0292 = _("None")#.decode(encoding).encode("utf-8")

# From tooltips.py
msg0314 = _("Select to use themes' foreground and background colors")#.decode(encoding).encode("utf-8")
msg0315 = _("Click to choose a new color for the editor's text")#.decode(encoding).encode("utf-8")
msg0316 = _("Click to choose a new color for the editor's background")#.decode(encoding).encode("utf-8")
msg0317 = _("Click to choose a new color for the language syntax element")#.decode(encoding).encode("utf-8")
msg0318 = _("Select to make the language syntax element bold")#.decode(encoding).encode("utf-8")
msg0319 = _("Select to make the language syntax element italic")#.decode(encoding).encode("utf-8")
msg0320 = _("Select to reset the language syntax element to its default \
settings")#.decode(encoding).encode("utf-8")

# From syntaxcoloreditor.py


# From readonly.py
msg0322 = _("Toggled readonly mode on")#.decode(encoding).encode("utf-8")
msg0324 = _("Toggled readonly mode off")#.decode(encoding).encode("utf-8")

# From tooltips.py
msg0326 = _("Menu for advanced configuration")#.decode(encoding).encode("utf-8")
msg0327 = _("Configure the editor's foreground, background or syntax colors")#.decode(encoding).encode("utf-8")
msg0328 = _("Create, modify or manage templates")#.decode(encoding).encode("utf-8")

# From cursor.py
msg0329 = _("Ln %d col %d")#.decode(encoding).encode("utf-8")

# From fileloader.py
msg0335 = _("Loading \"%s\"...")

# From dialogfilter.py
msg0343 = _("Ruby Documents")
msg0344 = _("Perl Documents")
msg0345 = _("C Documents")
msg0346 = _("C++ Documents")
msg0347 = _("C# Documents")
msg0348 = _("Java Documents")
msg0349 = _("PHP Documents")
msg0350 = _("HTML Documents")
msg0351 = _("XML Documents")
msg0352 = _("Haskell Documents")
msg0353 = _("Scheme Documents")

msg0354 = _("INS")
msg0355 = _("OVR")

msg0428 = _("No bookmarks found")
msg0435 = _("Use spaces instead of tabs for indentation")
msg0447 = _("Select to underline language syntax element")
msg0460 = _("Open recently used files")
msg0468 = _("Failed to save file")

msg0469 = _("Save Error: You do not have permission to modify this file \
or save to its location.")
msg0470 = _("Save Error: Failed to transfer file from swap to permanent location.")
msg0471 = _("Save Error: Failed to create swap location or file.")
msg0472 = _("Save Error: Failed to create swap file for saving.")
msg0473 = _("Save Error: Failed to write swap file for saving.")
msg0474 = _("Save Error: Failed to close swap file for saving.")
msg0475 = _("Save Error: Failed decode contents of file from \"UTF-8\" to Unicode.")
msg0476 = _("Save Error: Failed to encode contents of file. Make sure \
the encoding of the file is properly set in the save dialog. Press \
(Ctrl - s) to show the save dialog.")

msg0477 = _("File: %s")
msg0478 = _("Failed to load file.")
msg0479 = _("Load Error: You do not have permission to view this file.")
msg0480 = _("Load Error: Failed to access remote file for permission reasons.")
msg0481 = _("Load Error: Failed to get file information for loading. \
Please try loading the file again.")
msg0482 = _("Load Error: File does not exist.")
msg0483 = _("Damn! Unknown Error")
msg0484 = _("Load Error: Failed to open file for loading.")
msg0485 = _("Load Error: Failed to read file for loading.")
msg0486 = _("Load Error: Failed to close file for loading.")
msg0487 = _("Load Error: Failed to decode file for loading. The file \
your are loading may not be a text file. If you are sure it is a text \
file, try to open the file with the correct encoding via the open \
dialog. Press (control - o) to show the open dialog.")
msg0488 = _("Load Error: Failed to encode file for loading. Try to \
open the file with the correct encoding via the open dialog. Press \
(control - o) to show the open dialog.")

msg0489 = _("Reloading %s")
msg0490 = _("'%s' has been modified by another program")