Skip to content

Commit d1480ea

Browse files
committed
Fixed translation missing end quotation
1 parent d3e96e3 commit d1480ea

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

addons/source-python/packages/source-python/plugins/command.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ def call_command(self, CICommand):
199199
self[command]()
200200

201201
def print_help(self, message=''):
202-
'''Prints all sub-commands for the console command'''
202+
'''Prints all sub-commands for the console command.'''
203203

204204
# Add a header message
205205
message += '\n' + self.prefix + self.translations[
@@ -234,7 +234,7 @@ def print_help(self, message=''):
234234
self.logger.log_message(message + '\n' + '=' * 78)
235235

236236
def load_plugin(self, plugin_name):
237-
'''Loads a plugin by name'''
237+
'''Loads a plugin by name.'''
238238

239239
# Is the plugin already loaded?
240240
if plugin_name in self.manager:
@@ -267,7 +267,7 @@ def load_plugin(self, plugin_name):
267267
load_plugin.args = ['<plugin>']
268268

269269
def unload_plugin(self, plugin_name):
270-
'''Unloads a plugin by name'''
270+
'''Unloads a plugin by name.'''
271271

272272
# Is the plugin loaded?
273273
if not plugin_name in self.manager:
@@ -290,7 +290,7 @@ def unload_plugin(self, plugin_name):
290290
unload_plugin.args = ['<plugin>']
291291

292292
def reload_plugin(self, plugin_name):
293-
'''Reloads a plugin by name'''
293+
'''Reloads a plugin by name.'''
294294

295295
# Unload the plugin
296296
self.unload_plugin(plugin_name)
@@ -302,7 +302,7 @@ def reload_plugin(self, plugin_name):
302302
reload_plugin.args = ['<plugin>']
303303

304304
def print_plugins(self):
305-
'''Prints all currently loaded plugins'''
305+
'''Prints all currently loaded plugins.'''
306306

307307
# Get the header message
308308
message = self.prefix + self.translations[

resource/source-python/translations/_core/core_settings_strings.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ Bestimme die Befehle, die als "private" Chatbefehle verwendet werden sollen.'''
8787

8888
[public_say_commands]
8989
en = 'Set to the command names to use as "public" say commands.'
90-
de = 'Bestimme die Befehle, die als "öffentliche" Chatbefehle verwendet werden sollen.
90+
de = 'Bestimme die Befehle, die als "öffentliche" Chatbefehle verwendet werden sollen.'
9191

9292
[client_commands]
9393
en = 'Set to the command names to use as client commands.'

0 commit comments

Comments
 (0)