\w+)\.(?P\w+)=(?P\d+)')
@@ -194,8 +194,6 @@ def select():
request.vars.query = '%s.%s.%s==%s' % (request.args[0],
match.group('table'), match.group('field'),
match.group('value'))
- else:
- request.vars.query = session.last_query
query = get_query(request)
if request.vars.start:
start = int(request.vars.start)
@@ -222,17 +220,16 @@ def select():
else:
orderby = '~' + orderby
session.last_orderby = orderby
- session.last_query = request.vars.query
form = FORM(TABLE(TR(T('Query:'), '', INPUT(_style='width:400px',
- _name='query', _value=request.vars.query or '', _class="form-control",
+ _name='query', _value=request.vars.query or '', _class='form-control',
requires=IS_NOT_EMPTY(
- error_message=T("Cannot be empty")))), TR(T('Update:'),
+ error_message=T('Cannot be empty')))), TR(T('Update:'),
INPUT(_name='update_check', _type='checkbox',
value=False), INPUT(_style='width:400px',
_name='update_fields', _value=request.vars.update_fields
- or '', _class="form-control")), TR(T('Delete:'), INPUT(_name='delete_check',
+ or '', _class='form-control')), TR(T('Delete:'), INPUT(_name='delete_check',
_class='delete', _type='checkbox', value=False), ''),
- TR('', '', INPUT(_type='submit', _value=T('submit'), _class="btn btn-primary"))),
+ TR('', '', INPUT(_type='submit', _value=T('Submit'), _class='btn btn-primary'))),
_action=URL(r=request, args=request.args))
tb = None
@@ -254,8 +251,8 @@ def select():
if is_imap:
fields = [db[table][name] for name in
- ("id", "uid", "created", "to",
- "sender", "subject")]
+ ('id', 'uid', 'created', 'to',
+ 'sender', 'subject')]
if orderby:
rows = db(query, ignore_common_filters=True).select(
*fields, limitby=(start, stop),
@@ -271,10 +268,10 @@ def select():
# begin handle upload csv
csv_table = table or request.vars.table
if csv_table:
- formcsv = FORM(str(T('or import from csv file')) + " ",
+ formcsv = FORM(str(T('or import from csv file')) + ' ',
INPUT(_type='file', _name='csvfile'),
INPUT(_type='hidden', _value=csv_table, _name='table'),
- INPUT(_type='submit', _value=T('import'), _class="btn btn-primary"))
+ INPUT(_type='submit', _value=T('import'), _class='btn btn-primary'))
else:
formcsv = None
if formcsv and formcsv.process().accepted:
@@ -356,26 +353,26 @@ def state():
def ccache():
if is_gae:
form = FORM(
- P(TAG.BUTTON(T("Clear CACHE?"), _type="submit", _name="yes", _value="yes")))
+ P(TAG.BUTTON(T('Clear CACHE?'), _type='submit', _name='yes', _value='yes')))
else:
cache.ram.initialize()
cache.disk.initialize()
form = FORM(
P(TAG.BUTTON(
- T("Clear CACHE?"), _type="submit", _name="yes", _value="yes")),
+ T('Clear CACHE?'), _type='submit', _name='yes', _value='yes')),
P(TAG.BUTTON(
- T("Clear RAM"), _type="submit", _name="ram", _value="ram")),
+ T('Clear RAM'), _type='submit', _name='ram', _value='ram')),
P(TAG.BUTTON(
- T("Clear DISK"), _type="submit", _name="disk", _value="disk")),
+ T('Clear DISK'), _type='submit', _name='disk', _value='disk')),
)
if form.accepts(request.vars, session):
- session.flash = ""
+ session.flash = ''
if is_gae:
if request.vars.yes:
cache.ram.clear()
- session.flash += T("Cache Cleared")
+ session.flash += T('Cache Cleared')
else:
clear_ram = False
clear_disk = False
@@ -387,10 +384,10 @@ def ccache():
clear_disk = True
if clear_ram:
cache.ram.clear()
- session.flash += T("Ram Cleared")
+ session.flash += T('Ram Cleared')
if clear_disk:
cache.disk.clear()
- session.flash += T("Disk Cleared")
+ session.flash += T('Disk Cleared')
redirect(URL(r=request))
try:
@@ -436,7 +433,7 @@ def ccache():
gae_stats['ratio'] = ((gae_stats['hits'] * 100) /
(gae_stats['hits'] + gae_stats['misses']))
except ZeroDivisionError:
- gae_stats['ratio'] = T("?")
+ gae_stats['ratio'] = T('?')
gae_stats['oldest'] = GetInHMS(time.time() - gae_stats['oldest_item_age'])
total.update(gae_stats)
else:
@@ -502,7 +499,7 @@ def ccache():
TR(TD(B(T('Key'))), TD(B(T('Time in Cache (h:m:s)')))),
*[TR(TD(k[0]), TD('%02d:%02d:%02d' % k[1])) for k in keys],
**dict(_class='cache-keys',
- _style="border-collapse: separate; border-spacing: .5em;"))
+ _style='border-collapse: separate; border-spacing: .5em;'))
if not is_gae:
ram['keys'] = key_table(ram['keys'])
@@ -536,26 +533,26 @@ def table_template(table):
# This is horribe HTML but the only one graphiz understands
rows = []
cellpadding = 4
- color = "#000000"
- bgcolor = "#FFFFFF"
- face = "Helvetica"
- face_bold = "Helvetica Bold"
+ color = '#000000'
+ bgcolor = '#FFFFFF'
+ face = 'Helvetica'
+ face_bold = 'Helvetica Bold'
border = 0
rows.append(TR(TD(FONT(table, _face=face_bold, _color=bgcolor),
_colspan=3, _cellpadding=cellpadding,
- _align="center", _bgcolor=color)))
+ _align='center', _bgcolor=color)))
for row in db[table]:
rows.append(TR(TD(FONT(row.name, _color=color, _face=face_bold),
- _align="left", _cellpadding=cellpadding,
+ _align='left', _cellpadding=cellpadding,
_border=border),
TD(FONT(row.type, _color=color, _face=face),
- _align="left", _cellpadding=cellpadding,
+ _align='left', _cellpadding=cellpadding,
_border=border),
TD(FONT(types(row), _color=color, _face=face),
- _align="center", _cellpadding=cellpadding,
+ _align='center', _cellpadding=cellpadding,
_border=border)))
- return "< %s >" % TABLE(*rows, **dict(_bgcolor=bgcolor, _border=1,
+ return '< %s >' % TABLE(*rows, **dict(_bgcolor=bgcolor, _border=1,
_cellborder=0, _cellspacing=0)
).xml()
@@ -632,15 +629,15 @@ def hooks():
if len(functions):
method_hooks.append({'name': op, 'functions':functions})
if len(method_hooks):
- tables.append({'name': "%s.%s" % (db_str, t), 'slug': IS_SLUG()("%s.%s" % (db_str,t))[0], 'method_hooks':method_hooks})
+ tables.append({'name': '%s.%s' % (db_str, t), 'slug': IS_SLUG()('%s.%s' % (db_str,t))[0], 'method_hooks':method_hooks})
# Render
ul_main = UL(_class='nav nav-list')
for t in tables:
ul_main.append(A(t['name'], _onclick="collapse('a_%s')" % t['slug']))
- ul_t = UL(_class='nav nav-list', _id="a_%s" % t['slug'], _style='display:none')
+ ul_t = UL(_class='nav nav-list', _id='a_%s' % t['slug'], _style='display:none')
for op in t['method_hooks']:
ul_t.append(LI(op['name']))
- ul_t.append(UL([LI(A(f['funcname'], _class="editor_filelink", _href=f['url']if 'url' in f else None, **{'_data-lineno':f['lineno']-1})) for f in op['functions']]))
+ ul_t.append(UL([LI(A(f['funcname'], _class='editor_filelink', _href=f['url']if 'url' in f else None, **{'_data-lineno':f['lineno']-1})) for f in op['functions']]))
ul_main.append(ul_t)
return ul_main
@@ -650,11 +647,11 @@ def hooks():
# ###########################################################
def d3_graph_model():
- """ See https://www.facebook.com/web2py/posts/145613995589010 from Bruno Rocha
+ ''' See https://www.facebook.com/web2py/posts/145613995589010 from Bruno Rocha
and also the app_admin bg_graph_model function
- Create a list of table dicts, called "nodes"
- """
+ Create a list of table dicts, called 'nodes'
+ '''
nodes = []
links = []
@@ -670,10 +667,10 @@ def d3_graph_model():
elif f_type == 'string':
disp = field.length
elif f_type == 'id':
- disp = "PK"
+ disp = 'PK'
elif f_type.startswith('reference') or \
f_type.startswith('list:reference'):
- disp = "FK"
+ disp = 'FK'
else:
disp = ' '
fields.append(dict(name=field.name, type=field.type, disp=disp))
@@ -685,7 +682,7 @@ def d3_graph_model():
links.append(dict(source=tablename, target = referenced_table))
- nodes.append(dict(name=tablename, type="table", fields = fields))
+ nodes.append(dict(name=tablename, type='table', fields = fields))
# d3 v4 allows individual modules to be specified. The complete d3 library is included below.
response.files.append(URL('admin','static','js/d3.min.js'))
diff --git a/applications/admin/controllers/default.py b/applications/admin/controllers/default.py
index bf06d401..c99a1702 100644
--- a/applications/admin/controllers/default.py
+++ b/applications/admin/controllers/default.py
@@ -1261,7 +1261,7 @@ def plugin():
defines = {}
for m in models:
data = safe_read(apath('%s/models/%s' % (app, m), r=request))
- defines[m] = regex_tables.findall(data)
+ defines[m] = re.findall(REGEX_DEFINE_TABLE, data, re.MULTILINE)
defines[m].sort()
# Get all controllers
diff --git a/applications/admin/languages/af.py b/applications/admin/languages/af.py
old mode 100755
new mode 100644
index d4ef48bc..9aae7bde
--- a/applications/admin/languages/af.py
+++ b/applications/admin/languages/af.py
@@ -11,7 +11,6 @@
'%s students registered': '%s students registered',
'%Y-%m-%d': '%Y-%m-%d',
'%Y-%m-%d %H:%M:%S': '%Y-%m-%d %H:%M:%S',
-'(requires internet access)': '(vereis internet toegang)',
'(requires internet access, experimental)': '(requires internet access, experimental)',
'(something like "it-it")': '(iets soos "it-it")',
'(version %s)': '(version %s)',
@@ -267,8 +266,8 @@
'Google App Engine Deployment Interface': 'Google App Engine Deployment Interface',
'Google Application Id': 'Google Application Id',
'Goto': 'Goto',
-'graph model': 'graph model',
'Graph Model': 'Graph Model',
+'graph model': 'graph model',
'Group %(group_id)s created': 'Group %(group_id)s created',
'Group %(group_id)s deleted': 'Group %(group_id)s deleted',
'Group ID': 'Group ID',
@@ -338,7 +337,6 @@
'lists by exception': 'lists by exception',
'lists by ticket': 'lists by ticket',
'Loading...': 'Loading...',
-'loading...': 'laai...',
'Local Apps': 'Local Apps',
'locals': 'locals',
'Locals##debug': 'Locals##debug',
@@ -531,17 +529,16 @@
'Start searching': 'Start searching',
'Start wizard': 'start wizard',
'state': 'state',
-'Static': 'Static',
'static': 'static',
+'Static': 'Static',
'Static files': 'Static files',
'Statistics': 'Statistics',
'Step': 'Step',
'step': 'step',
'stop': 'stop',
-'submit': 'submit',
'Submit': 'Submit',
+'submit': 'submit',
'successful': 'successful',
-'Sure you want to delete this object?': 'Is jy seker jy will hierde object verwyder?',
'switch to : db': 'switch to : db',
'switch to : filesystem': 'switch to : filesystem',
'Tab width (# characters)': 'Tab width (# characters)',
@@ -621,13 +618,11 @@
'upgrade now to %s': 'upgrade now to %s',
'upload': 'oplaai',
'Upload': 'Upload',
-'Upload & install packed application': 'Oplaai & install gepakte program',
'Upload a package:': 'Oplaai n package:',
'Upload and install packed application': 'Upload and install packed application',
'upload file:': 'oplaai lêer:',
'upload plugin file:': 'upload plugin lêer:',
'Use (...)&(...) for AND, (...)|(...) for OR, and ~(...) for NOT to build more complex queries.': 'Use (...)&(...) for AND, (...)|(...) for OR, and ~(...) for NOT to build more complex queries.',
-'Use an url:': 'Gebruik n url:',
'User': 'User',
'User %(id)s is impersonating %(other_id)s': 'User %(id)s is impersonating %(other_id)s',
'User %(id)s Logged-in': 'User %(id)s Logged-in',
@@ -650,7 +645,6 @@
'Verify Password': 'Verify Password',
'Version': 'Version',
'Versioning': 'Versioning',
-'versioning': 'versioning',
'Views': 'Views',
'views': 'views',
'Warning!': 'Warning!',
@@ -663,7 +657,6 @@
'web2py downgrade': 'web2py downgrade',
'web2py is up to date': 'web2py is up to date',
'web2py online debugger': 'web2py online debugger',
-'web2py Recent Tweets': 'web2py Onlangse Tweets',
'web2py upgrade': 'web2py upgrade',
'web2py upgraded; please restart it': 'web2py upgraded; please restart it',
'Welcome %(username)s! Click on the link %(link)s to verify your email': 'Welcome %(username)s! Click on the link %(link)s to verify your email',
diff --git a/applications/admin/languages/bg.py b/applications/admin/languages/bg.py
old mode 100755
new mode 100644
index ab460ad5..2ea453e4
--- a/applications/admin/languages/bg.py
+++ b/applications/admin/languages/bg.py
@@ -11,7 +11,6 @@
'%s students registered': '%s students registered',
'%Y-%m-%d': '%Y-%m-%d',
'%Y-%m-%d %H:%M:%S': '%Y-%m-%d %H:%M:%S',
-'(requires internet access)': '(requires internet access)',
'(requires internet access, experimental)': '(requires internet access, experimental)',
'(something like "it-it")': '(something like "it-it")',
'(version %s)': '(version %s)',
@@ -33,14 +32,11 @@
'@markmin\x01Searching: **%s** %%{file}': 'Searching: **%s** files',
'@markmin\x01You need to set up and reach a [[breakpoint %s]] to use the debugger!': 'You need to set up and reach a [[breakpoint %s]] to use the debugger!',
'A new password was emailed to you': 'A new password was emailed to you',
-'A new version of web2py is available': 'A new version of web2py is available',
-'A new version of web2py is available: %s': 'A new version of web2py is available: %s',
'Abort': 'Abort',
'About': 'about',
'About application': 'About application',
'Accept Terms': 'Accept Terms',
'Add breakpoint': 'Add breakpoint',
-'additional code for your application': 'additional code for your application',
'Additional code for your application': 'Additional code for your application',
'Admin design page': 'Admin design page',
'admin disabled because no admin password': 'admin disabled because no admin password',
@@ -48,12 +44,10 @@
'admin disabled because too many invalid login attempts': 'admin disabled because too many invalid login attempts',
'admin disabled because unable to access password file': 'admin disabled because unable to access password file',
'Admin is disabled because insecure channel': 'Admin is disabled because insecure channel',
-'Admin is disabled because unsecure channel': 'Admin is disabled because unsecure channel',
'Admin language': 'Admin language',
'Admin versioning page': 'Admin versioning page',
'administrative interface': 'administrative interface',
'Administrator Password:': 'Administrator Password:',
-'and rename it (required):': 'and rename it (required):',
'and rename it:': 'and rename it:',
'App does not exist or you are not authorized': 'App does not exist or you are not authorized',
'appadmin': 'appadmin',
@@ -72,9 +66,7 @@
'Are you sure you want to delete file "%s"?': 'Are you sure you want to delete file "%s"?',
'Are you sure you want to delete plugin "%s"?': 'Are you sure you want to delete plugin "%s"?',
'Are you sure you want to delete this object?': 'Are you sure you want to delete this object?',
-'Are you sure you want to uninstall application "%s"': 'Are you sure you want to uninstall application "%s"',
'Are you sure you want to uninstall application "%s"?': 'Are you sure you want to uninstall application "%s"?',
-'Are you sure you want to upgrade web2py now?': 'Are you sure you want to upgrade web2py now?',
'Are you sure?': 'Are you sure?',
'arguments': 'arguments',
'at char %s': 'at char %s',
@@ -85,7 +77,6 @@
'ATTENTION: you cannot edit the running application!': 'ATTENTION: you cannot edit the running application!',
'Authentication code': 'Authentication code',
'Autocomplete Python Code': 'Autocomplete Python Code',
-'Available databases and tables': 'Available databases and tables',
'Available Databases and Tables': 'Available Databases and Tables',
'back': 'back',
'Back to the plugins list': 'Back to the plugins list',
@@ -105,7 +96,6 @@
'can be a git repo': 'can be a git repo',
'Cancel': 'Cancel',
'Cannot be empty': 'Cannot be empty',
-'Cannot compile: there are errors in your app. Debug it, correct errors and try again.': 'Cannot compile: there are errors in your app. Debug it, correct errors and try again.',
'Cannot compile: there are errors in your app:': 'Cannot compile: there are errors in your app:',
'cannot create file': 'cannot create file',
'cannot upload file "%(filename)s"': 'cannot upload file "%(filename)s"',
@@ -123,12 +113,9 @@
'Clear CACHE?': 'Clear CACHE?',
'Clear DISK': 'Clear DISK',
'Clear RAM': 'Clear RAM',
-'click here for online examples': 'щракни тук за онлайн примери',
-'click here for the administrative interface': 'щракни тук за административния интерфейс',
'Click on the link %(link)s to reset your password': 'Click on the link %(link)s to reset your password',
'Click row to expand traceback': 'Click row to expand traceback',
'Click row to view a ticket': 'Click row to view a ticket',
-'click to check for upgrades': 'click to check for upgrades',
'Client IP': 'Client IP',
'code': 'code',
'Code listing': 'Code listing',
@@ -149,8 +136,6 @@
'Count': 'Count',
'Create': 'create',
'create file with filename:': 'create file with filename:',
-'create new application:': 'create new application:',
-'Create new simple application': 'Create new simple application',
'Create/Upload': 'Create/Upload',
'created by': 'created by',
'Created by:': 'Created by:',
@@ -164,9 +149,7 @@
'currently saved or': 'currently saved or',
'data uploaded': 'данните бяха качени',
'Database': 'Database',
-'database': 'database',
'Database %s select': 'Database %s select',
-'database %s select': 'database %s select',
'Database administration': 'Database administration',
'database administration': 'database administration',
'Database Administration (appadmin)': 'Database Administration (appadmin)',
@@ -192,8 +175,6 @@
'Description': 'Description',
'Description:': 'Description:',
'design': 'дизайн',
-'DESIGN': 'DESIGN',
-'Design for': 'Design for',
'Detailed traceback description': 'Detailed traceback description',
'details': 'details',
'direction: ltr': 'direction: ltr',
@@ -219,17 +200,13 @@
'download plugins': 'download plugins',
'Download plugins from repository': 'Download plugins from repository',
'E-mail': 'E-mail',
-'EDIT': 'EDIT',
'Edit': 'edit',
'edit all': 'edit all',
'Edit application': 'Edit application',
-'edit controller': 'edit controller',
'edit controller:': 'edit controller:',
'Edit current record': 'Edit current record',
'edit views:': 'edit views:',
'Editing %s': 'Editing %s',
-'Editing file': 'Editing file',
-'Editing file "%s"': 'Editing file "%s"',
'Editing Language file': 'Editing Language file',
'Editing Plural Forms File': 'Editing Plural Forms File',
'Editor': 'Editor',
@@ -240,7 +217,6 @@
'Enable': 'Enable',
'Enable Close-Tag': 'Enable Close-Tag',
'Enable Code Folding': 'Enable Code Folding',
-'Enterprise Web Framework': 'Enterprise Web Framework',
'Error': 'Error',
'Error logs for "%(app)s"': 'Error logs for "%(app)s"',
'Error snapshot': 'Error snapshot',
@@ -257,13 +233,11 @@
'exposes:': 'exposes:',
'extends': 'extends',
'failed to compile file because:': 'failed to compile file because:',
-'failed to reload module': 'failed to reload module',
'failed to reload module because:': 'failed to reload module because:',
'File': 'File',
'file "%(filename)s" created': 'file "%(filename)s" created',
'file "%(filename)s" deleted': 'file "%(filename)s" deleted',
'file "%(filename)s" uploaded': 'file "%(filename)s" uploaded',
-'file "%(filename)s" was not deleted': 'file "%(filename)s" was not deleted',
'file "%s" of %s restored': 'file "%s" of %s restored',
'file changed on disk': 'file changed on disk',
'file does not exist': 'file does not exist',
@@ -285,7 +259,6 @@
'GAE Output': 'GAE Output',
'GAE Password': 'GAE Password',
'Generate': 'Generate',
-'Get from URL:': 'Get from URL:',
'Git Pull': 'Git Pull',
'Git Push': 'Git Push',
'Globals##debug': 'Globals##debug',
@@ -293,13 +266,12 @@
'Google App Engine Deployment Interface': 'Google App Engine Deployment Interface',
'Google Application Id': 'Google Application Id',
'Goto': 'Goto',
-'graph model': 'graph model',
'Graph Model': 'Graph Model',
+'graph model': 'graph model',
'Group %(group_id)s created': 'Group %(group_id)s created',
'Group %(group_id)s deleted': 'Group %(group_id)s deleted',
'Group ID': 'Group ID',
'Group uniquely assigned to user %(id)s': 'Group uniquely assigned to user %(id)s',
-'Hello World': 'Здравей, свят',
'Help': 'help',
'here': 'here',
'Hide/Show Translated strings': 'Hide/Show Translated strings',
@@ -307,7 +279,6 @@
'Hits': 'Hits',
'Home': 'Home',
'honored only if the expression evaluates to true': 'honored only if the expression evaluates to true',
-'htmledit': 'htmledit',
'If start the downgrade, be patient, it may take a while to rollback': 'If start the downgrade, be patient, it may take a while to rollback',
'If start the upgrade, be patient, it may take a while to download': 'If start the upgrade, be patient, it may take a while to download',
'If the report above contains a ticket number it indicates a failure in executing the controller, before any attempt to execute the doctests. This is usually due to an indentation error or an error outside function code.\n\t\tA green title indicates that all tests (if defined) passed. In this case test results are not shown.': 'If the report above contains a ticket number it indicates a failure in executing the controller, before any attempt to execute the doctests. This is usually due to an indentation error or an error outside function code.\n\t\tA green title indicates that all tests (if defined) passed. In this case test results are not shown.',
@@ -319,8 +290,6 @@
'includes': 'includes',
'Incorrect code. {0} more attempt(s) remaining.': 'Incorrect code. {0} more attempt(s) remaining.',
'Indent with tabs': 'Indent with tabs',
-'insert new': 'insert new',
-'insert new %s': 'insert new %s',
'inspect attributes': 'inspect attributes',
'Install': 'install',
'Installation of %(plugin)s for %(app)s': 'Installation of %(plugin)s for %(app)s',
@@ -358,7 +327,6 @@
'Language files (static strings) updated': 'Language files (static strings) updated',
'languages': 'languages',
'Languages': 'Languages',
-'languages updated': 'languages updated',
'Last name': 'Last name',
'Last Revision': 'Last Revision',
'Last saved on:': 'Last saved on:',
@@ -369,7 +337,6 @@
'lists by exception': 'lists by exception',
'lists by ticket': 'lists by ticket',
'Loading...': 'Loading...',
-'loading...': 'loading...',
'Local Apps': 'Local Apps',
'locals': 'locals',
'Locals##debug': 'Locals##debug',
@@ -377,7 +344,6 @@
'Logged in': 'Logged in',
'Logged out': 'Logged out',
'Login': 'Login',
-'login': 'login',
'Login disabled by administrator': 'Login disabled by administrator',
'Login successful': 'Login successful',
'Login to the Administrative Interface': 'Login to the Administrative Interface',
@@ -412,7 +378,6 @@
'New simple application': 'New simple application',
'next': 'next',
'next %s rows': 'next %s rows',
-'next 100 rows': 'next 100 rows',
'NO': 'NO',
'no changes': 'no changes',
'No databases in this application': 'No databases in this application',
@@ -433,8 +398,6 @@
'or alternatively': 'or alternatively',
'Or Get from URL:': 'Or Get from URL:',
'or import from csv file': 'or import from csv file',
-'or provide app url:': 'or provide app url:',
-'or provide application url:': 'or provide application url:',
'Origin': 'Origin',
'Original/Translation': 'Original/Translation',
'Overview': 'Overview',
@@ -443,7 +406,6 @@
'Pack compiled': 'pack compiled',
'Pack custom': 'Pack custom',
'pack plugin': 'pack plugin',
-'PAM authenticated user, cannot change password here': 'PAM authenticated user, cannot change password here',
'Password': 'Password',
'password changed': 'password changed',
'Password changed': 'Password changed',
@@ -471,7 +433,6 @@
'Preferences saved correctly': 'Preferences saved correctly',
'Preferences saved on session only': 'Preferences saved on session only',
'previous %s rows': 'previous %s rows',
-'previous 100 rows': 'previous 100 rows',
'Private files': 'Private files',
'private files': 'private files',
'Profile updated': 'Profile updated',
@@ -490,7 +451,6 @@
'Ram Cleared': 'Ram Cleared',
'Rapid Search': 'Rapid Search',
'Record': 'Record',
-'record': 'record',
'Record %(id)s created': 'Record %(id)s created',
'Record %(id)s deleted': 'Record %(id)s deleted',
'Record %(id)s read': 'Record %(id)s read',
@@ -498,7 +458,6 @@
'Record Created': 'Record Created',
'Record Deleted': 'Record Deleted',
'record does not exist': 'записът не съществува',
-'record id': 'record id',
'Record id': 'Record id',
'Record ID': 'Record ID',
'Record Updated': 'Record Updated',
@@ -533,7 +492,6 @@
'Revision:': 'Revision:',
'Role': 'Role',
'Roles': 'Roles',
-'Rows in table': 'Rows in table',
'Rows in Table': 'Rows in Table',
'Rows selected': 'Rows selected',
'rules are not defined': 'rules are not defined',
@@ -542,7 +500,6 @@
"Run tests in this file (to run all files, you may also use the button labelled 'test')": "Run tests in this file (to run all files, you may also use the button labelled 'test')",
'Running on %s': 'Running on %s',
'Save': 'Save',
-'save': 'save',
'Save file:': 'Save file:',
'Save file: %s': 'Save file: %s',
'Save model as...': 'Save model as...',
@@ -551,7 +508,6 @@
'Screenshot %s': 'Screenshot %s',
'Search': 'Search',
'Select Files to Package': 'Select Files to Package',
-'selected': 'selected',
'session': 'session',
'session expired': 'session expired',
'Session saved correctly': 'Session saved correctly',
@@ -573,21 +529,19 @@
'Start searching': 'Start searching',
'Start wizard': 'start wizard',
'state': 'състояние',
-'Static': 'Static',
'static': 'static',
+'Static': 'Static',
'Static files': 'Static files',
'Statistics': 'Statistics',
'Step': 'Step',
'step': 'step',
'stop': 'stop',
-'submit': 'submit',
'Submit': 'Submit',
+'submit': 'submit',
'successful': 'successful',
-'Sure you want to delete this object?': 'Сигурен ли си, че искаш да изтриеш този обект?',
'switch to : db': 'switch to : db',
'switch to : filesystem': 'switch to : filesystem',
'Tab width (# characters)': 'Tab width (# characters)',
-'table': 'table',
'Table': 'Table',
'Temporary': 'Temporary',
'test': 'test',
@@ -595,12 +549,9 @@
'The "query" is a condition like "db.table1.field1==\'value\'". Something like "db.table1.field1==db.table2.field2" results in a SQL JOIN.': 'The "query" is a condition like "db.table1.field1==\'value\'". Something like "db.table1.field1==db.table2.field2" results in a SQL JOIN.',
'The app exists, was created by wizard, continue to overwrite!': 'The app exists, was created by wizard, continue to overwrite!',
'The app exists, was NOT created by wizard, continue to overwrite!': 'The app exists, was NOT created by wizard, continue to overwrite!',
-'the application logic, each URL path is mapped in one exposed function in the controller': 'the application logic, each URL path is mapped in one exposed function in the controller',
'The application logic, each URL path is mapped in one exposed function in the controller': 'The application logic, each URL path is mapped in one exposed function in the controller',
-'the data representation, define database tables and sets': 'the data representation, define database tables and sets',
'The data representation, define database tables and sets': 'The data representation, define database tables and sets',
'The presentations layer, views are also known as templates': 'The presentations layer, views are also known as templates',
-'the presentations layer, views are also known as templates': 'the presentations layer, views are also known as templates',
'Theme': 'Theme',
'There are no controllers': 'There are no controllers',
'There are no models': 'There are no models',
@@ -613,13 +564,11 @@
'There are no views': 'There are no views',
'These files are not served, they are only available from within your app': 'These files are not served, they are only available from within your app',
'These files are served without processing, your images go here': 'These files are served without processing, your images go here',
-'these files are served without processing, your images go here': 'these files are served without processing, your images go here',
'This code was emailed to you and is required for login.': 'This code was emailed to you and is required for login.',
"This debugger may not work properly if you don't have a threaded webserver or you're using multiple daemon processes.": "This debugger may not work properly if you don't have a threaded webserver or you're using multiple daemon processes.",
'This email already has an account': 'This email already has an account',
'This is an experimental feature and it needs more testing. If you decide to downgrade you do it at your own risk': 'This is an experimental feature and it needs more testing. If you decide to downgrade you do it at your own risk',
'This is an experimental feature and it needs more testing. If you decide to upgrade you do it at your own risk': 'This is an experimental feature and it needs more testing. If you decide to upgrade you do it at your own risk',
-'This is the %(filename)s template': 'This is the %(filename)s template',
"This page can commit your changes to an openshift app repo and push them to your cloud instance. This assumes that you've already created the application instance using the web2py skeleton and have that repo somewhere on a filesystem that this web2py instance can access. This functionality requires GitPython installed and on the python path of the runtime that web2py is operating in.": "This page can commit your changes to an openshift app repo and push them to your cloud instance. This assumes that you've already created the application instance using the web2py skeleton and have that repo somewhere on a filesystem that this web2py instance can access. This functionality requires GitPython installed and on the python path of the runtime that web2py is operating in.",
'This page can upload your application to the Google App Engine computing cloud. Mind that you must first create indexes locally and this is done by installing the Google appserver and running the app locally with it once, or there will be errors when selecting records. Attention: deployment may take long time, depending on the network speed. Attention: it will overwrite your app.yaml. DO NOT SUBMIT TWICE.': 'This page can upload your application to the Google App Engine computing cloud. Mind that you must first create indexes locally and this is done by installing the Google appserver and running the app locally with it once, or there will be errors when selecting records. Attention: deployment may take long time, depending on the network speed. Attention: it will overwrite your app.yaml. DO NOT SUBMIT TWICE.',
'this page to see if a breakpoint was hit and debug interaction is required.': 'this page to see if a breakpoint was hit and debug interaction is required.',
@@ -630,7 +579,6 @@
'Ticket Missing': 'Ticket Missing',
'Time in Cache (h:m:s)': 'Time in Cache (h:m:s)',
'Timestamp': 'Timestamp',
-'TM': 'TM',
'to previous version.': 'to previous version.',
'To create a plugin, name a file/folder plugin_[name]': 'To create a plugin, name a file/folder plugin_[name]',
'To emulate a breakpoint programatically, write:': 'To emulate a breakpoint programatically, write:',
@@ -639,9 +587,7 @@
'Toggle comment': 'Toggle comment',
'Toggle Fullscreen': 'Toggle Fullscreen',
'Traceback': 'Traceback',
-'translation strings for the application': 'translation strings for the application',
'Translation strings for the application': 'Translation strings for the application',
-'try': 'try',
'try something like': 'try something like',
'Try the mobile interface': 'Try the mobile interface',
'try view': 'try view',
@@ -653,9 +599,7 @@
'unable to delete file "%(filename)s"': 'unable to delete file "%(filename)s"',
'unable to delete file plugin "%(plugin)s"': 'unable to delete file plugin "%(plugin)s"',
'Unable to determine the line number!': 'Unable to determine the line number!',
-'Unable to download': 'Unable to download',
'Unable to download app because:': 'Unable to download app because:',
-'Unable to download because': 'Unable to download because',
'unable to download layout': 'unable to download layout',
'unable to download plugin: %s': 'unable to download plugin: %s',
'Unable to download the list of plugins': 'Unable to download the list of plugins',
@@ -672,18 +616,13 @@
'Update:': 'Update:',
'Upgrade': 'Upgrade',
'upgrade now to %s': 'upgrade now to %s',
-'upgrade web2py now': 'upgrade web2py now',
'upload': 'upload',
'Upload': 'Upload',
-'Upload & install packed application': 'Upload & install packed application',
'Upload a package:': 'Upload a package:',
'Upload and install packed application': 'Upload and install packed application',
-'upload application:': 'upload application:',
-'Upload existing application': 'Upload existing application',
'upload file:': 'upload file:',
'upload plugin file:': 'upload plugin file:',
'Use (...)&(...) for AND, (...)|(...) for OR, and ~(...) for NOT to build more complex queries.': 'Use (...)&(...) for AND, (...)|(...) for OR, and ~(...) for NOT to build more complex queries.',
-'Use an url:': 'Use an url:',
'User': 'User',
'User %(id)s is impersonating %(other_id)s': 'User %(id)s is impersonating %(other_id)s',
'User %(id)s Logged-in': 'User %(id)s Logged-in',
@@ -706,8 +645,6 @@
'Verify Password': 'Verify Password',
'Version': 'Version',
'Versioning': 'Versioning',
-'versioning': 'versioning',
-'view': 'view',
'Views': 'Views',
'views': 'views',
'Warning!': 'Warning!',
@@ -720,11 +657,9 @@
'web2py downgrade': 'web2py downgrade',
'web2py is up to date': 'web2py is up to date',
'web2py online debugger': 'web2py online debugger',
-'web2py Recent Tweets': 'web2py Recent Tweets',
'web2py upgrade': 'web2py upgrade',
'web2py upgraded; please restart it': 'web2py upgraded; please restart it',
'Welcome %(username)s! Click on the link %(link)s to verify your email': 'Welcome %(username)s! Click on the link %(link)s to verify your email',
-'Welcome to web2py': 'Добре дошъл в web2py',
'Working...': 'Working...',
'WSGI reference name': 'WSGI reference name',
'YES': 'YES',
diff --git a/applications/admin/languages/cs.py b/applications/admin/languages/cs.py
old mode 100755
new mode 100644
index 69d00e95..40b27cc9
--- a/applications/admin/languages/cs.py
+++ b/applications/admin/languages/cs.py
@@ -4,9 +4,6 @@
'!langname!': 'čeština',
'"update" is an optional expression like "field1=\'newvalue\'". You cannot update or delete the results of a JOIN': 'Kolonka "Upravit" je nepovinný výraz, například "pole1=\'nováhodnota\'". Výsledky databázového JOINu nemůžete mazat ani upravovat.',
'"User Exception" debug mode. ': '"User Exception" debug mode. ',
-'"User Exception" debug mode. An error ticket could be issued!': '"User Exception" debug mode. An error ticket could be issued!',
-'%%{Row} in Table': '%%{řádek} v tabulce',
-'%%{Row} selected': 'označených %%{řádek}',
'%s': '%s',
'%s %%{row} deleted': '%s smazaných %%{záznam}',
'%s %%{row} updated': '%s upravených %%{záznam}',
@@ -14,7 +11,6 @@
'%s students registered': '%s students registered',
'%Y-%m-%d': '%d.%m.%Y',
'%Y-%m-%d %H:%M:%S': '%d.%m.%Y %H:%M:%S',
-'(requires internet access)': '(vyžaduje připojení k internetu)',
'(requires internet access, experimental)': '(requires internet access, experimental)',
'(something like "it-it")': '(například "cs-cs")',
'(version %s)': '(version %s)',
@@ -40,7 +36,6 @@
'About': 'O programu',
'About application': 'O aplikaci',
'Accept Terms': 'Accept Terms',
-'Access Control': 'Řízení přístupu',
'Add breakpoint': 'Přidat bod přerušení',
'Additional code for your application': 'Další kód pro Vaši aplikaci',
'Admin design page': 'Admin design page',
@@ -51,12 +46,8 @@
'Admin is disabled because insecure channel': 'Admin is disabled because insecure channel',
'Admin language': 'jazyk rozhraní',
'Admin versioning page': 'Admin versioning page',
-'Administrative interface': 'pro administrátorské rozhraní klikněte sem',
-'Administrative Interface': 'Administrátorské rozhraní',
'administrative interface': 'rozhraní pro správu',
'Administrator Password:': 'Administrátorské heslo:',
-'Ajax Recipes': 'Recepty s ajaxem',
-'An error occured, please %s the page': 'An error occured, please %s the page',
'and rename it:': 'a přejmenovat na:',
'App does not exist or you are not authorized': 'App does not exist or you are not authorized',
'appadmin': 'appadmin',
@@ -97,7 +88,6 @@
'breakpoints': 'body přerušení',
'Bulk Register': 'Bulk Register',
'Bulk Student Registration': 'Bulk Student Registration',
-'Buy this book': 'Koupit web2py knihu',
'Cache': 'Cache',
'cache': 'cache',
'Cache Cleared': 'Cache Cleared',
@@ -117,7 +107,6 @@
'check all': 'vše označit',
'Check for upgrades': 'Zkusit aktualizovat',
'Check to delete': 'Označit ke smazání',
-'Check to delete:': 'Označit ke smazání:',
'Checking for upgrades...': 'Zjišťuji, zda jsou k dispozici aktualizace...',
'Clean': 'Pročistit',
'Clear': 'Clear',
@@ -136,24 +125,19 @@
'Commit': 'Commit',
'Commit form': 'Commit form',
'Committed files': 'Committed files',
-'Community': 'Komunita',
'Compile': 'Zkompilovat',
'Compile (all or nothing)': 'Compile (all or nothing)',
'Compile (skip failed views)': 'Compile (skip failed views)',
'compiled application removed': 'zkompilovaná aplikace smazána',
-'Components and Plugins': 'Komponenty a zásuvné moduly',
'Condition': 'Podmínka',
'continue': 'continue',
-'Controller': 'Kontrolér (Controller)',
'Controllers': 'Kontroléry',
'controllers': 'kontroléry',
-'Copyright': 'Copyright',
'Count': 'Počet',
'Create': 'Vytvořit',
'create file with filename:': 'vytvořit soubor s názvem:',
'Create/Upload': 'Create/Upload',
'created by': 'vytvořil',
-'Created By': 'Vytvořeno - kým',
'Created by:': 'Created by:',
'Created On': 'Vytvořeno - kdy',
'Created on:': 'Created on:',
@@ -163,7 +147,6 @@
'Current session': 'Aktuální relace',
'currently running': 'právě běží',
'currently saved or': 'uloženo nebo',
-'customize me!': 'upravte mě!',
'data uploaded': 'data nahrána',
'Database': 'Rozhraní databáze',
'Database %s select': 'databáze %s výběr',
@@ -171,9 +154,7 @@
'database administration': 'správa databáze',
'Database Administration (appadmin)': 'Database Administration (appadmin)',
'Date and Time': 'Datum a čas',
-'day': 'den',
'db': 'db',
-'DB Model': 'Databázový model',
'Debug': 'Ladění',
'defines tables': 'defines tables',
'Delete': 'Smazat',
@@ -191,7 +172,6 @@
'Deploy to PythonAnywhere': 'Deploy to PythonAnywhere',
'Deployment form': 'Deployment form',
'Deployment Interface': 'Deployment Interface',
-'Deployment Recipes': 'Postupy pro deployment',
'Description': 'Popis',
'Description:': 'Description:',
'design': 'návrh',
@@ -211,11 +191,8 @@
'DO NOT use the "Pack compiled" feature.': 'DO NOT use the "Pack compiled" feature.',
'docs': 'dokumentace',
'Docs': 'Docs',
-'Documentation': 'Dokumentace',
-"Don't know what to do?": 'Nevíte kudy kam?',
'done!': 'hotovo!',
'Downgrade': 'Downgrade',
-'Download': 'Stáhnout',
'Download .w2p': 'Download .w2p',
'Download as .exe': 'Download as .exe',
'download layouts': 'stáhnout moduly rozvržení stránky',
@@ -226,26 +203,20 @@
'Edit': 'Upravit',
'edit all': 'edit all',
'Edit application': 'Správa aplikace',
-'edit controller': 'edit controller',
'edit controller:': 'edit controller:',
'Edit current record': 'Upravit aktuální záznam',
-'Edit Profile': 'Upravit profil',
'edit views:': 'upravit pohled:',
'Editing %s': 'Editing %s',
-'Editing file "%s"': 'Úprava souboru "%s"',
'Editing Language file': 'Úprava jazykového souboru',
'Editing Plural Forms File': 'Editing Plural Forms File',
'Editor': 'Editor',
'Email Address': 'Email Address',
-'Email and SMS': 'Email a SMS',
'Email sent': 'Email sent',
'Email verification': 'Email verification',
'Email verified': 'Email verified',
'Enable': 'Odblokovat',
'Enable Close-Tag': 'Enable Close-Tag',
'Enable Code Folding': 'Enable Code Folding',
-'enter a number between %(min)g and %(max)g': 'zadejte číslo mezi %(min)g a %(max)g',
-'enter an integer between %(min)g and %(max)g': 'zadejte celé číslo mezi %(min)g a %(max)g',
'Error': 'Chyba',
'Error logs for "%(app)s"': 'Seznam výskytu chyb pro aplikaci "%(app)s"',
'Error snapshot': 'Snapshot chyby',
@@ -255,7 +226,6 @@
'Exception %s': 'Exception %s',
'Exception instance attributes': 'Prvky instance výjimky',
'Exit Fullscreen': 'Exit Fullscreen',
-'Expand Abbreviation': 'Expand Abbreviation',
'Expand Abbreviation (html files only)': 'Expand Abbreviation (html files only)',
'export as csv file': 'exportovat do .csv souboru',
'Exports:': 'Exports:',
@@ -264,9 +234,7 @@
'extends': 'rozšiřuje',
'failed to compile file because:': 'soubor se nepodařilo zkompilovat, protože:',
'failed to reload module because:': 'failed to reload module because:',
-'FAQ': 'Často kladené dotazy',
'File': 'Soubor',
-'file': 'soubor',
'file "%(filename)s" created': 'file "%(filename)s" created',
'file "%(filename)s" deleted': 'file "%(filename)s" deleted',
'file "%(filename)s" uploaded': 'file "%(filename)s" uploaded',
@@ -283,19 +251,14 @@
'Find Next': 'Najít další',
'Find Previous': 'Najít předchozí',
'First name': 'Křestní jméno',
-'Forgot username?': 'Zapomněl jste svoje přihlašovací jméno?',
-'forgot username?': 'zapomněl jste svoje přihlašovací jméno?',
'Form has errors': 'Form has errors',
-'Forms and Validators': 'Formuláře a validátory',
'Frames': 'Frames',
-'Free Applications': 'Aplikace zdarma',
'Function disabled': 'Function disabled',
'Functions with no doctests will result in [passed] tests.': 'Functions with no doctests will result in [passed] tests.',
'GAE Email': 'GAE Email',
'GAE Output': 'GAE Output',
'GAE Password': 'GAE Password',
'Generate': 'Vytvořit',
-'Get from URL:': 'Stáhnout z internetu:',
'Git Pull': 'Git Pull',
'Git Push': 'Git Push',
'Globals##debug': 'Globální proměnné',
@@ -303,14 +266,12 @@
'Google App Engine Deployment Interface': 'Google App Engine Deployment Interface',
'Google Application Id': 'Google Application Id',
'Goto': 'Goto',
-'graph model': 'graph model',
'Graph Model': 'Graph Model',
+'graph model': 'graph model',
'Group %(group_id)s created': 'Skupina %(group_id)s vytvořena',
'Group %(group_id)s deleted': 'Group %(group_id)s deleted',
'Group ID': 'ID skupiny',
'Group uniquely assigned to user %(id)s': 'Group uniquely assigned to user %(id)s',
-'Groups': 'Skupiny',
-'Hello World': 'Ahoj světe',
'Help': 'Nápověda',
'here': 'here',
'Hide/Show Translated strings': 'Skrýt/Zobrazit přeložené texty',
@@ -318,7 +279,6 @@
'Hits': 'Kolikrát dosaženo',
'Home': 'Domovská stránka',
'honored only if the expression evaluates to true': 'brát v potaz jen když se tato podmínka vyhodnotí kladně',
-'How did you get here?': 'Jak jste se sem vlastně dostal?',
'If start the downgrade, be patient, it may take a while to rollback': 'If start the downgrade, be patient, it may take a while to rollback',
'If start the upgrade, be patient, it may take a while to download': 'If start the upgrade, be patient, it may take a while to download',
'If the report above contains a ticket number it indicates a failure in executing the controller, before any attempt to execute the doctests. This is usually due to an indentation error or an error outside function code.\n\t\tA green title indicates that all tests (if defined) passed. In this case test results are not shown.': 'If the report above contains a ticket number it indicates a failure in executing the controller, before any attempt to execute the doctests. This is usually due to an indentation error or an error outside function code.\n\t\tA green title indicates that all tests (if defined) passed. In this case test results are not shown.',
@@ -330,9 +290,6 @@
'includes': 'zahrnuje',
'Incorrect code. {0} more attempt(s) remaining.': 'Incorrect code. {0} more attempt(s) remaining.',
'Indent with tabs': 'Indent with tabs',
-'Index': 'Index',
-'insert new': 'vložit nový záznam ',
-'insert new %s': 'vložit nový záznam %s',
'inspect attributes': 'inspect attributes',
'Install': 'Instalovat',
'Installation of %(plugin)s for %(app)s': 'Installation of %(plugin)s for %(app)s',
@@ -343,7 +300,6 @@
'internal error': 'internal error',
'internal error: %s': 'internal error: %s',
'Internal State': 'Vnitřní stav',
-'Introduction': 'Úvod',
'Invalid action': 'Invalid action',
'Invalid application name': 'Invalid application name',
'invalid circular reference': 'invalid circular reference',
@@ -351,8 +307,8 @@
'Invalid git repository specified.': 'Invalid git repository specified.',
'Invalid key': 'Invalid key',
'Invalid login': 'Invalid login',
-'Invalid password': 'Nesprávné heslo',
'invalid password': 'invalid password',
+'Invalid password': 'Nesprávné heslo',
'invalid password.': 'neplatné heslo',
'Invalid Query': 'Neplatný dotaz',
'invalid request': 'Neplatný požadavek',
@@ -363,11 +319,7 @@
'Invalid user': 'Invalid user',
'Invalid username': 'Invalid username',
'Invitation to join %(site)s': 'Invitation to join %(site)s',
-'Is Active': 'Je aktivní',
-'It is %s %%{day} today.': 'Dnes je to %s %%{den}.',
'Key': 'Klíč',
-'Key bindings': 'Vazby klíčů',
-'Key bindings for ZenCoding Plugin': 'Key bindings for ZenCoding Plugin',
'Key verified': 'Key verified',
'Keyboard shortcuts': 'Keyboard shortcuts',
'kill process': 'kill process',
@@ -378,37 +330,26 @@
'Last name': 'Příjmení',
'Last Revision': 'Last Revision',
'Last saved on:': 'Naposledy uloženo:',
-'Layout': 'Rozvržení stránky (layout)',
-'Layout Plugins': 'Moduly rozvržení stránky (Layout Plugins)',
-'Layouts': 'Rozvržení stránek',
'License for': 'Licence pro',
'License:': 'License:',
'Line Nr': 'Line Nr',
'Line number': 'Číslo řádku',
-'LineNo': 'Č.řádku',
'lists by exception': 'lists by exception',
'lists by ticket': 'lists by ticket',
-'Live Chat': 'Online pokec',
'Loading...': 'Loading...',
-'loading...': 'nahrávám...',
'Local Apps': 'Local Apps',
'locals': 'locals',
'Locals##debug': 'Lokální proměnné',
'Log In': 'Log In',
'Logged in': 'Přihlášení proběhlo úspěšně',
'Logged out': 'Odhlášení proběhlo úspěšně',
-'login': 'přihlásit se',
'Login': 'Přihlásit se',
'Login disabled by administrator': 'Login disabled by administrator',
'Login successful': 'Login successful',
'Login to the Administrative Interface': 'Přihlásit se do Správce aplikací',
'Login/Register': 'Login/Register',
-'logout': 'odhlásit se',
'Logout': 'Odhlásit se',
'lost password': 'lost password',
-'Lost Password': 'Zapomněl jste heslo',
-'Lost password?': 'Zapomněl jste heslo?',
-'lost password?': 'zapomněl jste heslo?',
'Main Menu': 'Main Menu',
'Manage': 'Manage',
'Manage %(action)s': 'Manage %(action)s',
@@ -417,16 +358,13 @@
'Manage Cache': 'Manage Cache',
'Manage Students': 'Manage Students',
'Memberships': 'Memberships',
-'Menu Model': 'Model rozbalovací nabídky',
'merge': 'merge',
'Models': 'Modely',
'models': 'modely',
-'Modified By': 'Změněno - kým',
'Modified On': 'Změněno - kdy',
'Modules': 'Moduly',
'modules': 'moduly',
'Multi User Mode': 'Multi User Mode',
-'My Sites': 'Správa aplikací',
'Name': 'Jméno',
'new application "%s" created': 'nová aplikace "%s" vytvořena',
'new application "%s" imported': 'new application "%s" imported',
@@ -440,7 +378,6 @@
'New simple application': 'Vytvořit primitivní aplikaci',
'next': 'next',
'next %s rows': 'next %s rows',
-'next 100 rows': 'dalších 100 řádků',
'NO': 'NO',
'no changes': 'no changes',
'No databases in this application': 'V této aplikaci nejsou žádné databáze',
@@ -448,7 +385,6 @@
'no match': 'no match',
'no package selected': 'no package selected',
'no permission to uninstall "%s"': 'no permission to uninstall "%s"',
-'No ticket_storage.txt found under /private folder': 'Soubor ticket_storage.txt v adresáři /private nenalezen',
'Node:': 'Node:',
'Not Authorized': 'Not Authorized',
'Not supported': 'Not supported',
@@ -456,8 +392,6 @@
'Object or table name': 'Objekt či tabulka',
'Old password': 'Původní heslo',
"On production, you'll have to configure your webserver to use one process and multiple threads to use this debugger.": "On production, you'll have to configure your webserver to use one process and multiple threads to use this debugger.",
-'online designer': 'online návrhář',
-'Online examples': 'Příklady online',
'Open new app in new window': 'Open new app in new window',
'OpenShift Deployment Interface': 'OpenShift Deployment Interface',
'OpenShift Output': 'OpenShift Output',
@@ -466,8 +400,6 @@
'or import from csv file': 'nebo importovat z .csv souboru',
'Origin': 'Původ',
'Original/Translation': 'Originál/Překlad',
-'Other Plugins': 'Ostatní moduly',
-'Other Recipes': 'Ostatní zásuvné moduly',
'Overview': 'Přehled',
'Overwrite installed app': 'Přepsat instalovanou aplikaci',
'Pack all': 'Zabalit',
@@ -475,7 +407,6 @@
'Pack custom': 'Pack custom',
'pack plugin': 'pack plugin',
'Password': 'Heslo',
-'password': 'heslo',
'password changed': 'password changed',
'Password changed': 'Password changed',
"Password fields don't match": 'Hesla se neshodují',
@@ -499,14 +430,11 @@
'Plural Form #%s': 'Plural Form #%s',
'Plural-Forms:': 'Množná čísla:',
'Powered by': 'Poháněno',
-'Preface': 'Předmluva',
'Preferences saved correctly': 'Preferences saved correctly',
'Preferences saved on session only': 'Preferences saved on session only',
'previous %s rows': 'previous %s rows',
-'previous 100 rows': 'předchozích 100 řádků',
'Private files': 'Soukromé soubory',
'private files': 'soukromé soubory',
-'profile': 'profil',
'Profile updated': 'Profile updated',
'Project Progress': 'Vývoj projektu',
'Pull': 'Pull',
@@ -515,17 +443,13 @@
'Push': 'Push',
'Push failed, there are unmerged entries in the cache. Resolve merge issues manually and try again.': 'Push failed, there are unmerged entries in the cache. Resolve merge issues manually and try again.',
'pygraphviz library not found': 'pygraphviz library not found',
-'Python': 'Python',
'PythonAnywhere Apps': 'PythonAnywhere Apps',
'PythonAnywhere Password': 'PythonAnywhere Password',
'Query:': 'Dotaz:',
-'Quick Examples': 'Krátké příklady',
'RAM': 'RAM',
'RAM Cache Keys': 'Klíče RAM Cache',
'Ram Cleared': 'RAM smazána',
'Rapid Search': 'Rapid Search',
-'Readme': 'Nápověda',
-'Recipes': 'Postupy jak na to',
'Record': 'Záznam',
'Record %(id)s created': 'Record %(id)s created',
'Record %(id)s deleted': 'Record %(id)s deleted',
@@ -534,18 +458,16 @@
'Record Created': 'Record Created',
'Record Deleted': 'Record Deleted',
'record does not exist': 'záznam neexistuje',
-'Record ID': 'ID záznamu',
'Record id': 'id záznamu',
+'Record ID': 'ID záznamu',
'Record Updated': 'Record Updated',
'refresh': 'obnovte',
'register': 'registrovat',
-'Register': 'Zaregistrovat se',
'Registration identifier': 'Registrační identifikátor',
'Registration is pending approval': 'Registration is pending approval',
'Registration key': 'Registrační klíč',
'Registration needs verification': 'Registration needs verification',
'Registration successful': 'Registration successful',
-'reload': 'reload',
'Reload routes': 'Znovu nahrát cesty',
'Remember me (for 30 days)': 'Zapamatovat na 30 dní',
'Remove compiled': 'Odstranit zkompilované',
@@ -562,7 +484,6 @@
'response': 'response',
'restart': 'restart',
'restore': 'obnovit',
-'Retrieve username': 'Získat přihlašovací jméno',
'return': 'return',
'Revert': 'Revert',
'revert': 'vrátit se k původnímu',
@@ -587,8 +508,6 @@
'Screenshot %s': 'Screenshot %s',
'Search': 'Search',
'Select Files to Package': 'Select Files to Package',
-'Semantic': 'Modul semantic',
-'Services': 'Služby',
'session': 'session',
'session expired': 'session expired',
'Session saved correctly': 'Session saved correctly',
@@ -610,24 +529,20 @@
'Start searching': 'Začít hledání',
'Start wizard': 'Spustit průvodce',
'state': 'stav',
-'Static': 'Static',
'static': 'statické soubory',
+'Static': 'Static',
'Static files': 'Statické soubory',
'Statistics': 'Statistika',
'Step': 'Step',
'step': 'step',
'stop': 'stop',
-'Stylesheet': 'CSS styly',
-'submit': 'odeslat',
'Submit': 'Odeslat',
+'submit': 'odeslat',
'successful': 'úspěšně',
-'Support': 'Podpora',
-'Sure you want to delete this object?': 'Opravdu chcete smazat tento objekt?',
'switch to : db': 'switch to : db',
'switch to : filesystem': 'switch to : filesystem',
'Tab width (# characters)': 'Tab width (# characters)',
'Table': 'tabulka',
-'Table name': 'Název tabulky',
'Temporary': 'Dočasný',
'test': 'test',
'Testing application': 'Testing application',
@@ -635,11 +550,8 @@
'The app exists, was created by wizard, continue to overwrite!': 'The app exists, was created by wizard, continue to overwrite!',
'The app exists, was NOT created by wizard, continue to overwrite!': 'The app exists, was NOT created by wizard, continue to overwrite!',
'The application logic, each URL path is mapped in one exposed function in the controller': 'Logika aplikace: každá URL je mapována na funkci vystavovanou kontrolérem.',
-'The Core': 'Jádro (The Core)',
'The data representation, define database tables and sets': 'Reprezentace dat: definovat tabulky databáze a záznamy',
-'The output of the file is a dictionary that was rendered by the view %s': 'Výstup ze souboru je slovník, který se zobrazil v pohledu %s.',
'The presentations layer, views are also known as templates': 'Prezentační vrstva: pohledy či templaty (šablony)',
-'The Views': 'Pohledy (The Views)',
'Theme': 'Theme',
'There are no controllers': 'There are no controllers',
'There are no models': 'There are no models',
@@ -652,14 +564,11 @@
'There are no views': 'There are no views',
'These files are not served, they are only available from within your app': 'Tyto soubory jsou klientům nepřístupné. K dispozici jsou pouze v rámci aplikace.',
'These files are served without processing, your images go here': 'Tyto soubory jsou servírovány bez přídavné logiky, sem patří např. obrázky.',
-'This App': 'Tato aplikace',
'This code was emailed to you and is required for login.': 'This code was emailed to you and is required for login.',
"This debugger may not work properly if you don't have a threaded webserver or you're using multiple daemon processes.": "This debugger may not work properly if you don't have a threaded webserver or you're using multiple daemon processes.",
'This email already has an account': 'This email already has an account',
-'This is a copy of the scaffolding application': 'Toto je kopie aplikace skelet.',
'This is an experimental feature and it needs more testing. If you decide to downgrade you do it at your own risk': 'This is an experimental feature and it needs more testing. If you decide to downgrade you do it at your own risk',
'This is an experimental feature and it needs more testing. If you decide to upgrade you do it at your own risk': 'This is an experimental feature and it needs more testing. If you decide to upgrade you do it at your own risk',
-'This is the %(filename)s template': 'This is the %(filename)s template',
"This page can commit your changes to an openshift app repo and push them to your cloud instance. This assumes that you've already created the application instance using the web2py skeleton and have that repo somewhere on a filesystem that this web2py instance can access. This functionality requires GitPython installed and on the python path of the runtime that web2py is operating in.": "This page can commit your changes to an openshift app repo and push them to your cloud instance. This assumes that you've already created the application instance using the web2py skeleton and have that repo somewhere on a filesystem that this web2py instance can access. This functionality requires GitPython installed and on the python path of the runtime that web2py is operating in.",
'This page can upload your application to the Google App Engine computing cloud. Mind that you must first create indexes locally and this is done by installing the Google appserver and running the app locally with it once, or there will be errors when selecting records. Attention: deployment may take long time, depending on the network speed. Attention: it will overwrite your app.yaml. DO NOT SUBMIT TWICE.': 'This page can upload your application to the Google App Engine computing cloud. Mind that you must first create indexes locally and this is done by installing the Google appserver and running the app locally with it once, or there will be errors when selecting records. Attention: deployment may take long time, depending on the network speed. Attention: it will overwrite your app.yaml. DO NOT SUBMIT TWICE.',
'this page to see if a breakpoint was hit and debug interaction is required.': 'tuto stránku, abyste uviděli, zda se dosáhlo bodu přerušení.',
@@ -677,16 +586,13 @@
'toggle breakpoint': 'vyp./zap. bod přerušení',
'Toggle comment': 'Toggle comment',
'Toggle Fullscreen': 'Na celou obrazovku a zpět',
-'too short': 'Příliš krátké',
'Traceback': 'Traceback',
'Translation strings for the application': 'Překlad textů pro aplikaci',
'try something like': 'try something like',
'Try the mobile interface': 'Zkuste rozhraní pro mobilní zařízení',
'try view': 'try view',
-'Twitter': 'Twitter',
'Two-step Login Authentication Code': 'Two-step Login Authentication Code',
'Type PDB debugger command in here and hit Return (Enter) to execute it.': 'Type PDB debugger command in here and hit Return (Enter) to execute it.',
-'Type python statement in here and hit Return (Enter) to execute it.': 'Type python statement in here and hit Return (Enter) to execute it.',
'Type some Python code in here and hit Return (Enter) to execute it.': 'Type some Python code in here and hit Return (Enter) to execute it.',
'Unable to check for upgrades': 'Unable to check for upgrades',
'unable to create application "%s"': 'unable to create application "%s"',
@@ -709,7 +615,6 @@
'update all languages': 'aktualizovat všechny jazyky',
'Update:': 'Upravit:',
'Upgrade': 'Upgrade',
-'upgrade now': 'upgrade now',
'upgrade now to %s': 'upgrade now to %s',
'upload': 'nahrát',
'Upload': 'Upload',
@@ -739,10 +644,7 @@
'variables': 'variables',
'Verify Password': 'Zopakujte heslo',
'Version': 'Verze',
-'Version %s.%s.%s (%s) %s': 'Verze %s.%s.%s (%s) %s',
'Versioning': 'Verzování',
-'Videos': 'Videa',
-'View': 'Pohled (View)',
'Views': 'Pohledy',
'views': 'pohledy',
'Warning!': 'Warning!',
@@ -755,28 +657,19 @@
'web2py downgrade': 'web2py downgrade',
'web2py is up to date': 'Máte aktuální verzi web2py.',
'web2py online debugger': 'Ladící online web2py program',
-'web2py Recent Tweets': 'Štěbetání na Twitteru o web2py',
'web2py upgrade': 'web2py upgrade',
'web2py upgraded; please restart it': 'web2py upgraded; please restart it',
-'Welcome': 'Vítejte',
'Welcome %(username)s! Click on the link %(link)s to verify your email': 'Welcome %(username)s! Click on the link %(link)s to verify your email',
-'Welcome to web2py': 'Vitejte ve web2py',
-'Welcome to web2py!': 'Vítejte ve web2py!',
-'Which called the function %s located in the file %s': 'která zavolala funkci %s v souboru (kontroléru) %s.',
'Working...': 'Working...',
'WSGI reference name': 'WSGI reference name',
'YES': 'YES',
'Yes': 'Yes',
-'You are successfully running web2py': 'Úspěšně jste spustili web2py.',
'You can also set and remove breakpoint in the edit window, using the Toggle Breakpoint button': 'Nastavovat a mazat body přerušení je též možno v rámci editování zdrojového souboru přes tlačítko Vyp./Zap. bod přerušení',
-'You can inspect variables using the console bellow': 'Níže pomocí příkazové řádky si můžete prohlédnout proměnné',
'You can inspect variables using the console below': 'You can inspect variables using the console below',
-'You can modify this application and adapt it to your needs': 'Tuto aplikaci si můžete upravit a přizpůsobit ji svým potřebám.',
'You have been invited to join %(site)s, click %(link)s to complete the process': 'You have been invited to join %(site)s, click %(link)s to complete the process',
'You have one more login attempt before you are locked out': 'You have one more login attempt before you are locked out',
'You need to set up and reach a': 'Je třeba nejprve nastavit a dojít až na',
'You only need these if you have already registered': 'You only need these if you have already registered',
-'You visited the url %s': 'Navštívili jste stránku %s,',
'Your application will be blocked until you click an action button (next, step, continue, etc.)': 'Aplikace bude blokována než se klikne na jedno z tlačítek (další, krok, pokračovat, atd.)',
'Your password is: %(password)s': 'Your password is: %(password)s',
'Your temporary login code is {0}': 'Your temporary login code is {0}',
diff --git a/applications/admin/languages/de.py b/applications/admin/languages/de.py
index 65e2c821..fabd8db8 100644
--- a/applications/admin/languages/de.py
+++ b/applications/admin/languages/de.py
@@ -11,7 +11,6 @@
'%s students registered': '%s Studenten registriert',
'%Y-%m-%d': '%d.%m.%Y',
'%Y-%m-%d %H:%M:%S': '%d.%m.%Y %H:%M:%S',
-'(requires internet access)': '(Erfordert Internetzugang)',
'(requires internet access, experimental)': '(Erfordert Internetzugang, experimentell)',
'(something like "it-it")': '(so etwas wie "it-it")',
'(version %s)': '(version %s)',
@@ -33,8 +32,6 @@
'@markmin\x01Searching: **%s** %%{file}': 'Suche: **% s ** %% {Datei}',
'@markmin\x01You need to set up and reach a [[breakpoint %s]] to use the debugger!': 'You need to set up and reach a [[breakpoint %s]] to use the debugger!',
'A new password was emailed to you': 'A new password was emailed to you',
-'A new version of web2py is available': 'Eine neue Version von web2py ist verfügbar',
-'A new version of web2py is available: %s': 'Eine neue Version von web2py ist verfügbar: %s',
'Abort': 'Verwerfen',
'About': 'Über',
'About application': 'Über die Anwendung',
@@ -44,17 +41,13 @@
'Admin design page': 'Admin-Design-Seite',
'admin disabled because no admin password': 'Admin ist deaktiviert, da kein Admin-Passwort gesetzt ist',
'admin disabled because not supported on google app engine': 'Admin deaktiviert, da auf Google App Engine nicht unterstützt',
-'admin disabled because not supported on google apps engine': 'Admin deaktiviert, da es auf Google Apps Engine nicht unterstützt wird.',
'admin disabled because too many invalid login attempts': 'Admin deaktiviert, weil zu viele ungültige Anmeldeversuche',
'admin disabled because unable to access password file': 'Admin deaktiviert, da der Zugriff auf die Kennwortdatei nicht möglich ist',
'Admin is disabled because insecure channel': 'Appadmin ist deaktiviert, wegen der Benutzung eines unsicheren Kanals',
-'Admin is disabled because unsecure channel': 'Appadmin ist deaktiviert, wegen der Benutzung eines unsicheren Kanals',
'Admin language': 'Admin-Sprache',
'Admin versioning page': 'Admin-Versionierungsseite',
'administrative interface': 'Administratives Interface',
'Administrator Password:': 'Administrator Passwort:',
-'An error occured, please %s the page': 'Ein Fehler ist aufgetereten, bitte %s die Seite',
-'and rename it (required):': 'und benenne sie se um (erforderlich):',
'and rename it:': ' und benenne sie es um:',
'App does not exist or you are not authorized': 'App existiert nicht oder Sie sind nicht autorisiert',
'appadmin': 'appadmin',
@@ -73,9 +66,7 @@
'Are you sure you want to delete file "%s"?': 'Sind Sie sich sicher, dass Sie die Datei "%s" löschen wollen?',
'Are you sure you want to delete plugin "%s"?': 'Möchten Sie das Plugin "%s" wirklich löschen?',
'Are you sure you want to delete this object?': 'Sind Sie sich sicher, dass Sie dieses Objekt löschen wollen?',
-'Are you sure you want to uninstall application "%s"': 'Sind Sie sich sicher, dass Sie die Anwendung "%s" deinstallieren wollen',
'Are you sure you want to uninstall application "%s"?': 'Sind Sie sich sicher, dass Sie die Anwendung "%s" deinstallieren wollen?',
-'Are you sure you want to upgrade web2py now?': 'Sind Sie sich sicher, dass Sie web2py jetzt upgraden möchten?',
'Are you sure?': 'Bist du sicher?',
'arguments': 'Argumente',
'at char %s': 'bei Zeichen %s',
@@ -83,18 +74,14 @@
'ATTENTION:': 'BEACHTUNG:',
'ATTENTION: Login requires a secure (HTTPS) connection or running on localhost.': 'ACHTUNG: Die Einwahl benötigt eine sichere (HTTPS) Verbindung. Es sei denn sie läuft Lokal (localhost).',
'ATTENTION: TESTING IS NOT THREAD SAFE SO DO NOT PERFORM MULTIPLE TESTS CONCURRENTLY.': 'ACHTUNG: Testen ist nicht threadsicher. Führen Sie also nicht mehrere Tests gleichzeitig aus.',
-'ATTENTION: This is an experimental feature and it needs more testing.': 'ACHTUNG: Dies ist eine experimentelle Funktion und benötigt noch weitere Tests.',
'ATTENTION: you cannot edit the running application!': 'ACHTUNG: Eine laufende Anwendung kann nicht editiert werden!',
-'Authentication': 'Authentifizierung',
'Authentication code': 'Authentication code',
'Autocomplete Python Code': 'Python-Code automatisch vervollständigen',
-'Available databases and tables': 'Verfügbare Datenbanken und Tabellen',
'Available Databases and Tables': 'Verfügbare Datenbanken und Tabellen',
'back': 'Zurück',
'Back to the plugins list': 'Zurück zur Plugin-Liste',
'Back to wizard': 'Zurück zum Wizard',
'Basics': 'Basics',
-'beautify': 'Verschönern',
'Begin': 'Start',
'breakpoint': 'breakpoint',
'Breakpoints': 'Breakpoints',
@@ -106,19 +93,15 @@
'Cache Cleared': 'Cache geleert',
'Cache Keys': 'Cache Keys',
'cache, errors and sessions cleaned': 'Zwischenspeicher (cache), Fehler und Sitzungen (sessions) gelöscht',
-'call': 'Aufruf',
'can be a git repo': 'kann ein git Repository sein',
'Cancel': 'Abbrechen',
'Cannot be empty': 'Darf nicht leer sein',
-'Cannot compile: there are errors in your app. Debug it, correct errors and try again.': 'Nicht Kompilierbar: Es sind Fehler in der Anwendung. Beseitigen Sie die Fehler und versuchen Sie es erneut.',
'Cannot compile: there are errors in your app:': 'Kompilieren nicht möglich: Es gibt Fehler in Ihrer App:',
'cannot create file': 'Kann Datei nicht erstellen',
'cannot upload file "%(filename)s"': 'Kann Datei nicht Hochladen "%(filename)s"',
'Change Admin Password': 'Admin-Passwort ändern',
'Change admin password': 'Administrator-Passwort ändern',
'change editor settings': 'Editoreinstellungen ändern',
-'Change Password': 'Passwort ändern',
-'change password': 'Passwort ändern',
'Change password': 'Change password',
'Changelog': 'Changelog',
'check all': 'alles auswählen',
@@ -130,12 +113,9 @@
'Clear CACHE?': 'CACHE leeren?',
'Clear DISK': 'DISK leeren',
'Clear RAM': 'RAM leeren',
-'click here for online examples': 'hier klicken für online Beispiele',
-'click here for the administrative interface': 'hier klicken für die Administrationsoberfläche ',
'Click on the link %(link)s to reset your password': 'Click on the link %(link)s to reset your password',
'Click row to expand traceback': 'Klicke auf die Zeile für Fehlerverfolgung',
'Click row to view a ticket': 'Klicke auf eine Zeile, um ein Ticket anzusehen',
-'click to check for upgrades': 'hier klicken um nach Upgrades zu suchen',
'Client IP': 'Client IP',
'code': 'Code',
'Code listing': 'Codeauflistung',
@@ -151,15 +131,11 @@
'compiled application removed': 'kompilierte Anwendung gelöscht',
'Condition': 'Bedingung',
'continue': 'fortsetzen',
-'Controller': 'Controller',
'Controllers': 'Controllers',
'controllers': 'controllers',
-'Copyright': 'Urheberrecht',
'Count': 'Anzahl',
'Create': 'Erstellen',
'create file with filename:': 'Erzeuge Datei mit Dateinamen:',
-'create new application:': 'Erzeuge neue Anwendung:',
-'Create new simple application': 'Erzeuge neue Anwendung',
'Create/Upload': 'Erstellen/Uploaden',
'created by': 'Erstellt von',
'Created by:': 'Erstellt von:',
@@ -171,18 +147,14 @@
'Current session': 'Aktuelle Sitzung (session)',
'currently running': 'aktuell in Betrieb',
'currently saved or': 'des derzeit gespeicherten oder',
-'customize me!': 'Pass mich an!',
'data uploaded': 'Daten hochgeladen',
'Database': 'Datenbank',
-'database': 'Datenbank',
'Database %s select': 'Database %s ausgewählt',
-'database %s select': 'Datenbank %s ausgewählt',
'Database administration': 'Database administration',
'database administration': 'Datenbankadministration',
'Database Administration (appadmin)': 'Database Administration (appadmin)',
'Date and Time': 'Datum und Uhrzeit',
'db': 'db',
-'DB Model': 'DB Modell',
'Debug': 'Debug',
'defines tables': 'definiere Tabellen',
'Delete': 'löschen',
@@ -203,8 +175,6 @@
'Description': 'Beschreibung',
'Description:': 'Beschreibung:',
'design': 'design',
-'DESIGN': 'DESIGN',
-'Design for': 'Design für',
'Detailed traceback description': 'Detaillierte traceback Beschreibung',
'details': 'Details',
'direction: ltr': 'Richtung: ltr',
@@ -221,7 +191,6 @@
'DO NOT use the "Pack compiled" feature.': 'Verwenden Sie NICHT die Funktion "Pack kompiliert".',
'docs': 'docs',
'Docs': 'Docs',
-'documentation': 'Dokumentation',
'done!': 'fertig!',
'Downgrade': 'Downgrade',
'Download .w2p': 'Download .w2p',
@@ -231,20 +200,13 @@
'download plugins': 'Plugins herunterladen',
'Download plugins from repository': 'Plugins aus dem Repository herunterladen',
'E-mail': 'E-mail',
-'EDIT': 'BEARBEITEN',
'Edit': 'Bearbeiten',
'edit all': 'Alles bearbeiten',
'Edit application': 'Bearbeite Anwendung',
-'edit controller': 'Bearbeite Controller',
'edit controller:': 'bearbeite Controller:',
'Edit current record': 'Bearbeite aktuellen Datensatz',
-'Edit Profile': 'Bearbeite Profil',
-'edit profile': 'bearbeite Profil',
-'Edit This App': 'Bearbeite diese Anwendung',
'edit views:': 'Views bearbeiten:',
'Editing %s': 'Bearbeite %s',
-'Editing file': 'Bearbeite Datei',
-'Editing file "%s"': 'Bearbeite Datei "%s"',
'Editing Language file': 'Sprachdatei bearbeiten',
'Editing Plural Forms File': 'Bearbeiten von Plural formen Datei',
'Editor': 'Editor',
@@ -255,18 +217,15 @@
'Enable': 'Aktivieren',
'Enable Close-Tag': 'Aktiviere Close-Tag',
'Enable Code Folding': 'Aktiviere Code Folding',
-'Enterprise Web Framework': 'Enterprise Web Framework',
'Error': 'Fehler',
'Error logs for "%(app)s"': 'Fehlerprotokoll für "%(app)s"',
'Error snapshot': 'Error snapshot',
'Error ticket': 'Error ticket',
'Errors': 'Fehlermeldungen',
-'escape': 'escape',
'Exception %(extype)s: %(exvalue)s': 'Ausnahme %(extype)s: %(exvalue)s',
'Exception %s': 'Ausnahme %s',
'Exception instance attributes': 'Attribute der Ausnahmeinstanz',
'Exit Fullscreen': 'Vollbild beenden',
-'Expand Abbreviation': 'Kürzel erweitern',
'Expand Abbreviation (html files only)': 'Abkürzungen ausschreiben (nur HTML Dateien)',
'export as csv file': 'Exportieren als CSV-Datei',
'Exports:': 'Exports:',
@@ -274,13 +233,11 @@
'exposes:': 'stellt folgendes zur Verfügung:',
'extends': 'erweitert',
'failed to compile file because:': 'Datei konnte nicht kompiliert werden, da:',
-'failed to reload module': 'neu laden des Moduls fehlgeschlagen',
'failed to reload module because:': 'Modul konnte nicht geladen werden, weil:',
'File': 'Datei',
'file "%(filename)s" created': 'Datei "%(filename)s" erstellt',
'file "%(filename)s" deleted': 'Datei "%(filename)s" gelöscht',
'file "%(filename)s" uploaded': 'Datei "%(filename)s" hochgeladen',
-'file "%(filename)s" was not deleted': 'Datei "%(filename)s" wurde nicht gelöscht',
'file "%s" of %s restored': 'Datei "%s" von %s wiederhergestellt',
'file changed on disk': 'Datei auf Festplatte geändert',
'file does not exist': 'Datei existiert nicht',
@@ -302,22 +259,19 @@
'GAE Output': 'GAE Output',
'GAE Password': 'GAE Passwort',
'Generate': 'Generieren',
-'Get from URL:': 'Von URL abrufen:',
'Git Pull': 'Git Pull',
'Git Push': 'Git Push',
'Globals##debug': 'Globales##debug',
-'Go to Matching Pair': 'Gehe zum übereinstimmenden Paar',
'go!': 'go!',
'Google App Engine Deployment Interface': 'Google App Engine Deployment Interface',
'Google Application Id': 'Google-Anwendungs-ID',
'Goto': 'Gehe zu',
-'graph model': 'graph model',
'Graph Model': 'Graph Model',
+'graph model': 'graph model',
'Group %(group_id)s created': 'Group %(group_id)s created',
'Group %(group_id)s deleted': 'Group %(group_id)s deleted',
'Group ID': 'Gruppen ID',
'Group uniquely assigned to user %(id)s': 'Group uniquely assigned to user %(id)s',
-'Hello World': 'Hallo Welt',
'Help': 'Hilfe',
'here': 'Hier',
'Hide/Show Translated strings': 'Zeige/Verstecke übersetzte Strings',
@@ -325,13 +279,10 @@
'Hits': 'Treffer',
'Home': 'Startseite',
'honored only if the expression evaluates to true': 'Wird nur berücksichtigt, wenn der Ausdruck als true ausgewertet wird',
-'htmledit': 'htmledit',
'If start the downgrade, be patient, it may take a while to rollback': 'Wenn Sie das Downgrade starten, haben Sie etwas Geduld. Das Rollback kann einige Zeit dauern',
'If start the upgrade, be patient, it may take a while to download': 'Wenn Sie das Upgrade starten, haben Sie etwas Geduld. Das Herunterladen kann einige Zeit dauern',
'If the report above contains a ticket number it indicates a failure in executing the controller, before any attempt to execute the doctests. This is usually due to an indentation error or an error outside function code.\n\t\tA green title indicates that all tests (if defined) passed. In this case test results are not shown.': 'If the report above contains a ticket number it indicates a failure in executing the controller, before any attempt to execute the doctests. This is usually due to an indentation error or an error outside function code.\r\n\t\tA green title indicates that all tests (if defined) passed. In this case test results are not shown.',
'If the report above contains a ticket number it indicates a failure in executing the controller, before any attempt to execute the doctests. This is usually due to an indentation error or an error outside function code.\nA green title indicates that all tests (if defined) passed. In this case test results are not shown.': 'Falls der obere Test eine Fehler-Ticketnummer enthält deutet das auf einen Fehler in der Ausführung des Controllers hin, noch bevor der Doctest ausgeführt werden konnte. Gewöhnlich Führen fehlerhafte Einrückungen oder fehlerhafter Code ausserhalb der Funktion zu solchen Fehlern. Ein grüner Titel deutet darauf hin, dass alle Test(wenn sie vorhanden sind) erfolgreich durchlaufen wurden. In diesem Fall werden die Testresultate nicht angezeigt.',
-'If you answer "yes", be patient, it may take a while to download': 'Wenn Sie mit "Ja" antworten, seien Sie bitte geduldig. Der Download könnte eine Weile dauern.',
-'If you answer yes, be patient, it may take a while to download': 'Wenn Sie mit Ja antworten, seien Sie bitte geduldig. Der Download könnte eine Weile dauern.',
'if your application uses a database other than sqlite you will then have to configure its DAL in pythonanywhere.': 'Wenn Ihre Anwendung eine andere Datenbank als sqlite verwendet, müssen Sie ihre DAL in pythonanywhere konfigurieren.',
'import': 'Import',
'Import/Export': 'Importieren/Exportieren',
@@ -339,10 +290,6 @@
'includes': 'Einfügen',
'Incorrect code. {0} more attempt(s) remaining.': 'Incorrect code. {0} more attempt(s) remaining.',
'Indent with tabs': 'Einrücken mit Tabulatoren',
-'Index': 'Index',
-'index': 'index',
-'insert new': 'neu Einfügen',
-'insert new %s': 'neu Einfügen %s',
'inspect attributes': 'Attribute inspizieren',
'Install': 'Installieren',
'Installation of %(plugin)s for %(app)s': 'Installation von %(Plugin)s für %(App)s',
@@ -373,9 +320,6 @@
'Invalid username': 'Invalid username',
'Invitation to join %(site)s': 'Invitation to join %(site)s',
'Key': 'Key',
-'Key bindings': 'Tastenbelegungen',
-'Key bindings for ZenCoding Plugin': 'Tastenbelegungen für das ZenCoding Plugin',
-'Key bindings for ZenConding Plugin': 'Tastenbelegungen für das ZenConding Plugin',
'Key verified': 'Key verified',
'Keyboard shortcuts': 'Tastenkombination',
'kill process': 'Prozess zu töten',
@@ -383,11 +327,9 @@
'Language files (static strings) updated': 'Sprachdatei (statisch Strings) aktualisiert',
'languages': 'Sprachen',
'Languages': 'Sprachen',
-'languages updated': 'Sprachen aktualisiert',
'Last name': 'Nachname',
'Last Revision': 'Letzete Revision',
'Last saved on:': 'Zuletzt gespeichert am:',
-'Layout': 'Layout',
'License for': 'Lizenz für',
'License:': 'Lizenz:',
'Line Nr': 'Zeilen Nr',
@@ -395,15 +337,12 @@
'lists by exception': 'Listen nach Ausnahme',
'lists by ticket': 'nach Ticket aufgelistet',
'Loading...': 'Laden...',
-'loading...': 'lade...',
'Local Apps': 'Lokale Apps',
'locals': 'lokales',
'Locals##debug': 'Lokales##debug',
-'located in the file': 'befindet sich in der Datei',
'Log In': 'Log In',
'Logged in': 'Logged in',
'Logged out': 'Logged out',
-'login': 'anmelden',
'Login': 'Anmelden',
'Login disabled by administrator': 'Login disabled by administrator',
'Login successful': 'Login erfolgreich',
@@ -411,8 +350,6 @@
'Login/Register': 'Login/Registrieren',
'Logout': 'Abmelden',
'lost password': 'Passwort vergessen',
-'Lost Password': 'Passwort vergessen',
-'lost password?': 'Passwort vergessen?',
'Main Menu': 'Hauptmenü',
'Manage': 'Verwalten',
'Manage %(action)s': '%(action)s verwalten',
@@ -420,11 +357,8 @@
'Manage Admin Users/Students': 'Admin-User/Studenten verwalten',
'Manage Cache': 'Cache verwalten',
'Manage Students': 'Studenten verwalten',
-'Match Pair': 'Paare finden',
'Memberships': 'Mitgliedschaften',
-'Menu Model': 'Menü Modell',
'merge': 'verbinden',
-'Merge Lines': 'Zeilen zusammenfügen',
'Models': 'Modelle',
'models': 'Modelle',
'Modified On': 'Geändert am',
@@ -444,8 +378,6 @@
'New simple application': 'Neue einfache Anwendung',
'next': 'Nächste',
'next %s rows': 'nächste %s Zeilen',
-'next 100 rows': 'nächsten 100 Zeilen',
-'Next Edit Point': 'nächster Bearbeitungsschritt',
'NO': 'NEIN',
'no changes': 'keine Änderungen',
'No databases in this application': 'Keine Datenbank in dieser Anwendung',
@@ -453,7 +385,6 @@
'no match': 'keine Übereinstimmung',
'no package selected': 'Kein Paket ausgewählt',
'no permission to uninstall "%s"': 'Keine Berechtigung zum Deinstallieren von "%s"',
-'No ticket_storage.txt found under /private folder': 'Kein ticket_storage.txt unter /private folder gefunden',
'Node:': 'Hinweis:',
'Not Authorized': 'Nicht berechtigt',
'Not supported': 'Nicht unterstützt',
@@ -461,15 +392,12 @@
'Object or table name': 'Object or table name',
'Old password': 'Old password',
"On production, you'll have to configure your webserver to use one process and multiple threads to use this debugger.": 'In der Produktion müssen Sie Ihren Webserver so konfigurieren, dass er einen Prozess und mehrere Threads verwendet, um diesen Debugger zu verwenden.',
-'online designer': 'Online Designer',
'Open new app in new window': 'Neue App in neuem Fenster öffnen',
'OpenShift Deployment Interface': 'OpenShift Deployment Interface',
'OpenShift Output': 'OpenShift Ausgabe',
'or alternatively': 'oder Alternativ',
'Or Get from URL:': 'oder von folgender URL herunterladen:',
'or import from csv file': 'oder importieren von cvs Datei',
-'or provide app url:': 'oder geben Sie eine Anwendungs-URL an:',
-'or provide application url:': 'oder geben Sie eine Anwendungs-URL an:',
'Origin': 'Herkunft',
'Original/Translation': 'Original/übersetzung',
'Overview': 'Übersicht',
@@ -492,7 +420,6 @@
'Permissions': 'Berechtigungen',
'Please': 'Bitte',
'please input your password again': 'please input your password again',
-'please wait!': 'Bitte warten!',
'Please wait, giving pythonanywhere a moment...': 'Bitte warten Sie, und geben Sie pythonanywhere einen Moment Zeit...',
'plugin "%(plugin)s" deleted': 'Plugin "%(plugin) s" wurde gelöscht',
'Plugin "%s" in application': 'Plugin "%s" in Anwendung',
@@ -506,8 +433,6 @@
'Preferences saved correctly': 'Einstellungen korrekt gespeichert',
'Preferences saved on session only': 'Einstellungen nur in der Sitzung gespeichert',
'previous %s rows': 'vorherige %s Zeilen',
-'previous 100 rows': 'vorherige 100 zeilen',
-'Previous Edit Point': 'vorheriger Bearbeitungsschritt',
'Private files': 'Private Dateien',
'private files': 'private Dateien',
'Profile updated': 'Profile updated',
@@ -526,7 +451,6 @@
'Ram Cleared': 'Ram geleert',
'Rapid Search': 'Schnelle Suche',
'Record': 'Record',
-'record': 'Datensatz',
'Record %(id)s created': 'Record %(id)s created',
'Record %(id)s deleted': 'Record %(id)s deleted',
'Record %(id)s read': 'Record %(id)s read',
@@ -534,19 +458,16 @@
'Record Created': 'Record Created',
'Record Deleted': 'Record Deleted',
'record does not exist': 'Datensatz existiert nicht',
-'record id': 'Datensatz id',
-'Record ID': 'Datensatz ID',
'Record id': 'Record id',
+'Record ID': 'Datensatz ID',
'Record Updated': 'Record Updated',
'refresh': 'Aktualisieren',
-'Register': 'Registrieren',
'register': 'Registrierung',
'Registration identifier': 'Registration identifier',
'Registration is pending approval': 'Registration is pending approval',
'Registration key': 'Registrierungsschlüssel',
'Registration needs verification': 'Registration needs verification',
'Registration successful': 'Registration successful',
-'reload': 'Neu laden',
'Reload routes': 'Routen neu laden',
'Remember me (for 30 days)': 'Remember me (for 30 days)',
'Remove compiled': 'Bytecode löschen',
@@ -571,7 +492,6 @@
'Revision:': 'Revision:',
'Role': 'Rolle',
'Roles': 'Rollen',
-'Rows in table': 'Zeilen in Tabelle',
'Rows in Table': 'Zeilen in der Tabelle',
'Rows selected': 'Zeilen ausgewählt',
'rules are not defined': 'Regeln sind nicht definiert',
@@ -580,7 +500,6 @@
"Run tests in this file (to run all files, you may also use the button labelled 'test')": "Tests in dieser Datei ausführen (um alle Dateien auszuführen, kann auch der Button 'test' genutzt werden)",
'Running on %s': 'läuft auf %s',
'Save': 'Speichern',
-'save': 'Speichern',
'Save file:': 'Speichere Datei:',
'Save file: %s': 'Speichere Datei: %s',
'Save model as...': 'Modell speichern als...',
@@ -589,7 +508,6 @@
'Screenshot %s': 'Bildschirmfoto %s',
'Search': 'Suche',
'Select Files to Package': 'Dateien zum Paketieren wählen',
-'selected': 'ausgewählt(e)',
'session': 'Sitzung',
'session expired': 'Sitzung abgelaufen',
'Session saved correctly': 'Sitzung korrekt gespeichert',
@@ -611,42 +529,29 @@
'Start searching': 'Suche beginnen',
'Start wizard': 'Assistent starten',
'state': 'Status',
-'Static': 'Statisch',
'static': 'statische Dateien',
+'Static': 'Statisch',
'Static files': 'statische Dateien',
'Statistics': 'Statistiken',
'Step': 'Schritt',
'step': 'schritt',
'stop': 'Halt',
-'Stylesheet': 'Stylesheet',
-'submit': 'Absenden',
'Submit': 'Einreichen',
+'submit': 'Absenden',
'successful': 'erfolgreich',
-'Sure you want to delete this object?': 'Wollen Sie das Objekt wirklich löschen?',
'switch to : db': 'wechsel zu : db',
'switch to : filesystem': 'wechseln zu : filesystem',
'Tab width (# characters)': 'Tabulatorbreite (# characters)',
-'table': 'Tabelle',
'Table': 'Tabelle',
-'Table name': 'Tabellen Name',
'Temporary': 'Temporär',
'test': 'Test',
-'test_def': 'test_def',
-'test_for': 'test_for',
-'test_if': 'test_if',
-'test_try': 'test_try',
'Testing application': 'Teste die Anwendung',
-'Testing controller': 'Teste Controller',
'The "query" is a condition like "db.table1.field1==\'value\'". Something like "db.table1.field1==db.table2.field2" results in a SQL JOIN.': 'Die "query" ist eine Bedingung wie "db.table1.field1 == \'Wert\'". Etwas wie "db.table1.field1 db.table2.field2 ==" führt zu einem SQL JOIN.',
'The app exists, was created by wizard, continue to overwrite!': 'Die App existiert, wurde von Wizard erstellt, weiter überschreiben!',
'The app exists, was NOT created by wizard, continue to overwrite!': 'Die App existiert, wurde NICHT vom Assistenten erstellt, weiter überschreiben!',
-'the application logic, each URL path is mapped in one exposed function in the controller': 'Die Logik der Anwendung, jeder URL-Pfad wird auf eine Funktion abgebildet die der Controller zur Verfügung stellt',
'The application logic, each URL path is mapped in one exposed function in the controller': 'Die Logik der Anwendung, jeder URL-Pfad wird auf eine Funktion abgebildet die der Controller zur Verfügung stellt',
-'the data representation, define database tables and sets': 'Die Datenrepräsentation definiert Mengen von Tabellen und Datenbanken',
'The data representation, define database tables and sets': 'Die Datenrepräsentation definiert Mengen von Tabellen und Datenbanken',
-'The output of the file is a dictionary that was rendered by the view': 'Die Ausgabe der Datei ist ein "dictionary" und wurde vom "view" gerendert',
'The presentations layer, views are also known as templates': 'Die Präsentationsschicht, Views sind auch bekannt als Vorlagen/Templates',
-'the presentations layer, views are also known as templates': 'Die Präsentationsschicht, Views sind auch bekannt als Vorlagen/Templates',
'Theme': 'Thema',
'There are no controllers': 'Keine Controller vorhanden',
'There are no models': 'Keine Modelle vorhanden',
@@ -659,14 +564,11 @@
'There are no views': 'Keine Views vorhanden',
'These files are not served, they are only available from within your app': 'Diese Dateien werden nicht ausgeliefert, sie sind nur innerhalb Ihrer App verfügbar',
'These files are served without processing, your images go here': 'Diese Dateien werden ohne Verarbeitung ausgeliefert. Beispielsweise Bilder kommen hier hin.',
-'these files are served without processing, your images go here': 'Diese Dateien werden ohne Verarbeitung ausgeliefert. Beispielsweise Bilder kommen hier hin.',
'This code was emailed to you and is required for login.': 'This code was emailed to you and is required for login.',
"This debugger may not work properly if you don't have a threaded webserver or you're using multiple daemon processes.": 'Dieser Debugger funktioniert möglicherweise nicht ordnungsgemäß, wenn Sie keinen Thread-Webserver haben oder mehrere Daemon-Prozesse verwenden.',
'This email already has an account': 'This email already has an account',
-'This is a copy of the scaffolding application': 'Dies ist eine Kopie einer Grundgerüst-Anwendung',
'This is an experimental feature and it needs more testing. If you decide to downgrade you do it at your own risk': 'Dies ist eine experimentelle Funktion und muss noch getestet werden. Wenn Sie sich für ein Downgrade entscheiden, tun Sie dies auf eigene Gefahr',
'This is an experimental feature and it needs more testing. If you decide to upgrade you do it at your own risk': 'Dies ist eine experimentelle Funktion und muss noch getestet werden. Wenn Sie sich für ein Upgrade entscheiden, tun Sie dies auf eigene Gefahr',
-'This is the %(filename)s template': 'Dies ist das Template %(filename)s',
"This page can commit your changes to an openshift app repo and push them to your cloud instance. This assumes that you've already created the application instance using the web2py skeleton and have that repo somewhere on a filesystem that this web2py instance can access. This functionality requires GitPython installed and on the python path of the runtime that web2py is operating in.": 'Auf dieser Seite können Sie Ihre Änderungen in ein OpenShift-App-Repo übernehmen und in Ihre Cloud-Instanz verschieben. Dies setzt voraus, dass Sie die Anwendungsinstanz bereits mit dem web2py-Skelett erstellt haben und dieses Repo auf einem Dateisystem haben, auf das diese web2py-Instanz zugreifen kann. Für diese Funktionalität muss GitPython installiert sein und sich auf dem Python-Pfad der Runtime befinden, in der web2py ausgeführt wird.',
'This page can upload your application to the Google App Engine computing cloud. Mind that you must first create indexes locally and this is done by installing the Google appserver and running the app locally with it once, or there will be errors when selecting records. Attention: deployment may take long time, depending on the network speed. Attention: it will overwrite your app.yaml. DO NOT SUBMIT TWICE.': 'Diese Seite kann Ihre Anwendung in die Cloud der Google App Engine Computing hochladen. Beachten Sie, dass Sie zunächst Indexe lokal erstellen müssen. Dies geschieht, indem Sie den Google Appserver installieren und die App einmalig lokal ausführen. Andernfalls treten Fehler bei der Auswahl von Datensätzen auf. Achtung: Die Bereitstellung kann abhängig von der Netzwerkgeschwindigkeit sehr lange dauern. Achtung: Ihre app.yaml wird überschrieben. SENDEN SIE NICHT ZWEIMAL EIN.',
'this page to see if a breakpoint was hit and debug interaction is required.': 'Auf dieser Seite können Sie sehen, ob ein breakpoint getroffen wurde und eine Debug-Interaktion erforderlich ist.',
@@ -677,7 +579,6 @@
'Ticket Missing': 'Ticket fehlt',
'Time in Cache (h:m:s)': 'Zeit im Cache (h:m:s)',
'Timestamp': 'Zeitstempel',
-'TM': 'TM',
'to previous version.': 'zu einer früheren Version.',
'To create a plugin, name a file/folder plugin_[name]': 'Um ein Plugin zu erstellen benennen Sie eine(n) Datei/Ordner plugin_[Name]',
'To emulate a breakpoint programatically, write:': 'Um einen breapoint programmatisch zu emulieren, schreiben Sie:',
@@ -686,9 +587,7 @@
'Toggle comment': ' Kommentar ein-/ausblenden',
'Toggle Fullscreen': 'Vollbild ein-/ausschalten',
'Traceback': 'Traceback',
-'translation strings for the application': 'übersetzungs-Strings für die Anwendung',
'Translation strings for the application': 'übersetzungs-Strings für die Anwendung',
-'try': 'versuche',
'try something like': 'Versuchen Sie so etwas wie',
'Try the mobile interface': 'Testen Sie das Interface für Handys',
'try view': 'Versuche view',
@@ -700,8 +599,6 @@
'unable to delete file "%(filename)s"': 'Löschen von Dateien "%(filename)s" nicht möglich',
'unable to delete file plugin "%(plugin)s"': 'Datei-Plugin "%(plugin)s" kann nicht gelöscht werden',
'Unable to determine the line number!': 'Die Zeilennummer kann nicht ermittelt werden!',
-'Unable to download': 'Herunterladen nicht möglich',
-'Unable to download app': 'Herunterladen der Anwendung nicht möglich',
'Unable to download app because:': 'App kann nicht heruntergeladen werden, weil:',
'unable to download layout': 'Layout kann nicht heruntergeladen werden',
'unable to download plugin: %s': 'Folgendes Plugin konnte nicht heruntergeladen werden: %s',
@@ -719,19 +616,13 @@
'Update:': 'Aktualisiere:',
'Upgrade': 'Upgrade',
'upgrade now to %s': 'Upgrade jetzt zu %s',
-'upgrade web2py now': 'web2py jetzt upgraden',
'upload': 'upload',
'Upload': 'Upload',
-'Upload & install packed application': 'Verpackte Anwendung hochladen und installieren',
'Upload a package:': 'Ein Packet hochladen:',
'Upload and install packed application': 'Verpackte Anwendung hochladen und installieren',
-'upload application:': 'Lade Anwendung hoch:',
-'Upload existing application': 'Lade existierende Anwendung hoch',
'upload file:': 'Lade Datei hoch:',
'upload plugin file:': 'Plugin-Datei hochladen:',
'Use (...)&(...) for AND, (...)|(...) for OR, and ~(...) for NOT to build more complex queries.': 'Benutze (...)&(...) für AND, (...)|(...) für OR, und ~(...) für NOT, um komplexe Abfragen zu erstellen.',
-'Use an url:': 'Verwende URL:',
-'user': 'Nutzer',
'User': 'User',
'User %(id)s is impersonating %(other_id)s': 'User %(id)s is impersonating %(other_id)s',
'User %(id)s Logged-in': 'User %(id)s Logged-in',
@@ -753,11 +644,7 @@
'variables': 'Variablen',
'Verify Password': 'Verify Password',
'Version': 'Version',
-'Version %s.%s.%s (%s) %s': 'Version %s.%s.%s (%s) %s',
'Versioning': 'Versionsverwaltung',
-'versioning': 'Versionsverwaltung',
-'View': 'Ansicht',
-'view': 'Ansicht',
'Views': 'Ansichten',
'views': 'Ansichten',
'Warning!': 'Warnung!',
@@ -770,28 +657,19 @@
'web2py downgrade': 'web2py Downgrade',
'web2py is up to date': 'web2py ist aktuell',
'web2py online debugger': 'web2py Online-Debugger',
-'web2py Recent Tweets': 'Neuste Tweets von web2py',
'web2py upgrade': 'web2py-Upgrade',
'web2py upgraded; please restart it': 'web2py aktualisiert bitte neu starten',
'Welcome %(username)s! Click on the link %(link)s to verify your email': 'Welcome %(username)s! Click on the link %(link)s to verify your email',
-'Welcome %s': 'Willkommen %s',
-'Welcome to web2py': 'Willkommen zu web2py',
-'Which called the function': 'welche die Funktion aufrief',
'Working...': 'Arbeitet...',
-'Wrap with Abbreviation': 'mit Kürzel einhüllen',
'WSGI reference name': 'WSGI Referenzname',
-'xml': 'xml',
'YES': 'JA',
'Yes': 'JA',
-'You are successfully running web2py': 'web2by wird erfolgreich ausgeführt',
'You can also set and remove breakpoint in the edit window, using the Toggle Breakpoint button': 'Sie können Breakpoint auch im Bearbeitungsfenster festlegen und entfernen, indem Sie die Schaltfläche Breakpoint umschalten verwenden',
'You can inspect variables using the console below': 'Sie können Variablen mit der folgenden Konsole überprüfen',
-'You can modify this application and adapt it to your needs': 'Sie können diese Anwendung verändern und Ihren Bedürfnissen anpassen',
'You have been invited to join %(site)s, click %(link)s to complete the process': 'You have been invited to join %(site)s, click %(link)s to complete the process',
'You have one more login attempt before you are locked out': 'Sie haben einen weiteren Anmeldeversuch, bevor Sie gesperrt werden',
'You need to set up and reach a': 'You need to set up and reach a',
'You only need these if you have already registered': 'Sie benötigen diese nur, wenn Sie sich bereits registriert haben.',
-'You visited the url': 'Sie besuchten die URL',
'Your application will be blocked until you click an action button (next, step, continue, etc.)': 'Ihre Bewerbung wird blockiert, bis Sie auf eine Aktionsschaltfläche klicken (next, step, continue usw.).',
'Your password is: %(password)s': 'Your password is: %(password)s',
'Your temporary login code is {0}': 'Your temporary login code is {0}',
diff --git a/applications/admin/languages/en.py b/applications/admin/languages/en.py
old mode 100755
new mode 100644
diff --git a/applications/admin/languages/es.py b/applications/admin/languages/es.py
old mode 100755
new mode 100644
index eac5f33e..59b92c63
--- a/applications/admin/languages/es.py
+++ b/applications/admin/languages/es.py
@@ -32,14 +32,11 @@
'@markmin\x01Searching: **%s** %%{file}': 'Buscando: **%s** archivos',
'@markmin\x01You need to set up and reach a [[breakpoint %s]] to use the debugger!': 'You need to set up and reach a [[breakpoint %s]] to use the debugger!',
'A new password was emailed to you': 'A new password was emailed to you',
-'A new version of web2py is available': 'Hay una nueva versión de web2py disponible',
-'A new version of web2py is available: %s': 'Hay una nueva versión de web2py disponible: %s',
'Abort': 'Abort',
'About': 'Acerca de',
'About application': 'Acerca de la aplicación',
'Accept Terms': 'Accept Terms',
'Add breakpoint': 'Add breakpoint',
-'additional code for your application': 'código adicional para su aplicación',
'Additional code for your application': 'Código adicional para su aplicación',
'Admin design page': 'Admin design page',
'admin disabled because no admin password': 'admin deshabilitado por falta de contraseña',
@@ -47,20 +44,16 @@
'admin disabled because too many invalid login attempts': 'admin disabled because too many invalid login attempts',
'admin disabled because unable to access password file': 'admin deshabilitado, imposible acceder al archivo con la contraseña',
'Admin is disabled because insecure channel': 'Admin deshabilitado, el canal no es seguro',
-'Admin is disabled because unsecure channel': 'Admin deshabilitado, el canal no es seguro',
'Admin language': 'Lenguaje de administración',
'Admin versioning page': 'Admin versioning page',
'administrative interface': 'interfaz administrativa',
'Administrator Password:': 'Contraseña del Administrador:',
-'An error occured, please %s the page': 'Ha ocurrido un error, por favor %s la página',
-'and rename it (required):': 'y renombrela (requerido):',
'and rename it:': ' y renombrelo:',
'App does not exist or you are not authorized': 'App does not exist or you are not authorized',
'appadmin': 'appadmin',
'appadmin is disabled because insecure channel': 'admin deshabilitado, el canal no es seguro',
'Application': 'Application',
'application "%s" uninstalled': 'aplicación "%s" desinstalada',
-'application %(appname)s installed with md5sum: %(digest)s': 'application %(appname)s installed with md5sum: %(digest)s',
'Application cannot be generated in demo mode': 'Application cannot be generated in demo mode',
'application compiled': 'aplicación compilada',
'Application exists already': 'Application exists already',
@@ -73,9 +66,7 @@
'Are you sure you want to delete file "%s"?': '¿Está seguro que desea eliminar el archivo "%s"?',
'Are you sure you want to delete plugin "%s"?': '¿Está seguro que quiere eliminar el plugin "%s"?',
'Are you sure you want to delete this object?': '¿Está seguro que quiere eliminar este objeto?',
-'Are you sure you want to uninstall application "%s"': '¿Está seguro que desea desinstalar la aplicación "%s"',
'Are you sure you want to uninstall application "%s"?': '¿Está seguro que desea desinstalar la aplicación "%s"?',
-'Are you sure you want to upgrade web2py now?': '¿Está seguro que desea actualizar web2py ahora?',
'Are you sure?': '¿Está seguro?',
'arguments': 'argumentos',
'at char %s': 'en el carácter %s',
@@ -85,9 +76,7 @@
'ATTENTION: TESTING IS NOT THREAD SAFE SO DO NOT PERFORM MULTIPLE TESTS CONCURRENTLY.': 'ATENCIÓN: NO EJECUTE VARIAS PRUEBAS SIMULTANEAMENTE, NO SON THREAD SAFE.',
'ATTENTION: you cannot edit the running application!': 'ATENCIÓN: ¡no puede modificar la aplicación que se ejecuta!',
'Authentication code': 'Authentication code',
-'Autocomplete': 'Autocompletar',
'Autocomplete Python Code': 'Autocompletar código Python',
-'Available databases and tables': 'Bases de datos y tablas disponibles',
'Available Databases and Tables': 'Bases de Datos y Tablas Disponibles',
'back': 'atrás',
'Back to the plugins list': 'Regresar a la lista de plugins',
@@ -97,7 +86,6 @@
'breakpoint': 'punto de ruptura',
'Breakpoints': 'Breakpoints',
'breakpoints': 'puntos de ruptura',
-'browse': 'navegar',
'Bulk Register': 'Bulk Register',
'Bulk Student Registration': 'Bulk Student Registration',
'Cache': 'Caché',
@@ -108,14 +96,12 @@
'can be a git repo': 'puede ser un repositorio git',
'Cancel': 'Cancelar',
'Cannot be empty': 'No puede estar vacío',
-'Cannot compile: there are errors in your app. Debug it, correct errors and try again.': 'No se puede compilar: hay errores en su aplicación. Depure, corrija errores y vuelva a intentarlo.',
'Cannot compile: there are errors in your app:': 'No se puede compilar: hay errores en su aplicación:',
'cannot create file': 'no es posible crear archivo',
'cannot upload file "%(filename)s"': 'no es posible subir archivo "%(filename)s"',
'Change Admin Password': 'Change Admin Password',
'Change admin password': 'cambie contraseña admin',
'change editor settings': 'cambiar la configuración del editor',
-'Change Password': 'Cambie Contraseña',
'Change password': 'Change password',
'Changelog': 'Changelog',
'check all': 'marcar todos',
@@ -127,13 +113,9 @@
'Clear CACHE?': '¿Limpiar CACHÉ?',
'Clear DISK': 'Limpiar DISCO',
'Clear RAM': 'Limpiar RAM',
-'click here for online examples': 'haga click aquí para ver ejemplos en línea',
-'click here for the administrative interface': 'haga click aquí para usar la interfaz administrativa',
'Click on the link %(link)s to reset your password': 'Click on the link %(link)s to reset your password',
'Click row to expand traceback': 'Click en la fila para expandir el rastreo',
'Click row to view a ticket': 'Click row to view a ticket',
-'click to check for upgrades': 'haga clic para buscar actualizaciones',
-'click to open': 'click para abrir',
'Client IP': 'IP del Cliente',
'code': 'código',
'Code listing': 'Listado de código',
@@ -141,7 +123,6 @@
'Command': 'Command',
'Comment:': 'Comment:',
'Commit': 'Commit',
-'commit (mercurial)': 'confirmar (mercurial)',
'Commit form': 'Commit form',
'Committed files': 'Committed files',
'Compile': 'Compilar',
@@ -155,9 +136,6 @@
'Count': 'Contar',
'Create': 'Crear',
'create file with filename:': 'cree archivo con nombre:',
-'Create new application using the Wizard': 'Crear nueva aplicación utilizando el asistente',
-'create new application:': 'nombre de la nueva aplicación:',
-'Create new simple application': 'Cree una nueva aplicación',
'Create/Upload': 'Crear/Subir',
'created by': 'creado por',
'Created by:': 'Created by:',
@@ -169,12 +147,9 @@
'Current session': 'Sesión en curso',
'currently running': 'actualmente en ejecución',
'currently saved or': 'actualmente guardado o',
-'customize me!': 'Adáptame!',
'data uploaded': 'datos subidos',
'Database': 'Database',
-'database': 'base de datos',
'Database %s select': 'Database %s select',
-'database %s select': 'selección en base de datos %s',
'Database administration': 'Database administration',
'database administration': 'administración base de datos',
'Database Administration (appadmin)': 'Administración de Base de Datos (appadmin)',
@@ -200,8 +175,6 @@
'Description': 'Descripción',
'Description:': 'Description:',
'design': 'modificar',
-'DESIGN': 'DISEÑO',
-'Design for': 'Diseño para',
'Detailed traceback description': 'Descripción detallada del rastreo',
'details': 'detalles',
'direction: ltr': 'dirección: ltr',
@@ -218,36 +191,24 @@
'DO NOT use the "Pack compiled" feature.': 'DO NOT use the "Pack compiled" feature.',
'docs': 'documentos',
'Docs': 'Documentos',
-'Done!': 'Listo!',
'done!': 'listo!',
'Downgrade': 'Downgrade',
-'Download': 'Descargar',
'Download .w2p': 'Download .w2p',
'Download as .exe': 'Download as .exe',
-'download files via http:': 'descargar archivos via http:',
'download layouts': 'descargar layouts',
'Download layouts from repository': 'Download layouts from repository',
'download plugins': 'descargar plugins',
'Download plugins from repository': 'Download plugins from repository',
'E-mail': 'Correo electrónico',
-'EDIT': 'EDITAR',
'Edit': 'editar',
'edit all': 'edit all',
'Edit application': 'Editar aplicación',
-'edit controller': 'editar controlador',
'edit controller:': 'editar controlador:',
'Edit current record': 'Edite el registro actual',
-'Edit Profile': 'Editar Perfil',
'edit views:': 'editar vistas:',
'Editing %s': 'Editando %s',
-'Editing file': 'Editando archivo',
-'Editing file "%s"': 'Editando archivo "%s"',
'Editing Language file': 'Editando archivo de lenguaje',
-'Editing myclientapi': 'Editando myclientapi',
-'Editing myemail': 'Editando myemail',
'Editing Plural Forms File': 'Editing Plural Forms File',
-'Editing rbare': 'Editando rbare',
-'Editing ul': 'Editando ul',
'Editor': 'Editor',
'Email Address': 'Email Address',
'Email sent': 'Email sent',
@@ -256,18 +217,15 @@
'Enable': 'Habilitar',
'Enable Close-Tag': 'Enable Close-Tag',
'Enable Code Folding': 'Enable Code Folding',
-'Enterprise Web Framework': 'Framework Web Empresarial',
'Error': 'Error',
'Error logs for "%(app)s"': 'Bitácora de errores en "%(app)s"',
'Error snapshot': 'Error snapshot',
'Error ticket': 'Error ticket',
'Errors': 'errores',
-'Errors in form, please check it out.': 'Errores en el formulario, verifique por favor.',
'Exception %(extype)s: %(exvalue)s': 'Exception %(extype)s: %(exvalue)s',
'Exception %s': 'Exception %s',
'Exception instance attributes': 'Atributos de la instancia de Excepción',
'Exit Fullscreen': 'Salir de pantalla completa',
-'Expand Abbreviation': 'Expandir abreviación',
'Expand Abbreviation (html files only)': 'Expandir Abreviación (sólo archivos html)',
'export as csv file': 'exportar como archivo CSV',
'Exports:': 'Exports:',
@@ -275,13 +233,11 @@
'exposes:': 'expone:',
'extends': 'extiende',
'failed to compile file because:': 'falló la compilación de archivos debido a:',
-'failed to reload module': 'recarga del módulo ha fallado',
'failed to reload module because:': 'no es posible recargar el módulo por:',
'File': 'Archivo',
'file "%(filename)s" created': 'archivo "%(filename)s" creado',
'file "%(filename)s" deleted': 'archivo "%(filename)s" eliminado',
'file "%(filename)s" uploaded': 'archivo "%(filename)s" subido',
-'file "%(filename)s" was not deleted': 'archivo "%(filename)s" no fue eliminado',
'file "%s" of %s restored': 'archivo "%s" de %s restaurado',
'file changed on disk': 'archivo modificado en el disco',
'file does not exist': 'archivo no existe',
@@ -310,13 +266,12 @@
'Google App Engine Deployment Interface': 'Google App Engine Deployment Interface',
'Google Application Id': 'Google Application Id',
'Goto': 'Goto',
-'graph model': 'graficación del modelo',
'Graph Model': 'Graph Model',
+'graph model': 'graficación del modelo',
'Group %(group_id)s created': 'Group %(group_id)s created',
'Group %(group_id)s deleted': 'Group %(group_id)s deleted',
'Group ID': 'ID de Grupo',
'Group uniquely assigned to user %(id)s': 'Group uniquely assigned to user %(id)s',
-'Hello World': 'Hola Mundo',
'Help': 'ayuda',
'here': 'aquí',
'Hide/Show Translated strings': 'Hide/Show Translated strings',
@@ -324,25 +279,20 @@
'Hits': 'Hits',
'Home': 'Home',
'honored only if the expression evaluates to true': 'honored only if the expression evaluates to true',
-'htmledit': 'htmledit',
'If start the downgrade, be patient, it may take a while to rollback': 'If start the downgrade, be patient, it may take a while to rollback',
'If start the upgrade, be patient, it may take a while to download': 'If start the upgrade, be patient, it may take a while to download',
'If the report above contains a ticket number it indicates a failure in executing the controller, before any attempt to execute the doctests. This is usually due to an indentation error or an error outside function code.\n\t\tA green title indicates that all tests (if defined) passed. In this case test results are not shown.': 'If the report above contains a ticket number it indicates a failure in executing the controller, before any attempt to execute the doctests. This is usually due to an indentation error or an error outside function code.\n\t\tA green title indicates that all tests (if defined) passed. In this case test results are not shown.',
'If the report above contains a ticket number it indicates a failure in executing the controller, before any attempt to execute the doctests. This is usually due to an indentation error or an error outside function code.\nA green title indicates that all tests (if defined) passed. In this case test results are not shown.': 'Si el reporte anterior contiene un número de tiquete este indica un falla en la ejecución del controlador, antes de cualquier intento de ejecutat doctests. Esto generalmente se debe a un error en la indentación o un error por fuera del código de la función.\r\nUn titulo verde indica que todas las pruebas pasaron (si existen). En dicho caso los resultados no se muestran.',
'if your application uses a database other than sqlite you will then have to configure its DAL in pythonanywhere.': 'if your application uses a database other than sqlite you will then have to configure its DAL in pythonanywhere.',
-'Image': 'Imagen',
'import': 'import',
'Import/Export': 'Importar/Exportar',
'In development, use the default Rocket webserver that is currently supported by this debugger.': 'In development, use the default Rocket webserver that is currently supported by this debugger.',
'includes': 'incluye',
'Incorrect code. {0} more attempt(s) remaining.': 'Incorrect code. {0} more attempt(s) remaining.',
'Indent with tabs': 'Indent with tabs',
-'insert new': 'inserte nuevo',
-'insert new %s': 'inserte nuevo %s',
'inspect attributes': 'inspeccionar atributos',
'Install': 'Instalar',
'Installation of %(plugin)s for %(app)s': 'Instalación de %(plugin)s para %(app)s',
-'Installation of %(plugin)s for %(app)s app': 'Instalación de %(plugin)s para %(app)s app',
'Installed applications': 'Aplicaciones instaladas',
'Insufficient privileges': 'Insufficient privileges',
'Interaction at %s line %s': 'Interacción en %s línea %s',
@@ -370,8 +320,6 @@
'Invalid username': 'Invalid username',
'Invitation to join %(site)s': 'Invitation to join %(site)s',
'Key': 'Key',
-'Key bindings': 'Key bindings',
-'Key bindings for ZenCoding Plugin': 'Key bindings para el Plugin ZenCoding',
'Key verified': 'Key verified',
'Keyboard shortcuts': 'Atajos de teclado',
'kill process': 'kill process',
@@ -379,7 +327,6 @@
'Language files (static strings) updated': 'Archivos de lenguaje (cadenas estáticas) actualizados',
'languages': 'lenguajes',
'Languages': 'Lenguajes',
-'languages updated': 'lenguajes actualizados',
'Last name': 'Apellido',
'Last Revision': 'Last Revision',
'Last saved on:': 'Guardado en:',
@@ -390,14 +337,12 @@
'lists by exception': 'lists by exception',
'lists by ticket': 'listas por ticket',
'Loading...': 'Loading...',
-'loading...': 'cargando...',
'Local Apps': 'Local Apps',
'locals': 'locals',
'Locals##debug': 'Locals',
'Log In': 'Log In',
'Logged in': 'Logged in',
'Logged out': 'Logged out',
-'login': 'inicio de sesión',
'Login': 'Inicio de sesión',
'Login disabled by administrator': 'Login disabled by administrator',
'Login successful': 'Login successful',
@@ -405,9 +350,7 @@
'Login/Register': 'Login/Register',
'Logout': 'fin de sesión',
'lost password': 'lost password',
-'Lost Password': 'Contraseña perdida',
'Main Menu': 'Main Menu',
-'manage': 'gestionar',
'Manage': 'Gestionar',
'Manage %(action)s': 'Manage %(action)s',
'Manage Access Control': 'Manage Access Control',
@@ -416,8 +359,8 @@
'Manage Students': 'Manage Students',
'Memberships': 'Memberships',
'merge': 'combinar',
-'models': 'modelos',
'Models': 'Modelos',
+'models': 'modelos',
'Modified On': 'Modified On',
'Modules': 'Módulos',
'modules': 'módulos',
@@ -430,16 +373,11 @@
'New password': 'New password',
'new plugin installed': 'nuevo plugin instalado',
'New plugin installed: %s': 'Nuevo plugin instalado: %s',
-'New plugin installed: web2py.plugin.attachment.w2p': 'Nuevo plugin instalado: web2py.plugin.attachment.w2p',
-'New plugin installed: web2py.plugin.dialog.w2p': 'Nuevo plugin instalado: web2py.plugin.dialog.w2p',
-'New plugin installed: web2py.plugin.math2py.w2p': 'Nuevo plugin instalado: web2py.plugin.math2py.w2p',
-'New plugin installed: web2py.plugin.timezone.w2p': 'Nuevo plugin instalado: web2py.plugin.timezone.w2p',
'New Record': 'Registro nuevo',
'new record inserted': 'nuevo registro insertado',
'New simple application': 'Nueva aplicación',
'next': 'siguiente',
'next %s rows': 'next %s rows',
-'next 100 rows': '100 filas siguientes',
'NO': 'NO',
'no changes': 'no changes',
'No databases in this application': 'No hay bases de datos en esta aplicación',
@@ -447,7 +385,6 @@
'no match': 'no encontrado',
'no package selected': 'ningún paquete seleccionado',
'no permission to uninstall "%s"': 'no permission to uninstall "%s"',
-'No ticket_storage.txt found under /private folder': 'No se encontró ticket_storage.txt en la carpeta /private',
'Node:': 'Node:',
'Not Authorized': 'Not Authorized',
'Not supported': 'Not supported',
@@ -455,15 +392,12 @@
'Object or table name': 'Object or table name',
'Old password': 'Old password',
"On production, you'll have to configure your webserver to use one process and multiple threads to use this debugger.": "On production, you'll have to configure your webserver to use one process and multiple threads to use this debugger.",
-'online designer': 'diseñador en línea',
'Open new app in new window': 'Open new app in new window',
'OpenShift Deployment Interface': 'OpenShift Deployment Interface',
'OpenShift Output': 'OpenShift Output',
'or alternatively': 'o alternativamente',
'Or Get from URL:': 'O obtener desde una URL:',
'or import from csv file': 'o importar desde archivo CSV',
-'or provide app url:': 'o provea URL de la aplicación:',
-'or provide application url:': 'o provea URL de la aplicación:',
'Origin': 'Origen',
'Original/Translation': 'Original/Traducción',
'Overview': 'Revisión general',
@@ -472,7 +406,6 @@
'Pack compiled': 'empaquete compiladas',
'Pack custom': 'empaquetar personalizado',
'pack plugin': 'empaquetar plugin',
-'PAM authenticated user, cannot change password here': 'usuario autenticado por PAM, no puede cambiar la contraseña aquí',
'Password': 'Contraseña',
'password changed': 'contraseña cambiada',
'Password changed': 'Password changed',
@@ -488,7 +421,6 @@
'Please': 'Por favor',
'please input your password again': 'please input your password again',
'Please wait, giving pythonanywhere a moment...': 'Please wait, giving pythonanywhere a moment...',
-'Plugin': 'Plugin',
'plugin "%(plugin)s" deleted': 'plugin "%(plugin)s" eliminado',
'Plugin "%s" in application': 'Plugin "%s" en aplicación',
'plugin not specified': 'plugin not specified',
@@ -501,7 +433,6 @@
'Preferences saved correctly': 'Preferences saved correctly',
'Preferences saved on session only': 'Preferences saved on session only',
'previous %s rows': 'previous %s rows',
-'previous 100 rows': '100 filas anteriores',
'Private files': 'Archivos privados',
'private files': 'archivos privados',
'Profile updated': 'Profile updated',
@@ -520,7 +451,6 @@
'Ram Cleared': 'Ram Cleared',
'Rapid Search': 'Búsqueda rápida',
'Record': 'Record',
-'record': 'registro',
'Record %(id)s created': 'Record %(id)s created',
'Record %(id)s deleted': 'Record %(id)s deleted',
'Record %(id)s read': 'Record %(id)s read',
@@ -528,19 +458,16 @@
'Record Created': 'Record Created',
'Record Deleted': 'Record Deleted',
'record does not exist': 'el registro no existe',
-'record id': 'id de registro',
-'Record ID': 'ID de Registro',
'Record id': 'Record id',
+'Record ID': 'ID de Registro',
'Record Updated': 'Record Updated',
'refresh': 'recargar',
'register': 'register',
-'Register': 'Regístrese',
'Registration identifier': 'Registration identifier',
'Registration is pending approval': 'Registration is pending approval',
'Registration key': 'Contraseña de Registro',
'Registration needs verification': 'Registration needs verification',
'Registration successful': 'Registration successful',
-'reload': 'recargar',
'Reload routes': 'Recargar rutas',
'Remember me (for 30 days)': 'Remember me (for 30 days)',
'Remove compiled': 'eliminar compilados',
@@ -548,7 +475,6 @@
'Replace': 'Reemplazar',
'Replace All': 'Reemplazar todos',
'Repository (%s)': 'Repositorio (%s)',
-'Repository: %s': 'Repositorio: %s',
'request': 'petición',
'Request reset password': 'Request reset password',
'requires distutils, but not installed': 'requires distutils, but not installed',
@@ -566,7 +492,6 @@
'Revision:': 'Revision:',
'Role': 'Rol',
'Roles': 'Roles',
-'Rows in table': 'Filas en la tabla',
'Rows in Table': 'Rows in Table',
'Rows selected': 'Filas seleccionadas',
'rules are not defined': 'reglas no están definidas',
@@ -575,17 +500,14 @@
"Run tests in this file (to run all files, you may also use the button labelled 'test')": "Ejecute tests en este archivo (para ejecutarlo en todos los archivos, podrías usar el botón etiquetado como 'test')",
'Running on %s': 'Ejecutando en %s',
'Save': 'Guardar',
-'save': 'guardar',
'Save file:': 'Guardar archivo:',
'Save file: %s': 'Guardar archivo: %s',
'Save model as...': 'Save model as...',
'Save via Ajax': 'Guardar vía Ajax',
'Saved file hash:': 'Hash del archivo guardado:',
'Screenshot %s': 'Screenshot %s',
-'Screenshots': 'Screenshots',
'Search': 'Search',
'Select Files to Package': 'Select Files to Package',
-'selected': 'seleccionado(s)',
'session': 'sesión',
'session expired': 'sesión expirada',
'Session saved correctly': 'Session saved correctly',
@@ -607,24 +529,20 @@
'Start searching': 'Iniciar búsqueda',
'Start wizard': 'Iniciar asistente',
'state': 'estado',
-'Static': 'Estáticos',
'static': 'estáticos',
+'Static': 'Estáticos',
'Static files': 'Archivos estáticos',
'Statistics': 'Estadísticas',
'Step': 'Step',
'step': 'paso',
'stop': 'parar',
-'submit': 'enviar',
'Submit': 'Enviar',
-'Success!': '¡Éxito!',
+'submit': 'enviar',
'successful': 'exitoso',
-'Sure you want to delete this object?': '¿Está seguro que desea eliminar este objeto?',
'switch to : db': 'cambiar a : db',
'switch to : filesystem': 'switch to : filesystem',
'Tab width (# characters)': 'Tab width (# characters)',
-'table': 'tabla',
'Table': 'Table',
-'Table name': 'Nombre de la tabla',
'Temporary': 'Temporary',
'test': 'probar',
'Testing application': 'Probando aplicación',
@@ -632,11 +550,8 @@
'The app exists, was created by wizard, continue to overwrite!': 'The app exists, was created by wizard, continue to overwrite!',
'The app exists, was NOT created by wizard, continue to overwrite!': 'The app exists, was NOT created by wizard, continue to overwrite!',
'The application logic, each URL path is mapped in one exposed function in the controller': 'La lógica de la aplicación, cada ruta URL se mapea en una función expuesta en el controlador',
-'the application logic, each URL path is mapped in one exposed function in the controller': 'la lógica de la aplicación, cada ruta URL se mapea en una función expuesta en el controlador',
-'the data representation, define database tables and sets': 'la representación de datos, define tablas y conjuntos de base de datos',
'The data representation, define database tables and sets': 'La representación de datos, define tablas y conjuntos de base de datos',
'The presentations layer, views are also known as templates': 'La capa de presentación, las vistas también son llamadas plantillas',
-'the presentations layer, views are also known as templates': 'la capa de presentación, las vistas también son llamadas plantillas',
'Theme': 'Theme',
'There are no controllers': 'No hay controladores',
'There are no models': 'No hay modelos',
@@ -649,13 +564,11 @@
'There are no views': 'No hay vistas',
'These files are not served, they are only available from within your app': 'Estos archivos no se proveen, ellos sólo están disponibles para su aplicación',
'These files are served without processing, your images go here': 'Estos archivos se proveen sin procesar, sus imágenes van aquí',
-'these files are served without processing, your images go here': 'estos archivos se proveen sin procesar, sus imágenes van aquí',
'This code was emailed to you and is required for login.': 'This code was emailed to you and is required for login.',
"This debugger may not work properly if you don't have a threaded webserver or you're using multiple daemon processes.": "This debugger may not work properly if you don't have a threaded webserver or you're using multiple daemon processes.",
'This email already has an account': 'This email already has an account',
'This is an experimental feature and it needs more testing. If you decide to downgrade you do it at your own risk': 'This is an experimental feature and it needs more testing. If you decide to downgrade you do it at your own risk',
'This is an experimental feature and it needs more testing. If you decide to upgrade you do it at your own risk': 'This is an experimental feature and it needs more testing. If you decide to upgrade you do it at your own risk',
-'This is the %(filename)s template': 'Está es la plantilla %(filename)s',
"This page can commit your changes to an openshift app repo and push them to your cloud instance. This assumes that you've already created the application instance using the web2py skeleton and have that repo somewhere on a filesystem that this web2py instance can access. This functionality requires GitPython installed and on the python path of the runtime that web2py is operating in.": "This page can commit your changes to an openshift app repo and push them to your cloud instance. This assumes that you've already created the application instance using the web2py skeleton and have that repo somewhere on a filesystem that this web2py instance can access. This functionality requires GitPython installed and on the python path of the runtime that web2py is operating in.",
'This page can upload your application to the Google App Engine computing cloud. Mind that you must first create indexes locally and this is done by installing the Google appserver and running the app locally with it once, or there will be errors when selecting records. Attention: deployment may take long time, depending on the network speed. Attention: it will overwrite your app.yaml. DO NOT SUBMIT TWICE.': 'This page can upload your application to the Google App Engine computing cloud. Mind that you must first create indexes locally and this is done by installing the Google appserver and running the app locally with it once, or there will be errors when selecting records. Attention: deployment may take long time, depending on the network speed. Attention: it will overwrite your app.yaml. DO NOT SUBMIT TWICE.',
'this page to see if a breakpoint was hit and debug interaction is required.': 'esta página para ver si un punto de ruptura fue configurado y la depuración es requerida.',
@@ -666,7 +579,6 @@
'Ticket Missing': 'Ticket Missing',
'Time in Cache (h:m:s)': 'Time in Cache (h:m:s)',
'Timestamp': 'Timestamp',
-'TM': 'MR',
'to previous version.': 'a la versión previa.',
'To create a plugin, name a file/folder plugin_[name]': 'Para crear un plugin, nombre un archivo/carpeta plugin_[nombre]',
'To emulate a breakpoint programatically, write:': 'Para emular un punto de ruptura programáticamente, escriba',
@@ -675,9 +587,7 @@
'Toggle comment': 'Alternar comentario',
'Toggle Fullscreen': 'Alternar pantalla completa',
'Traceback': 'Rastreo',
-'translation strings for the application': 'cadenas de caracteres de traducción para la aplicación',
'Translation strings for the application': 'Cadenas de caracteres de traducción para la aplicación',
-'try': 'intente',
'try something like': 'intente algo como',
'Try the mobile interface': 'Pruebe la interfaz móvil',
'try view': 'Pruebe la vista',
@@ -689,10 +599,7 @@
'unable to delete file "%(filename)s"': 'no es posible eliminar el archivo "%(filename)s"',
'unable to delete file plugin "%(plugin)s"': 'no es posible eliminar plugin "%(plugin)s"',
'Unable to determine the line number!': 'Unable to determine the line number!',
-'Unable to download': 'No es posible la descarga',
-'Unable to download app': 'No es posible descargar la aplicación',
'Unable to download app because:': 'No es posible descargar la aplicación porque:',
-'Unable to download because': 'No es posible descargar porque',
'unable to download layout': 'unable to download layout',
'unable to download plugin: %s': 'unable to download plugin: %s',
'Unable to download the list of plugins': 'Unable to download the list of plugins',
@@ -709,14 +616,10 @@
'Update:': 'Actualice:',
'Upgrade': 'Upgrade',
'upgrade now to %s': 'upgrade now to %s',
-'upgrade web2py now': 'actualize web2py ahora',
'upload': 'upload',
'Upload': 'Subir',
-'Upload & install packed application': 'Suba e instale aplicación empaquetada',
'Upload a package:': 'Subir un paquete:',
'Upload and install packed application': 'Suba e instale una aplicación empaquetada',
-'upload application:': 'subir aplicación:',
-'Upload existing application': 'Suba esta aplicación',
'upload file:': 'suba un archivo:',
'upload plugin file:': 'suba un archivo de plugin:',
'Use (...)&(...) for AND, (...)|(...) for OR, and ~(...) for NOT to build more complex queries.': 'Use (...)&(...) para AND, (...)|(...) para OR, y ~(...) para NOT, para crear consultas más complejas.',
@@ -742,8 +645,6 @@
'Verify Password': 'Verify Password',
'Version': 'Versión',
'Versioning': 'Versiones',
-'versioning': 'versiones',
-'view': 'vista',
'Views': 'Vistas',
'views': 'vistas',
'Warning!': 'Warning!',
@@ -756,16 +657,13 @@
'web2py downgrade': 'web2py downgrade',
'web2py is up to date': 'web2py está actualizado',
'web2py online debugger': 'web2py debugger en línea',
-'web2py Recent Tweets': 'Tweets Recientes de web2py',
'web2py upgrade': 'web2py upgrade',
'web2py upgraded; please restart it': 'web2py actualizado; favor reiniciar',
'Welcome %(username)s! Click on the link %(link)s to verify your email': 'Welcome %(username)s! Click on the link %(link)s to verify your email',
-'Welcome to web2py': 'Bienvenido a web2py',
'Working...': 'Working...',
'WSGI reference name': 'WSGI reference name',
'YES': 'SÍ',
'Yes': 'Sí',
-'You are going to install': 'Vas a instalar',
'You can also set and remove breakpoint in the edit window, using the Toggle Breakpoint button': 'You can also set and remove breakpoint in the edit window, using the Toggle Breakpoint button',
'You can inspect variables using the console below': 'Puedes inspeccionar las variables utilizando la terminal de abajo',
'You have been invited to join %(site)s, click %(link)s to complete the process': 'You have been invited to join %(site)s, click %(link)s to complete the process',
diff --git a/applications/admin/languages/fr.py b/applications/admin/languages/fr.py
old mode 100755
new mode 100644
index 6b310f92..c702813e
--- a/applications/admin/languages/fr.py
+++ b/applications/admin/languages/fr.py
@@ -11,15 +11,9 @@
'%s students registered': '%s students registered',
'%Y-%m-%d': '%d-%m-%Y',
'%Y-%m-%d %H:%M:%S': '%d-%m-%Y %H:%M:%S',
-'(**%.0d MB**)': '(**%.0d MB**)',
-'(file **gluon/contrib/plural_rules/%s.py** is not found)': '(file **gluon/contrib/plural_rules/%s.py** is not found)',
-'(requires internet access)': '(nécessite un accès Internet)',
'(requires internet access, experimental)': '(nécessite un accès Internet, expérimentale)',
'(something like "it-it")': '(quelque chose comme "it-it") ',
'(version %s)': '(version %s)',
-'**%(items)s** %%{item(items)}, **%(bytes)s** %%{byte(bytes)}': '**%(items)s** %%{item(items)}, **%(bytes)s** %%{byte(bytes)}',
-'**%(items)s** items, **%(bytes)s** %%{byte(bytes)}': '**%(items)s** items, **%(bytes)s** %%{byte(bytes)}',
-'**not available** (requires the Python [[guppy http://pypi.python.org/pypi/guppy/ popup]] library)': '**not available** (requires the Python [[guppy http://pypi.python.org/pypi/guppy/ popup]] library)',
'?': '?',
'@markmin\x01(**%.0d MB**)': '(**%.0d MB**)',
'@markmin\x01(file **gluon/contrib/plural_rules/%s.py** is not found)': '(file **gluon/contrib/plural_rules/%s.py** is not found)',
@@ -37,16 +31,12 @@
'@markmin\x01RAM contains items up to **%(hours)02d** %%{hour(hours)} **%(min)02d** %%{minute(min)} **%(sec)02d** %%{second(sec)} old.': 'RAM contains items up to **%(hours)02d** %%{hour(hours)} **%(min)02d** %%{minute(min)} **%(sec)02d** %%{second(sec)} old.',
'@markmin\x01Searching: **%s** %%{file}': 'Cherche: **%s** fichiers',
'@markmin\x01You need to set up and reach a [[breakpoint %s]] to use the debugger!': 'You need to set up and reach a [[breakpoint %s]] to use the debugger!',
-'``**not available**``:red (requires the Python [[guppy http://pypi.python.org/pypi/guppy/ popup]] library)': '``**not available**``:red (requires the Python [[guppy http://pypi.python.org/pypi/guppy/ popup]] library)',
'A new password was emailed to you': 'A new password was emailed to you',
-'A new version of web2py is available: %s': 'Une nouvelle version de web2py est disponible: %s ',
-'A new version of web2py is available: Version 1.68.2 (2009-10-21 09:59:29)\n': 'Une nouvelle version de web2py est disponible: Version 1.68.2 (2009-10-21 09:59:29)\r\n',
'Abort': 'Abort',
'About': 'À propos',
'About application': "À propos de l'application",
'Accept Terms': 'Termes acceptés',
'Add breakpoint': 'Ajouter une interruption',
-'additional code for your application': 'code supplémentaire pour votre application',
'Additional code for your application': 'Code additionnel pour votre application',
'Admin design page': 'Page de conception admin',
'admin disabled because no admin password': 'admin désactivée car aucun mot de passe admin',
@@ -58,15 +48,12 @@
'Admin versioning page': 'Admin versioning page',
'administrative interface': "interface d'administration",
'Administrator Password:': "Mot de passe de l'administrateur:",
-'An error occured, please [[reload %s]] the page': 'Une erreur c’est produite, s’il vous plait [[reload %s]] la page',
-'and rename it (required):': 'et renommez-la (obligatoire):',
'and rename it:': 'et renommez-le:',
'App does not exist or you are not authorized': 'App does not exist or you are not authorized',
'appadmin': 'appadmin',
'appadmin is disabled because insecure channel': 'appadmin est désactivé parce que canal non sécurisé',
'Application': 'Application',
'application "%s" uninstalled': 'application "%s" désinstallée',
-'application %(appname)s installed with md5sum: %(digest)s': 'application %(appname)s installée avec md5sum: %(digest)s',
'Application cannot be generated in demo mode': 'Application cannot be generated in demo mode',
'application compiled': 'application compilée',
'Application exists already': 'Application exists already',
@@ -80,7 +67,6 @@
'Are you sure you want to delete plugin "%s"?': 'Êtes-vous sûr de vouloir supprimer le plugin "%s"?',
'Are you sure you want to delete this object?': 'Êtes-vous sûr de vouloir supprimer cet objet?',
'Are you sure you want to uninstall application "%s"?': "Êtes-vous sûr de vouloir désinstaller l'application «%s»?",
-'Are you sure you want to upgrade web2py now?': 'Êtes-vous sûr de vouloir mettre à jour web2py maintenant?',
'Are you sure?': 'Êtes vous sûr?',
'arguments': 'arguments',
'at char %s': 'at char %s',
@@ -91,7 +77,6 @@
'ATTENTION: you cannot edit the running application!': "ATTENTION: vous ne pouvez pas modifier l'application qui tourne!",
'Authentication code': 'Authentication code',
'Autocomplete Python Code': 'Autocomplete Python Code',
-'Available databases and tables': 'Bases de données et tables disponibles',
'Available Databases and Tables': 'Available Databases and Tables',
'back': 'retour',
'Back to the plugins list': 'Retour à la liste de plugins',
@@ -106,13 +91,11 @@
'Cache': 'Cache',
'cache': 'cache',
'Cache Cleared': 'Cache Cleared',
-'Cache contains items up to **%(hours)02d** %%{hour(hours)} **%(min)02d** %%{minute(min)} **%(sec)02d** %%{second(sec)} old.': 'Cache contains items up to **%(hours)02d** %%{hour(hours)} **%(min)02d** %%{minute(min)} **%(sec)02d** %%{second(sec)} old.',
'Cache Keys': 'Cache Keys',
'cache, errors and sessions cleaned': 'cache, erreurs et sessions nettoyés',
'can be a git repo': 'can be a git repo',
'Cancel': 'Annuler',
'Cannot be empty': 'Ne peut pas être vide',
-'Cannot compile: there are errors in your app. Debug it, correct errors and try again.': 'Ne peut pas compiler: il y a des erreurs dans votre application. corriger les erreurs et essayez à nouveau.',
'Cannot compile: there are errors in your app:': 'Ne peut pas compiler: il y a des erreurs dans votre application:',
'cannot create file': 'ne peut pas créer de fichier',
'cannot upload file "%(filename)s"': 'ne peut pas charger le fichier "%(filename)s"',
@@ -133,7 +116,6 @@
'Click on the link %(link)s to reset your password': 'Click on the link %(link)s to reset your password',
'Click row to expand traceback': 'Click row to expand traceback',
'Click row to view a ticket': 'Click row to view a ticket',
-'click to check for upgrades': 'Cliquez pour vérifier les mises jour',
'Client IP': 'Client IP',
'code': 'code',
'Code listing': 'Code listing',
@@ -154,8 +136,6 @@
'Count': 'Compte',
'Create': 'Créer',
'create file with filename:': 'créer un fichier avec nom de fichier:',
-'create new application:': 'créer une nouvelle application:',
-'Create new simple application': 'Créer une nouvelle application',
'Create/Upload': 'Create/Upload',
'created by': 'créé par',
'Created by:': 'Créé par:',
@@ -169,9 +149,7 @@
'currently saved or': 'actuellement enregistré ou',
'data uploaded': 'données téléversées',
'Database': 'Base de données',
-'database': 'base de données',
'Database %s select': 'Database %s select',
-'database %s select': 'base de données %s sélectionner',
'Database administration': 'Administration base de données',
'database administration': 'administration base de données',
'Database Administration (appadmin)': 'Database Administration (appadmin)',
@@ -209,7 +187,6 @@
'DISK': 'DISQUE',
'Disk Cache Keys': 'Disk Cache Keys',
'Disk Cleared': 'Disque effacé',
-'DISK contains items up to **%(hours)02d** %%{hour(hours)} **%(min)02d** %%{minute(min)} **%(sec)02d** %%{second(sec)} old.': 'DISK contains items up to **%(hours)02d** %%{hour(hours)} **%(min)02d** %%{minute(min)} **%(sec)02d** %%{second(sec)} old.',
'Display line numbers': 'Display line numbers',
'DO NOT use the "Pack compiled" feature.': 'DO NOT use the "Pack compiled" feature.',
'docs': 'documents',
@@ -223,17 +200,13 @@
'download plugins': 'télécharger plugins',
'Download plugins from repository': 'Download plugins from repository',
'E-mail': 'E-mail',
-'EDIT': 'MODIFIER',
'Edit': 'Modifier',
'edit all': 'tout modifier',
'Edit application': "Modifier l'application",
-'edit controller': 'modifier contrôleur',
'edit controller:': 'modifier le contrôleur:',
'Edit current record': 'Modifier cet enregistrement',
'edit views:': 'modifier les vues:',
'Editing %s': 'Modifier %s',
-'Editing file': 'Modifier le fichier',
-'Editing file "%s"': 'Modifier le fichier "% s" ',
'Editing Language file': 'Modifier le fichier de langue',
'Editing Plural Forms File': 'Modifier le fichier du formulaire pluriel',
'Editor': 'Éditeur',
@@ -244,7 +217,6 @@
'Enable': 'Activer',
'Enable Close-Tag': 'Enable Close-Tag',
'Enable Code Folding': 'Enable Code Folding',
-'Enterprise Web Framework': 'Enterprise Web Framework',
'Error': 'Error',
'Error logs for "%(app)s"': 'Journal d\'erreurs pour "%(app)s"',
'Error snapshot': 'Error snapshot',
@@ -261,7 +233,6 @@
'exposes:': 'expose:',
'extends': 'étend',
'failed to compile file because:': 'failed to compile file because:',
-'failed to reload module': 'impossible de recharger le module',
'failed to reload module because:': 'impossible de recharger le module car:',
'File': 'Fichier',
'file "%(filename)s" created': 'fichier "%(filename)s" créé',
@@ -295,8 +266,8 @@
'Google App Engine Deployment Interface': 'Google App Engine Deployment Interface',
'Google Application Id': 'Google Application Id',
'Goto': 'Goto',
-'graph model': 'représentation graphique du modèle',
'Graph Model': 'Représentation graphique du modèle',
+'graph model': 'représentation graphique du modèle',
'Group %(group_id)s created': 'Group %(group_id)s created',
'Group %(group_id)s deleted': 'Group %(group_id)s deleted',
'Group ID': 'Group ID',
@@ -305,11 +276,9 @@
'here': 'ici',
'Hide/Show Translated strings': 'Hide/Show Translated strings',
'Highlight current line': 'Highlight current line',
-'Hit Ratio: **%(ratio)s%%** (**%(hits)s** %%{hit(hits)} and **%(misses)s** %%{miss(misses)})': 'Hit Ratio: **%(ratio)s%%** (**%(hits)s** %%{hit(hits)} and **%(misses)s** %%{miss(misses)})',
'Hits': 'Hits',
'Home': 'Accueil',
'honored only if the expression evaluates to true': 'honored only if the expression evaluates to true',
-'htmledit': 'edition html',
'If start the downgrade, be patient, it may take a while to rollback': 'If start the downgrade, be patient, it may take a while to rollback',
'If start the upgrade, be patient, it may take a while to download': 'If start the upgrade, be patient, it may take a while to download',
'If the report above contains a ticket number it indicates a failure in executing the controller, before any attempt to execute the doctests. This is usually due to an indentation error or an error outside function code.\n\t\tA green title indicates that all tests (if defined) passed. In this case test results are not shown.': 'If the report above contains a ticket number it indicates a failure in executing the controller, before any attempt to execute the doctests. This is usually due to an indentation error or an error outside function code.\n\t\tA green title indicates that all tests (if defined) passed. In this case test results are not shown.',
@@ -321,9 +290,6 @@
'includes': 'inclus',
'Incorrect code. {0} more attempt(s) remaining.': 'Incorrect code. {0} more attempt(s) remaining.',
'Indent with tabs': 'Indent with tabs',
-'index': 'index',
-'insert new': 'insérer nouveau',
-'insert new %s': 'insérer nouveau %s',
'inspect attributes': 'inspect attributes',
'Install': 'Installer',
'Installation of %(plugin)s for %(app)s': 'Installation of %(plugin)s for %(app)s',
@@ -371,7 +337,6 @@
'lists by exception': 'lists by exception',
'lists by ticket': 'lists by ticket',
'Loading...': 'Chargement...',
-'loading...': 'chargement ...',
'Local Apps': 'Local Apps',
'locals': 'locals',
'Locals##debug': 'Locals##debug',
@@ -379,7 +344,6 @@
'Logged in': 'Logged in',
'Logged out': 'Logged out',
'Login': 'Connexion',
-'login': 'connexion',
'Login disabled by administrator': 'Login disabled by administrator',
'Login successful': 'Login successful',
'Login to the Administrative Interface': "Se connecter à l'interface d'administration",
@@ -394,7 +358,6 @@
'Manage Cache': 'Manage Cache',
'Manage Students': 'Manage Students',
'Memberships': 'Memberships',
-"Mercurial Version Control System Interface[[NEWLINE]]for application '%s'": "Mercurial Version Control System Interface[[NEWLINE]]for application '%s'",
'merge': 'fusionner',
'Models': 'Modèles',
'models': 'modèles',
@@ -415,7 +378,6 @@
'New simple application': 'Nouvelle application simple',
'next': 'suivant',
'next %s rows': '%s lignes suivantes',
-'next 100 rows': '100 lignes suivantes',
'NO': 'NON',
'no changes': 'no changes',
'No databases in this application': 'Aucune base de données dans cette application',
@@ -427,7 +389,6 @@
'Not Authorized': 'Pas autorisé',
'Not supported': 'Pas supporté',
'Note: If you receive an error with github status code of 128, ensure the system and account you are deploying from has a cooresponding ssh key configured in the openshift account.': 'Note: If you receive an error with github status code of 128, ensure the system and account you are deploying from has a cooresponding ssh key configured in the openshift account.',
-'Number of entries: **%s**': 'Number of entries: **%s**',
'Object or table name': 'Object or table name',
'Old password': 'Old password',
"On production, you'll have to configure your webserver to use one process and multiple threads to use this debugger.": "On production, you'll have to configure your webserver to use one process and multiple threads to use this debugger.",
@@ -437,8 +398,6 @@
'or alternatively': 'or alternatively',
'Or Get from URL:': 'Or Get from URL:',
'or import from csv file': 'ou importer depuis un fichier CSV ',
-'or provide app url:': "ou fournir l'URL de l'app:",
-'or provide application url:': "ou fournir l'URL de l'application:",
'Origin': 'Origin',
'Original/Translation': 'Original / Traduction',
'Overview': 'Overview',
@@ -447,7 +406,6 @@
'Pack compiled': 'paquet compilé',
'Pack custom': 'Pack custom',
'pack plugin': 'paquet plugin',
-'PAM authenticated user, cannot change password here': 'Utilisateur authentifié par PAM, vous ne pouvez pas changer le mot de passe ici',
'Password': 'Password',
'password changed': 'mot de passe modifié',
'Password changed': 'Password changed',
@@ -475,7 +433,6 @@
'Preferences saved correctly': 'Preferences saved correctly',
'Preferences saved on session only': 'Preferences saved on session only',
'previous %s rows': 'previous %s rows',
-'previous 100 rows': '100 lignes précédentes',
'Private files': 'Private files',
'private files': 'private files',
'Profile updated': 'Profile updated',
@@ -492,10 +449,8 @@
'RAM': 'RAM',
'RAM Cache Keys': 'RAM Cache Keys',
'Ram Cleared': 'Ram Cleared',
-'RAM contains items up to **%(hours)02d** %%{hour(hours)} **%(min)02d** %%{minute(min)} **%(sec)02d** %%{second(sec)} old.': 'RAM contains items up to **%(hours)02d** %%{hour(hours)} **%(min)02d** %%{minute(min)} **%(sec)02d** %%{second(sec)} old.',
'Rapid Search': 'Recherche rapide',
'Record': 'Enregistrement',
-'record': 'enregistrement',
'Record %(id)s created': 'Record %(id)s created',
'Record %(id)s deleted': 'Record %(id)s deleted',
'Record %(id)s read': 'Record %(id)s read',
@@ -503,7 +458,6 @@
'Record Created': 'Record Created',
'Record Deleted': 'Record Deleted',
'record does not exist': "l'entrée n'existe pas",
-'record id': 'id entrée',
'Record id': 'Record id',
'Record ID': 'Record ID',
'Record Updated': 'Record Updated',
@@ -539,7 +493,6 @@
'Role': 'Rôle',
'Roles': 'Rôles',
'Rows in Table': 'Rows in Table',
-'Rows in table': 'Lignes de la table',
'Rows selected': 'Lignes sélectionnées',
'rules are not defined': 'rules are not defined',
'Run tests': 'Run tests',
@@ -547,7 +500,6 @@
"Run tests in this file (to run all files, you may also use the button labelled 'test')": "Lancer les tests dans ce fichier (pour lancer tous les fichiers, vous pouvez également utiliser le bouton nommé 'test')",
'Running on %s': 'Running on %s',
'Save': 'Sauvegarder',
-'save': 'sauvegarder',
'Save file:': 'Sauvegarder le fichier:',
'Save file: %s': 'Sauvegarder le fichier : %s',
'Save model as...': 'Sauvegarder le modèle sous...',
@@ -555,9 +507,7 @@
'Saved file hash:': 'Hash du Fichier enregistré:',
'Screenshot %s': "Capture d'écran %s",
'Search': 'Rechercher',
-'Searching: **%s** %%{file}': 'Searching: **%s** %%{file}',
'Select Files to Package': 'Select Files to Package',
-'selected': 'sélectionnés',
'session': 'session',
'session expired': 'la session a expiré ',
'Session saved correctly': 'Session saved correctly',
@@ -579,21 +529,19 @@
'Start searching': 'Débuté la recherche',
'Start wizard': "Démarrer l'assistant",
'state': 'état',
-'Static': 'Statique',
'static': 'statique',
+'Static': 'Statique',
'Static files': 'Fichiers statiques',
'Statistics': 'Statistics',
'Step': 'Step',
'step': 'step',
'stop': 'arrêt',
-'submit': 'envoyer',
'Submit': 'Envoyer',
+'submit': 'envoyer',
'successful': 'réussi',
-'Sure you want to delete this object?': 'Vous êtes sûr de vouloir supprimer cet objet?',
'switch to : db': 'transférer dans : db',
'switch to : filesystem': 'switch to : filesystem',
'Tab width (# characters)': 'Tab width (# characters)',
-'table': 'table',
'Table': 'Table',
'Temporary': 'Temporaire',
'test': 'tester',
@@ -601,12 +549,9 @@
'The "query" is a condition like "db.table1.field1==\'value\'". Something like "db.table1.field1==db.table2.field2" results in a SQL JOIN.': 'La "requête" est une condition comme "db.table1.field1==\'value\'". Quelque chose comme "db.table1.field1==db.table2.field2" aboutit à un JOIN SQL.',
'The app exists, was created by wizard, continue to overwrite!': 'The app exists, was created by wizard, continue to overwrite!',
'The app exists, was NOT created by wizard, continue to overwrite!': 'The app exists, was NOT created by wizard, continue to overwrite!',
-'the application logic, each URL path is mapped in one exposed function in the controller': "la logique de l'application, chaque chemin d'URL est mappé dans une fonction exposée dans le contrôleur",
'The application logic, each URL path is mapped in one exposed function in the controller': "La logique de l'application, chaque chemin d'URL est mappé avec une fonction exposée dans le contrôleur",
-'the data representation, define database tables and sets': 'La représentation des données, définir les tables et ensembles de la base de données',
'The data representation, define database tables and sets': 'La représentation des données, définir les tables et ensembles de la base de données',
'The presentations layer, views are also known as templates': 'Les couches de présentation, les vues sont également appelées modples',
-'the presentations layer, views are also known as templates': 'la couche de présentation, les vues sont également appelées modèles',
'Theme': 'Thème',
'There are no controllers': "Il n'y a pas de contrôleurs",
'There are no models': "Il n'y a pas de modèles",
@@ -619,13 +564,11 @@
'There are no views': "Il n'y a pas de vues",
'These files are not served, they are only available from within your app': 'These files are not served, they are only available from within your app',
'These files are served without processing, your images go here': 'Ces fichiers sont renvoyés sans traitement, vos images viennent ici',
-'these files are served without processing, your images go here': 'ces fichiers sont servis sans transformation, vos images vont ici',
'This code was emailed to you and is required for login.': 'This code was emailed to you and is required for login.',
"This debugger may not work properly if you don't have a threaded webserver or you're using multiple daemon processes.": "This debugger may not work properly if you don't have a threaded webserver or you're using multiple daemon processes.",
'This email already has an account': 'This email already has an account',
'This is an experimental feature and it needs more testing. If you decide to downgrade you do it at your own risk': 'This is an experimental feature and it needs more testing. If you decide to downgrade you do it at your own risk',
'This is an experimental feature and it needs more testing. If you decide to upgrade you do it at your own risk': 'This is an experimental feature and it needs more testing. If you decide to upgrade you do it at your own risk',
-'This is the %(filename)s template': 'Ceci est le modèle %(filename)s ',
"This page can commit your changes to an openshift app repo and push them to your cloud instance. This assumes that you've already created the application instance using the web2py skeleton and have that repo somewhere on a filesystem that this web2py instance can access. This functionality requires GitPython installed and on the python path of the runtime that web2py is operating in.": "This page can commit your changes to an openshift app repo and push them to your cloud instance. This assumes that you've already created the application instance using the web2py skeleton and have that repo somewhere on a filesystem that this web2py instance can access. This functionality requires GitPython installed and on the python path of the runtime that web2py is operating in.",
'This page can upload your application to the Google App Engine computing cloud. Mind that you must first create indexes locally and this is done by installing the Google appserver and running the app locally with it once, or there will be errors when selecting records. Attention: deployment may take long time, depending on the network speed. Attention: it will overwrite your app.yaml. DO NOT SUBMIT TWICE.': 'This page can upload your application to the Google App Engine computing cloud. Mind that you must first create indexes locally and this is done by installing the Google appserver and running the app locally with it once, or there will be errors when selecting records. Attention: deployment may take long time, depending on the network speed. Attention: it will overwrite your app.yaml. DO NOT SUBMIT TWICE.',
'this page to see if a breakpoint was hit and debug interaction is required.': 'this page to see if a breakpoint was hit and debug interaction is required.',
@@ -636,7 +579,6 @@
'Ticket Missing': 'Billet manquant',
'Time in Cache (h:m:s)': 'Time in Cache (h:m:s)',
'Timestamp': 'Timestamp',
-'TM': 'MD',
'to previous version.': 'à la version précédente.',
'To create a plugin, name a file/folder plugin_[name]': 'Pour créer un plugin, créer un fichier /dossier plugin_[nom]',
'To emulate a breakpoint programatically, write:': 'To emulate a breakpoint programatically, write:',
@@ -645,9 +587,7 @@
'Toggle comment': 'Toggle comment',
'Toggle Fullscreen': 'Toggle Fullscreen',
'Traceback': 'Traceback',
-'translation strings for the application': "chaînes de traduction de l'application",
'Translation strings for the application': "Chaînes de traduction pour l'application",
-'try': 'essayer',
'try something like': 'essayez quelque chose comme',
'Try the mobile interface': "Essayer l'interface pour mobile",
'try view': 'essayer la vue',
@@ -659,10 +599,7 @@
'unable to delete file "%(filename)s"': 'impossible de supprimer le fichier "%(filename)s"',
'unable to delete file plugin "%(plugin)s"': 'impossible de supprimer le plugin "%(plugin)s"',
'Unable to determine the line number!': 'Unable to determine the line number!',
-'Unable to download': 'Impossible de télécharger',
-'Unable to download app': "Impossible de télécharger l'app",
'Unable to download app because:': "Impossible de télécharger l'app car:",
-'Unable to download because': 'Impossible de télécharger car',
'unable to download layout': 'unable to download layout',
'unable to download plugin: %s': 'unable to download plugin: %s',
'Unable to download the list of plugins': 'Unable to download the list of plugins',
@@ -678,21 +615,14 @@
'update all languages': 'mettre à jour toutes les langues',
'Update:': 'Mise à jour:',
'Upgrade': 'Mese à jour de version',
-'upgrade now': 'mettre à jour maintenant',
'upgrade now to %s': 'mettre à jour maintenant à %s',
-'upgrade web2py now': 'mettre à jour web2py maintenant',
'upload': 'téléversé',
'Upload': 'Téléversé',
-'Upload & install packed application': "Charger & installer l'application empaquetée",
'Upload a package:': 'Téléverser un paquet:',
'Upload and install packed application': 'Téléversement et installation du paquet applicatif',
-'upload application:': "téléverser l'application:",
-'Upload existing application': 'Téléverser une application existante',
'upload file:': 'téléverser le fichier:',
'upload plugin file:': 'charger fichier plugin:',
'Use (...)&(...) for AND, (...)|(...) for OR, and ~(...) for NOT to build more complex queries.': 'Utilisez (...)&(...) pour AND, (...)|(...) pour OR, et ~(...) pour NOT afin de construire des requêtes plus complexes. ',
-'Use an url:': 'Utiliser une url:',
-'user': 'utilisateur',
'User': 'Utilisateur',
'User %(id)s is impersonating %(other_id)s': 'User %(id)s is impersonating %(other_id)s',
'User %(id)s Logged-in': 'User %(id)s Logged-in',
@@ -715,8 +645,6 @@
'Verify Password': 'Verify Password',
'Version': 'Version',
'Versioning': 'Versioning',
-'versioning': 'versioning',
-'view': 'vue',
'Views': 'Vues',
'views': 'vues',
'Warning!': 'Warning!',
@@ -729,7 +657,6 @@
'web2py downgrade': 'web2py downgrade',
'web2py is up to date': 'web2py est à jour',
'web2py online debugger': 'web2py online debugger',
-'web2py Recent Tweets': 'Tweets récents sur web2py ',
'web2py upgrade': 'web2py upgrade',
'web2py upgraded; please restart it': 'web2py mis à jour; veuillez le redémarrer',
'Welcome %(username)s! Click on the link %(link)s to verify your email': 'Welcome %(username)s! Click on the link %(link)s to verify your email',
diff --git a/applications/admin/languages/he.py b/applications/admin/languages/he.py
old mode 100755
new mode 100644
index f724678f..bf712bd1
--- a/applications/admin/languages/he.py
+++ b/applications/admin/languages/he.py
@@ -11,7 +11,6 @@
'%s students registered': '%s students registered',
'%Y-%m-%d': '%Y-%m-%d',
'%Y-%m-%d %H:%M:%S': '%Y-%m-%d %H:%M:%S',
-'(requires internet access)': '(requires internet access)',
'(requires internet access, experimental)': '(requires internet access, experimental)',
'(something like "it-it")': '(למשל "it-it")',
'(version %s)': '(version %s)',
@@ -33,13 +32,11 @@
'@markmin\x01Searching: **%s** %%{file}': 'Searching: **%s** files',
'@markmin\x01You need to set up and reach a [[breakpoint %s]] to use the debugger!': 'You need to set up and reach a [[breakpoint %s]] to use the debugger!',
'A new password was emailed to you': 'A new password was emailed to you',
-'A new version of web2py is available: %s': 'גירסא חדשה של web2py זמינה: %s',
'Abort': 'Abort',
'About': 'אודות',
'About application': 'אודות אפליקציה',
'Accept Terms': 'Accept Terms',
'Add breakpoint': 'Add breakpoint',
-'additional code for your application': 'קוד נוסף עבור האפליקציה שלך',
'Additional code for your application': 'Additional code for your application',
'Admin design page': 'Admin design page',
'admin disabled because no admin password': 'ממשק המנהל מנוטרל כי לא הוגדרה סיסמת מנהל',
@@ -51,7 +48,6 @@
'Admin versioning page': 'Admin versioning page',
'administrative interface': 'administrative interface',
'Administrator Password:': 'סיסמת מנהל',
-'and rename it (required):': 'ושנה את שמו (חובה):',
'and rename it:': 'ושנה את שמו:',
'App does not exist or you are not authorized': 'App does not exist or you are not authorized',
'appadmin': 'מנהל מסד הנתונים',
@@ -71,7 +67,6 @@
'Are you sure you want to delete plugin "%s"?': 'האם אתה בטוח שברצונך למחוק את התוסף "%s"?',
'Are you sure you want to delete this object?': 'Are you sure you want to delete this object?',
'Are you sure you want to uninstall application "%s"?': 'האם אתה בטוח שברצונך להסיר את האפליקציה "%s"?',
-'Are you sure you want to upgrade web2py now?': 'האם אתה בטוח שאתה רוצה לשדרג את web2py עכשיו?',
'Are you sure?': 'Are you sure?',
'arguments': 'פרמטרים',
'at char %s': 'at char %s',
@@ -82,7 +77,6 @@
'ATTENTION: you cannot edit the running application!': 'לתשומת ליבך: לא ניתן לערוך אפליקציה בזמן הרצתה',
'Authentication code': 'Authentication code',
'Autocomplete Python Code': 'Autocomplete Python Code',
-'Available databases and tables': 'מסדי נתונים וטבלאות זמינים',
'Available Databases and Tables': 'Available Databases and Tables',
'back': 'אחורה',
'Back to the plugins list': 'Back to the plugins list',
@@ -122,7 +116,6 @@
'Click on the link %(link)s to reset your password': 'Click on the link %(link)s to reset your password',
'Click row to expand traceback': 'Click row to expand traceback',
'Click row to view a ticket': 'Click row to view a ticket',
-'click to check for upgrades': 'לחץ כדי לחפש עדכונים',
'Client IP': 'Client IP',
'code': 'קוד',
'Code listing': 'Code listing',
@@ -143,8 +136,6 @@
'Count': 'Count',
'Create': 'צור',
'create file with filename:': 'צור קובץ בשם:',
-'create new application:': 'צור אפליקציה חדשה:',
-'Create new simple application': 'צור אפליקציה חדשה',
'Create/Upload': 'Create/Upload',
'created by': 'נוצר ע"י',
'Created by:': 'Created by:',
@@ -158,9 +149,7 @@
'currently saved or': 'נשמר כעת או',
'data uploaded': 'המידע הועלה',
'Database': 'Database',
-'database': 'מסד נתונים',
'Database %s select': 'Database %s select',
-'database %s select': 'מסד הנתונים %s נבחר',
'Database administration': 'Database administration',
'database administration': 'ניהול מסד נתונים',
'Database Administration (appadmin)': 'Database Administration (appadmin)',
@@ -211,16 +200,13 @@
'download plugins': 'download plugins',
'Download plugins from repository': 'Download plugins from repository',
'E-mail': 'E-mail',
-'EDIT': 'ערוך!',
'Edit': 'ערוך',
'edit all': 'edit all',
'Edit application': 'ערוך אפליקציה',
-'edit controller': 'ערוך בקר',
'edit controller:': 'edit controller:',
'Edit current record': 'ערוך רשומה נוכחית',
'edit views:': 'ערוך קיבצי תצוגה:',
'Editing %s': 'Editing %s',
-'Editing file "%s"': 'עורך את הקובץ "%s"',
'Editing Language file': 'עורך את קובץ השפה',
'Editing Plural Forms File': 'Editing Plural Forms File',
'Editor': 'Editor',
@@ -231,7 +217,6 @@
'Enable': 'Enable',
'Enable Close-Tag': 'Enable Close-Tag',
'Enable Code Folding': 'Enable Code Folding',
-'Enterprise Web Framework': 'סביבת הפיתוח לרשת',
'Error': 'Error',
'Error logs for "%(app)s"': 'דו"ח שגיאות עבור אפליקציה "%(app)s"',
'Error snapshot': 'Error snapshot',
@@ -281,8 +266,8 @@
'Google App Engine Deployment Interface': 'Google App Engine Deployment Interface',
'Google Application Id': 'Google Application Id',
'Goto': 'Goto',
-'graph model': 'graph model',
'Graph Model': 'Graph Model',
+'graph model': 'graph model',
'Group %(group_id)s created': 'Group %(group_id)s created',
'Group %(group_id)s deleted': 'Group %(group_id)s deleted',
'Group ID': 'Group ID',
@@ -294,7 +279,6 @@
'Hits': 'Hits',
'Home': 'Home',
'honored only if the expression evaluates to true': 'honored only if the expression evaluates to true',
-'htmledit': 'עורך ויזואלי',
'If start the downgrade, be patient, it may take a while to rollback': 'If start the downgrade, be patient, it may take a while to rollback',
'If start the upgrade, be patient, it may take a while to download': 'If start the upgrade, be patient, it may take a while to download',
'If the report above contains a ticket number it indicates a failure in executing the controller, before any attempt to execute the doctests. This is usually due to an indentation error or an error outside function code.\n\t\tA green title indicates that all tests (if defined) passed. In this case test results are not shown.': 'If the report above contains a ticket number it indicates a failure in executing the controller, before any attempt to execute the doctests. This is usually due to an indentation error or an error outside function code.\n\t\tA green title indicates that all tests (if defined) passed. In this case test results are not shown.',
@@ -306,8 +290,6 @@
'includes': 'מכיל',
'Incorrect code. {0} more attempt(s) remaining.': 'Incorrect code. {0} more attempt(s) remaining.',
'Indent with tabs': 'Indent with tabs',
-'insert new': 'הכנס נוסף',
-'insert new %s': 'הכנס %s נוסף',
'inspect attributes': 'inspect attributes',
'Install': 'התקן',
'Installation of %(plugin)s for %(app)s': 'Installation of %(plugin)s for %(app)s',
@@ -355,7 +337,6 @@
'lists by exception': 'lists by exception',
'lists by ticket': 'lists by ticket',
'Loading...': 'Loading...',
-'loading...': 'טוען...',
'Local Apps': 'Local Apps',
'locals': 'locals',
'Locals##debug': 'Locals##debug',
@@ -363,7 +344,6 @@
'Logged in': 'Logged in',
'Logged out': 'Logged out',
'Login': 'התחבר',
-'login': 'התחבר',
'Login disabled by administrator': 'Login disabled by administrator',
'Login successful': 'Login successful',
'Login to the Administrative Interface': 'התחבר לממשק המנהל',
@@ -398,7 +378,6 @@
'New simple application': 'New simple application',
'next': 'next',
'next %s rows': 'next %s rows',
-'next 100 rows': '100 הרשומות הבאות',
'NO': 'לא',
'no changes': 'no changes',
'No databases in this application': 'אין מסדי נתונים לאפליקציה זו',
@@ -419,7 +398,6 @@
'or alternatively': 'or alternatively',
'Or Get from URL:': 'Or Get from URL:',
'or import from csv file': 'או יבא מקובץ csv',
-'or provide app url:': 'או ספק כתובת url של אפליקציה',
'Origin': 'Origin',
'Original/Translation': 'מקור\\תרגום',
'Overview': 'Overview',
@@ -428,7 +406,6 @@
'Pack compiled': 'ארוז מקומפל',
'Pack custom': 'Pack custom',
'pack plugin': 'ארוז תוסף',
-'PAM authenticated user, cannot change password here': 'שינוי סיסמא באמצעות PAM אינו יכול להתבצע כאן',
'Password': 'Password',
'password changed': 'סיסמא שונתה',
'Password changed': 'Password changed',
@@ -456,7 +433,6 @@
'Preferences saved correctly': 'Preferences saved correctly',
'Preferences saved on session only': 'Preferences saved on session only',
'previous %s rows': 'previous %s rows',
-'previous 100 rows': '100 הרשומות הקודמות',
'Private files': 'Private files',
'private files': 'private files',
'Profile updated': 'Profile updated',
@@ -475,7 +451,6 @@
'Ram Cleared': 'Ram Cleared',
'Rapid Search': 'Rapid Search',
'Record': 'Record',
-'record': 'רשומה',
'Record %(id)s created': 'Record %(id)s created',
'Record %(id)s deleted': 'Record %(id)s deleted',
'Record %(id)s read': 'Record %(id)s read',
@@ -483,7 +458,6 @@
'Record Created': 'Record Created',
'Record Deleted': 'Record Deleted',
'record does not exist': 'הרשומה אינה קיימת',
-'record id': 'מזהה רשומה',
'Record id': 'Record id',
'Record ID': 'Record ID',
'Record Updated': 'Record Updated',
@@ -519,7 +493,6 @@
'Role': 'Role',
'Roles': 'Roles',
'Rows in Table': 'Rows in Table',
-'Rows in table': 'רשומות בטבלה',
'Rows selected': 'רשומות נבחרו',
'rules are not defined': 'rules are not defined',
'Run tests': 'Run tests',
@@ -535,7 +508,6 @@
'Screenshot %s': 'Screenshot %s',
'Search': 'Search',
'Select Files to Package': 'Select Files to Package',
-'selected': 'נבחרו',
'session': 'session',
'session expired': 'תם הסשן',
'Session saved correctly': 'Session saved correctly',
@@ -557,21 +529,19 @@
'Start searching': 'Start searching',
'Start wizard': 'start wizard',
'state': 'מצב',
-'Static': 'Static',
'static': 'קבצים סטאטיים',
+'Static': 'Static',
'Static files': 'קבצים סטאטיים',
'Statistics': 'Statistics',
'Step': 'Step',
'step': 'step',
'stop': 'stop',
-'submit': 'שלח',
'Submit': 'Submit',
+'submit': 'שלח',
'successful': 'successful',
-'Sure you want to delete this object?': 'האם אתה בטוח שברצונך למחוק אובייקט זה?',
'switch to : db': 'switch to : db',
'switch to : filesystem': 'switch to : filesystem',
'Tab width (# characters)': 'Tab width (# characters)',
-'table': 'טבלה',
'Table': 'Table',
'Temporary': 'Temporary',
'test': 'בדיקות',
@@ -579,12 +549,9 @@
'The "query" is a condition like "db.table1.field1==\'value\'". Something like "db.table1.field1==db.table2.field2" results in a SQL JOIN.': '"שאליתה" היא תנאי כגון "db1.table1.filed1=\'value\'" ביטוי כמו db.table1.field1=db.table2.field1 יחולל join',
'The app exists, was created by wizard, continue to overwrite!': 'The app exists, was created by wizard, continue to overwrite!',
'The app exists, was NOT created by wizard, continue to overwrite!': 'The app exists, was NOT created by wizard, continue to overwrite!',
-'the application logic, each URL path is mapped in one exposed function in the controller': 'הלוגיקה של האפליקציה, כל url ממופה לפונקציה חשופה בבקר',
'The application logic, each URL path is mapped in one exposed function in the controller': 'The application logic, each URL path is mapped in one exposed function in the controller',
-'the data representation, define database tables and sets': 'ייצוג המידע, בו מוגדרים טבלאות ומבנים',
'The data representation, define database tables and sets': 'The data representation, define database tables and sets',
'The presentations layer, views are also known as templates': 'The presentations layer, views are also known as templates',
-'the presentations layer, views are also known as templates': 'שכבת התצוגה, המכונה גם template',
'Theme': 'Theme',
'There are no controllers': 'אין בקרים',
'There are no models': 'אין מבני נתונים',
@@ -597,13 +564,11 @@
'There are no views': 'אין קבצי תצוגה',
'These files are not served, they are only available from within your app': 'These files are not served, they are only available from within your app',
'These files are served without processing, your images go here': 'These files are served without processing, your images go here',
-'these files are served without processing, your images go here': 'אלו הם קבצים הנשלחים מהשרת ללא עיבוד. הכנס את התמונות כאן',
'This code was emailed to you and is required for login.': 'This code was emailed to you and is required for login.',
"This debugger may not work properly if you don't have a threaded webserver or you're using multiple daemon processes.": "This debugger may not work properly if you don't have a threaded webserver or you're using multiple daemon processes.",
'This email already has an account': 'This email already has an account',
'This is an experimental feature and it needs more testing. If you decide to downgrade you do it at your own risk': 'This is an experimental feature and it needs more testing. If you decide to downgrade you do it at your own risk',
'This is an experimental feature and it needs more testing. If you decide to upgrade you do it at your own risk': 'This is an experimental feature and it needs more testing. If you decide to upgrade you do it at your own risk',
-'This is the %(filename)s template': 'זוהי תבנית הקובץ %(filename)s ',
"This page can commit your changes to an openshift app repo and push them to your cloud instance. This assumes that you've already created the application instance using the web2py skeleton and have that repo somewhere on a filesystem that this web2py instance can access. This functionality requires GitPython installed and on the python path of the runtime that web2py is operating in.": "This page can commit your changes to an openshift app repo and push them to your cloud instance. This assumes that you've already created the application instance using the web2py skeleton and have that repo somewhere on a filesystem that this web2py instance can access. This functionality requires GitPython installed and on the python path of the runtime that web2py is operating in.",
'This page can upload your application to the Google App Engine computing cloud. Mind that you must first create indexes locally and this is done by installing the Google appserver and running the app locally with it once, or there will be errors when selecting records. Attention: deployment may take long time, depending on the network speed. Attention: it will overwrite your app.yaml. DO NOT SUBMIT TWICE.': 'This page can upload your application to the Google App Engine computing cloud. Mind that you must first create indexes locally and this is done by installing the Google appserver and running the app locally with it once, or there will be errors when selecting records. Attention: deployment may take long time, depending on the network speed. Attention: it will overwrite your app.yaml. DO NOT SUBMIT TWICE.',
'this page to see if a breakpoint was hit and debug interaction is required.': 'this page to see if a breakpoint was hit and debug interaction is required.',
@@ -614,7 +579,6 @@
'Ticket Missing': 'Ticket Missing',
'Time in Cache (h:m:s)': 'Time in Cache (h:m:s)',
'Timestamp': 'Timestamp',
-'TM': 'סימן רשום',
'to previous version.': 'אין גירסא קודמת',
'To create a plugin, name a file/folder plugin_[name]': 'כדי ליצור תוסף, קרא לקובץ או סיפריה בשם לפי התבנית plugin_[name]',
'To emulate a breakpoint programatically, write:': 'To emulate a breakpoint programatically, write:',
@@ -623,9 +587,7 @@
'Toggle comment': 'Toggle comment',
'Toggle Fullscreen': 'Toggle Fullscreen',
'Traceback': 'Traceback',
-'translation strings for the application': 'מחרוזות תרגום עבור האפליקציה',
'Translation strings for the application': 'Translation strings for the application',
-'try': 'נסה',
'try something like': 'נסה משהו כמו',
'Try the mobile interface': 'Try the mobile interface',
'try view': 'try view',
@@ -638,7 +600,6 @@
'unable to delete file plugin "%(plugin)s"': 'נכשל במחיקת התוסף "%(plugin)s"',
'Unable to determine the line number!': 'Unable to determine the line number!',
'Unable to download app because:': 'לא ניתן היה להוריד את האפליקציה כי:',
-'Unable to download because': 'לא הצלחתי להוריד כי',
'unable to download layout': 'unable to download layout',
'unable to download plugin: %s': 'unable to download plugin: %s',
'Unable to download the list of plugins': 'Unable to download the list of plugins',
@@ -654,19 +615,14 @@
'update all languages': 'עדכן את כלל קיבצי השפה',
'Update:': 'עדכן:',
'Upgrade': 'Upgrade',
-'upgrade now': 'upgrade now',
'upgrade now to %s': 'upgrade now to %s',
-'upgrade web2py now': 'שדרג את web2py עכשיו',
'upload': 'upload',
'Upload': 'Upload',
-'Upload & install packed application': 'העלה והתקן אפליקציה ארוזה',
'Upload a package:': 'Upload a package:',
'Upload and install packed application': 'Upload and install packed application',
-'upload application:': 'העלה אפליקציה:',
'upload file:': 'העלה קובץ:',
'upload plugin file:': 'העלה קובץ תוסף:',
'Use (...)&(...) for AND, (...)|(...) for OR, and ~(...) for NOT to build more complex queries.': 'השתמש ב (...)&(...) עבור תנאי AND, (...)|(...) עבור תנאי OR ו~(...) עבור תנאי NOT ליצירת שאילתות מורכבות',
-'Use an url:': 'Use an url:',
'User': 'User',
'User %(id)s is impersonating %(other_id)s': 'User %(id)s is impersonating %(other_id)s',
'User %(id)s Logged-in': 'User %(id)s Logged-in',
@@ -689,8 +645,6 @@
'Verify Password': 'Verify Password',
'Version': 'גירסא',
'Versioning': 'Versioning',
-'versioning': 'מנגנון גירסאות',
-'view': 'הצג',
'Views': 'מראה',
'views': 'מראה',
'Warning!': 'Warning!',
@@ -703,7 +657,6 @@
'web2py downgrade': 'web2py downgrade',
'web2py is up to date': 'web2py מותקנת בגירסתה האחרונה',
'web2py online debugger': 'web2py online debugger',
-'web2py Recent Tweets': 'ציוצים אחרונים של web2py',
'web2py upgrade': 'web2py upgrade',
'web2py upgraded; please restart it': 'web2py שודרגה; נא אתחל אותה',
'Welcome %(username)s! Click on the link %(link)s to verify your email': 'Welcome %(username)s! Click on the link %(link)s to verify your email',
diff --git a/applications/admin/languages/it.py b/applications/admin/languages/it.py
old mode 100755
new mode 100644
index 910f1a68..0790f186
--- a/applications/admin/languages/it.py
+++ b/applications/admin/languages/it.py
@@ -11,7 +11,6 @@
'%s students registered': '%s students registered',
'%Y-%m-%d': '%d/%m/%Y',
'%Y-%m-%d %H:%M:%S': '%d/%m/%Y %H:%M:%S',
-'(requires internet access)': '(requires internet access)',
'(requires internet access, experimental)': '(requires internet access, experimental)',
'(something like "it-it")': '(qualcosa simile a "it-it")',
'(version %s)': '(version %s)',
@@ -33,13 +32,11 @@
'@markmin\x01Searching: **%s** %%{file}': 'Searching: **%s** files',
'@markmin\x01You need to set up and reach a [[breakpoint %s]] to use the debugger!': 'You need to set up and reach a [[breakpoint %s]] to use the debugger!',
'A new password was emailed to you': 'A new password was emailed to you',
-'A new version of web2py is available: %s': 'È disponibile una nuova versione di web2py: %s',
'Abort': 'Abort',
'About': 'informazioni',
'About application': "Informazioni sull'applicazione",
'Accept Terms': 'Accept Terms',
'Add breakpoint': 'Add breakpoint',
-'additional code for your application': 'righe di codice aggiuntive per la tua applicazione',
'Additional code for your application': 'Additional code for your application',
'Admin design page': 'Admin design page',
'admin disabled because no admin password': 'amministrazione disabilitata per mancanza di password amministrativa',
@@ -51,8 +48,6 @@
'Admin versioning page': 'Admin versioning page',
'administrative interface': 'administrative interface',
'Administrator Password:': 'Password Amministratore:',
-'An error occured, please %s the page': 'An error occured, please %s the page',
-'and rename it (required):': 'e rinominala (obbligatorio):',
'and rename it:': 'e rinominala:',
'App does not exist or you are not authorized': 'App does not exist or you are not authorized',
'appadmin': 'appadmin ',
@@ -72,7 +67,6 @@
'Are you sure you want to delete plugin "%s"?': 'Confermi di voler cancellare il plugin "%s"?',
'Are you sure you want to delete this object?': 'Are you sure you want to delete this object?',
'Are you sure you want to uninstall application "%s"?': 'Confermi di voler disinstallare l\'applicazione "%s"?',
-'Are you sure you want to upgrade web2py now?': 'Confermi di voler aggiornare web2py ora?',
'Are you sure?': 'Are you sure?',
'arguments': 'arguments',
'at char %s': 'at char %s',
@@ -83,7 +77,6 @@
'ATTENTION: you cannot edit the running application!': "ATTENZIONE: non puoi modificare l'applicazione correntemente in uso ",
'Authentication code': 'Authentication code',
'Autocomplete Python Code': 'Autocomplete Python Code',
-'Available databases and tables': 'Database e tabelle disponibili',
'Available Databases and Tables': 'Available Databases and Tables',
'back': 'indietro',
'Back to the plugins list': 'Back to the plugins list',
@@ -109,7 +102,6 @@
'Change Admin Password': 'Change Admin Password',
'Change admin password': 'change admin password',
'change editor settings': 'change editor settings',
-'change password': 'cambia password',
'Change password': 'Change password',
'Changelog': 'Changelog',
'check all': 'controlla tutto',
@@ -121,12 +113,9 @@
'Clear CACHE?': 'Clear CACHE?',
'Clear DISK': 'Clear DISK',
'Clear RAM': 'Clear RAM',
-'click here for online examples': 'clicca per vedere gli esempi',
-'click here for the administrative interface': "clicca per l'interfaccia amministrativa",
'Click on the link %(link)s to reset your password': 'Click on the link %(link)s to reset your password',
'Click row to expand traceback': 'Click row to expand traceback',
'Click row to view a ticket': 'Click row to view a ticket',
-'click to check for upgrades': 'clicca per controllare presenza di aggiornamenti',
'Client IP': 'Client IP',
'code': 'code',
'Code listing': 'Code listing',
@@ -142,15 +131,11 @@
'compiled application removed': "rimosso il codice compilato dell'applicazione",
'Condition': 'Condition',
'continue': 'continue',
-'Controller': 'Controller',
'Controllers': 'Controllers',
'controllers': 'controllers',
-'Copyright': 'Copyright',
'Count': 'Count',
'Create': 'crea',
'create file with filename:': 'crea un file col nome:',
-'create new application:': 'create new application:',
-'Create new simple application': 'Crea nuova applicazione',
'Create/Upload': 'Create/Upload',
'created by': 'creato da',
'Created by:': 'Created by:',
@@ -162,18 +147,14 @@
'Current session': 'Sessione (session) corrente',
'currently running': 'currently running',
'currently saved or': 'attualmente salvato o',
-'customize me!': 'Personalizzami!',
'data uploaded': 'dati caricati',
'Database': 'Database',
-'database': 'database',
'Database %s select': 'Database %s select',
-'database %s select': 'database %s select',
'Database administration': 'Database administration',
'database administration': 'amministrazione database',
'Database Administration (appadmin)': 'Database Administration (appadmin)',
'Date and Time': 'Data and Ora',
'db': 'db',
-'DB Model': 'Modello di DB',
'Debug': 'Debug',
'defines tables': 'defininisce le tabelle',
'Delete': 'Cancella',
@@ -219,15 +200,11 @@
'download plugins': 'download plugins',
'Download plugins from repository': 'Download plugins from repository',
'E-mail': 'E-mail',
-'EDIT': 'MODIFICA',
'Edit': 'modifica',
'edit all': 'edit all',
'Edit application': 'Modifica applicazione',
-'edit controller': 'modifica controller',
'edit controller:': 'edit controller:',
'Edit current record': 'Modifica record corrente',
-'edit profile': 'modifica profilo',
-'Edit This App': 'Modifica questa applicazione',
'edit views:': 'modifica viste (view):',
'Editing %s': 'Editing %s',
'Editing Language file': 'Editing Language file',
@@ -240,8 +217,6 @@
'Enable': 'Enable',
'Enable Close-Tag': 'Enable Close-Tag',
'Enable Code Folding': 'Enable Code Folding',
-'Enter an integer between %(min)g and %(max)g': 'Enter an integer between %(min)g and %(max)g',
-'Enterprise Web Framework': 'Enterprise Web Framework',
'Error': 'Error',
'Error logs for "%(app)s"': 'Log degli errori per "%(app)s"',
'Error snapshot': 'Error snapshot',
@@ -251,7 +226,6 @@
'Exception %s': 'Exception %s',
'Exception instance attributes': 'Exception instance attributes',
'Exit Fullscreen': 'Exit Fullscreen',
-'Expand Abbreviation': 'Expand Abbreviation',
'Expand Abbreviation (html files only)': 'Expand Abbreviation (html files only)',
'export as csv file': 'esporta come file CSV',
'Exports:': 'Exports:',
@@ -285,7 +259,6 @@
'GAE Output': 'GAE Output',
'GAE Password': 'GAE Password',
'Generate': 'Generate',
-'Get from URL:': 'Get from URL:',
'Git Pull': 'Git Pull',
'Git Push': 'Git Push',
'Globals##debug': 'Globals##debug',
@@ -293,13 +266,12 @@
'Google App Engine Deployment Interface': 'Google App Engine Deployment Interface',
'Google Application Id': 'Google Application Id',
'Goto': 'Goto',
-'graph model': 'graph model',
'Graph Model': 'Graph Model',
+'graph model': 'graph model',
'Group %(group_id)s created': 'Group %(group_id)s created',
'Group %(group_id)s deleted': 'Group %(group_id)s deleted',
'Group ID': 'Group ID',
'Group uniquely assigned to user %(id)s': 'Group uniquely assigned to user %(id)s',
-'Hello World': 'Salve Mondo',
'Help': 'aiuto',
'here': 'here',
'Hide/Show Translated strings': 'Hide/Show Translated strings',
@@ -307,7 +279,6 @@
'Hits': 'Hits',
'Home': 'Home',
'honored only if the expression evaluates to true': 'honored only if the expression evaluates to true',
-'htmledit': 'modifica come html',
'If start the downgrade, be patient, it may take a while to rollback': 'If start the downgrade, be patient, it may take a while to rollback',
'If start the upgrade, be patient, it may take a while to download': 'If start the upgrade, be patient, it may take a while to download',
'If the report above contains a ticket number it indicates a failure in executing the controller, before any attempt to execute the doctests. This is usually due to an indentation error or an error outside function code.\n\t\tA green title indicates that all tests (if defined) passed. In this case test results are not shown.': 'If the report above contains a ticket number it indicates a failure in executing the controller, before any attempt to execute the doctests. This is usually due to an indentation error or an error outside function code.\n\t\tA green title indicates that all tests (if defined) passed. In this case test results are not shown.',
@@ -319,9 +290,6 @@
'includes': 'include',
'Incorrect code. {0} more attempt(s) remaining.': 'Incorrect code. {0} more attempt(s) remaining.',
'Indent with tabs': 'Indent with tabs',
-'Index': 'Indice',
-'insert new': 'inserisci nuovo',
-'insert new %s': 'inserisci nuovo %s',
'inspect attributes': 'inspect attributes',
'Install': 'installa',
'Installation of %(plugin)s for %(app)s': 'Installation of %(plugin)s for %(app)s',
@@ -352,8 +320,6 @@
'Invalid username': 'Invalid username',
'Invitation to join %(site)s': 'Invitation to join %(site)s',
'Key': 'Key',
-'Key bindings': 'Key bindings',
-'Key bindings for ZenCoding Plugin': 'Key bindings for ZenCoding Plugin',
'Key verified': 'Key verified',
'Keyboard shortcuts': 'Keyboard shortcuts',
'kill process': 'kill process',
@@ -364,7 +330,6 @@
'Last name': 'Last name',
'Last Revision': 'Last Revision',
'Last saved on:': 'Ultimo salvataggio:',
-'Layout': 'Layout',
'License for': 'Licenza relativa a',
'License:': 'License:',
'Line Nr': 'Line Nr',
@@ -372,7 +337,6 @@
'lists by exception': 'lists by exception',
'lists by ticket': 'lists by ticket',
'Loading...': 'Loading...',
-'loading...': 'caricamento...',
'Local Apps': 'Local Apps',
'locals': 'locals',
'Locals##debug': 'Locals##debug',
@@ -380,7 +344,6 @@
'Logged in': 'Logged in',
'Logged out': 'Logged out',
'Login': 'Accesso',
-'login': 'accesso',
'Login disabled by administrator': 'Login disabled by administrator',
'Login successful': 'Login successful',
'Login to the Administrative Interface': "Accesso all'interfaccia amministrativa",
@@ -395,7 +358,6 @@
'Manage Cache': 'Manage Cache',
'Manage Students': 'Manage Students',
'Memberships': 'Memberships',
-'Menu Model': 'Menu Modelli',
'merge': 'unisci',
'Models': 'Modelli',
'models': 'modelli',
@@ -416,7 +378,6 @@
'New simple application': 'New simple application',
'next': 'next',
'next %s rows': 'next %s rows',
-'next 100 rows': 'prossime 100 righe',
'NO': 'NO',
'no changes': 'no changes',
'No databases in this application': 'Nessun database presente in questa applicazione',
@@ -431,14 +392,12 @@
'Object or table name': 'Object or table name',
'Old password': 'Old password',
"On production, you'll have to configure your webserver to use one process and multiple threads to use this debugger.": "On production, you'll have to configure your webserver to use one process and multiple threads to use this debugger.",
-'online designer': 'online designer',
'Open new app in new window': 'Open new app in new window',
'OpenShift Deployment Interface': 'OpenShift Deployment Interface',
'OpenShift Output': 'OpenShift Output',
'or alternatively': 'or alternatively',
'Or Get from URL:': 'Or Get from URL:',
'or import from csv file': 'oppure importa da file CSV',
-'or provide app url:': "oppure fornisci url dell'applicazione:",
'Origin': 'Origin',
'Original/Translation': 'Originale/Traduzione',
'Overview': 'Overview',
@@ -447,7 +406,6 @@
'Pack compiled': 'crea pacchetto del codice compilato',
'Pack custom': 'Pack custom',
'pack plugin': 'crea pacchetto del plugin',
-'PAM authenticated user, cannot change password here': 'utente autenticato tramite PAM, impossibile modificare password qui',
'Password': 'Password',
'password changed': 'password modificata',
'Password changed': 'Password changed',
@@ -475,7 +433,6 @@
'Preferences saved correctly': 'Preferences saved correctly',
'Preferences saved on session only': 'Preferences saved on session only',
'previous %s rows': 'previous %s rows',
-'previous 100 rows': '100 righe precedenti',
'Private files': 'Private files',
'private files': 'private files',
'Profile updated': 'Profile updated',
@@ -494,7 +451,6 @@
'Ram Cleared': 'Ram Cleared',
'Rapid Search': 'Rapid Search',
'Record': 'Record',
-'record': 'record',
'Record %(id)s created': 'Record %(id)s created',
'Record %(id)s deleted': 'Record %(id)s deleted',
'Record %(id)s read': 'Record %(id)s read',
@@ -502,7 +458,6 @@
'Record Created': 'Record Created',
'Record Deleted': 'Record Deleted',
'record does not exist': 'il record non esiste',
-'record id': 'ID del record',
'Record id': 'Record id',
'Record ID': 'Record ID',
'Record Updated': 'Record Updated',
@@ -513,7 +468,6 @@
'Registration key': 'Registration key',
'Registration needs verification': 'Registration needs verification',
'Registration successful': 'Registration successful',
-'reload': 'reload',
'Reload routes': 'Reload routes',
'Remember me (for 30 days)': 'Remember me (for 30 days)',
'Remove compiled': 'rimozione codice compilato',
@@ -538,7 +492,6 @@
'Revision:': 'Revision:',
'Role': 'Role',
'Roles': 'Roles',
-'Rows in table': 'Righe nella tabella',
'Rows in Table': 'Rows in Table',
'Rows selected': 'Righe selezionate',
'rules are not defined': 'rules are not defined',
@@ -555,7 +508,6 @@
'Screenshot %s': 'Screenshot %s',
'Search': 'Search',
'Select Files to Package': 'Select Files to Package',
-'selected': 'selezionato',
'session': 'session',
'session expired': 'sessions scaduta',
'Session saved correctly': 'Session saved correctly',
@@ -577,22 +529,19 @@
'Start searching': 'Start searching',
'Start wizard': 'start wizard',
'state': 'stato',
-'Static': 'Static',
'static': 'statico',
+'Static': 'Static',
'Static files': 'Files statici',
'Statistics': 'Statistics',
'Step': 'Step',
'step': 'step',
'stop': 'stop',
-'Stylesheet': 'Foglio di stile (stylesheet)',
-'submit': 'invia',
'Submit': 'Submit',
+'submit': 'invia',
'successful': 'successful',
-'Sure you want to delete this object?': 'Vuoi veramente cancellare questo oggetto?',
'switch to : db': 'switch to : db',
'switch to : filesystem': 'switch to : filesystem',
'Tab width (# characters)': 'Tab width (# characters)',
-'table': 'tabella',
'Table': 'Table',
'Temporary': 'Temporary',
'test': 'test',
@@ -600,12 +549,9 @@
'The "query" is a condition like "db.table1.field1==\'value\'". Something like "db.table1.field1==db.table2.field2" results in a SQL JOIN.': 'La richiesta (query) è una condizione come ad esempio "db.tabella1.campo1==\'valore\'". Una condizione come "db.tabella1.campo1==db.tabella2.campo2" produce un "JOIN" SQL.',
'The app exists, was created by wizard, continue to overwrite!': 'The app exists, was created by wizard, continue to overwrite!',
'The app exists, was NOT created by wizard, continue to overwrite!': 'The app exists, was NOT created by wizard, continue to overwrite!',
-'the application logic, each URL path is mapped in one exposed function in the controller': 'logica dell\'applicazione, ogni percorso "URL" corrisponde ad una funzione esposta da un controller',
'The application logic, each URL path is mapped in one exposed function in the controller': 'The application logic, each URL path is mapped in one exposed function in the controller',
-'the data representation, define database tables and sets': 'rappresentazione dei dati, definizione di tabelle di database e di "set" ',
'The data representation, define database tables and sets': 'The data representation, define database tables and sets',
'The presentations layer, views are also known as templates': 'The presentations layer, views are also known as templates',
-'the presentations layer, views are also known as templates': 'Presentazione dell\'applicazione, viste (views, chiamate anche "templates")',
'Theme': 'Theme',
'There are no controllers': 'Non ci sono controller',
'There are no models': 'Non ci sono modelli',
@@ -618,13 +564,11 @@
'There are no views': 'Non ci sono viste ("view")',
'These files are not served, they are only available from within your app': 'These files are not served, they are only available from within your app',
'These files are served without processing, your images go here': 'These files are served without processing, your images go here',
-'these files are served without processing, your images go here': 'questi files vengono serviti così come sono, le immagini vanno qui',
'This code was emailed to you and is required for login.': 'This code was emailed to you and is required for login.',
"This debugger may not work properly if you don't have a threaded webserver or you're using multiple daemon processes.": "This debugger may not work properly if you don't have a threaded webserver or you're using multiple daemon processes.",
'This email already has an account': 'This email already has an account',
'This is an experimental feature and it needs more testing. If you decide to downgrade you do it at your own risk': 'This is an experimental feature and it needs more testing. If you decide to downgrade you do it at your own risk',
'This is an experimental feature and it needs more testing. If you decide to upgrade you do it at your own risk': 'This is an experimental feature and it needs more testing. If you decide to upgrade you do it at your own risk',
-'This is the %(filename)s template': 'Questo è il template %(filename)s',
"This page can commit your changes to an openshift app repo and push them to your cloud instance. This assumes that you've already created the application instance using the web2py skeleton and have that repo somewhere on a filesystem that this web2py instance can access. This functionality requires GitPython installed and on the python path of the runtime that web2py is operating in.": "This page can commit your changes to an openshift app repo and push them to your cloud instance. This assumes that you've already created the application instance using the web2py skeleton and have that repo somewhere on a filesystem that this web2py instance can access. This functionality requires GitPython installed and on the python path of the runtime that web2py is operating in.",
'This page can upload your application to the Google App Engine computing cloud. Mind that you must first create indexes locally and this is done by installing the Google appserver and running the app locally with it once, or there will be errors when selecting records. Attention: deployment may take long time, depending on the network speed. Attention: it will overwrite your app.yaml. DO NOT SUBMIT TWICE.': 'This page can upload your application to the Google App Engine computing cloud. Mind that you must first create indexes locally and this is done by installing the Google appserver and running the app locally with it once, or there will be errors when selecting records. Attention: deployment may take long time, depending on the network speed. Attention: it will overwrite your app.yaml. DO NOT SUBMIT TWICE.',
'this page to see if a breakpoint was hit and debug interaction is required.': 'this page to see if a breakpoint was hit and debug interaction is required.',
@@ -635,7 +579,6 @@
'Ticket Missing': 'Ticket Missing',
'Time in Cache (h:m:s)': 'Time in Cache (h:m:s)',
'Timestamp': 'Timestamp',
-'TM': 'TM',
'to previous version.': 'torna a versione precedente',
'To create a plugin, name a file/folder plugin_[name]': 'Per creare un plugin, chiamare un file o cartella plugin_[nome]',
'To emulate a breakpoint programatically, write:': 'To emulate a breakpoint programatically, write:',
@@ -644,9 +587,7 @@
'Toggle comment': 'Toggle comment',
'Toggle Fullscreen': 'Toggle Fullscreen',
'Traceback': 'Traceback',
-'translation strings for the application': "stringhe di traduzioni per l'applicazione",
'Translation strings for the application': 'Translation strings for the application',
-'try': 'prova',
'try something like': 'prova qualcosa come',
'Try the mobile interface': 'Try the mobile interface',
'try view': 'try view',
@@ -659,8 +600,6 @@
'unable to delete file plugin "%(plugin)s"': 'impossibile rimuovere file di plugin "%(plugin)s"',
'Unable to determine the line number!': 'Unable to determine the line number!',
'Unable to download app because:': 'Impossibile scaricare applicazione perché',
-'Unable to download because': 'Impossibile scaricare perché',
-'Unable to download because:': 'Unable to download because:',
'unable to download layout': 'unable to download layout',
'unable to download plugin: %s': 'unable to download plugin: %s',
'Unable to download the list of plugins': 'Unable to download the list of plugins',
@@ -677,17 +616,13 @@
'Update:': 'Aggiorna:',
'Upgrade': 'Upgrade',
'upgrade now to %s': 'upgrade now to %s',
-'upgrade web2py now': 'upgrade web2py now',
'upload': 'upload',
'Upload': 'Upload',
-'Upload & install packed application': 'Carica ed installa pacchetto con applicazione',
'Upload a package:': 'Upload a package:',
'Upload and install packed application': 'Upload and install packed application',
-'upload application:': 'carica applicazione:',
'upload file:': 'carica file:',
'upload plugin file:': 'carica file di plugin:',
'Use (...)&(...) for AND, (...)|(...) for OR, and ~(...) for NOT to build more complex queries.': 'Per costruire richieste (query) più complesse si usano (...)&(...) come "e" (AND), (...)|(...) come "o" (OR), e ~(...) come negazione (NOT).',
-'Use an url:': 'Use an url:',
'User': 'User',
'User %(id)s is impersonating %(other_id)s': 'User %(id)s is impersonating %(other_id)s',
'User %(id)s Logged-in': 'User %(id)s Logged-in',
@@ -709,12 +644,7 @@
'variables': 'variables',
'Verify Password': 'Verify Password',
'Version': 'Versione',
-'Version %s.%s.%s %s (%s)': 'Version %s.%s.%s %s (%s)',
-'Version %s.%s.%s (%s) %s': 'Version %s.%s.%s (%s) %s',
'Versioning': 'Versioning',
-'versioning': 'sistema di versioni',
-'View': 'Vista',
-'view': 'vista',
'Views': 'Viste',
'views': 'viste',
'Warning!': 'Warning!',
@@ -727,12 +657,9 @@
'web2py downgrade': 'web2py downgrade',
'web2py is up to date': 'web2py è aggiornato',
'web2py online debugger': 'web2py online debugger',
-'web2py Recent Tweets': 'Tweets recenti per web2py',
'web2py upgrade': 'web2py upgrade',
'web2py upgraded; please restart it': 'web2py aggiornato; prego riavviarlo',
'Welcome %(username)s! Click on the link %(link)s to verify your email': 'Welcome %(username)s! Click on the link %(link)s to verify your email',
-'Welcome %s': 'Benvenuto %s',
-'Welcome to web2py': 'Benvenuto su web2py',
'Working...': 'Working...',
'WSGI reference name': 'WSGI reference name',
'YES': 'SI',
diff --git a/applications/admin/languages/ja.py b/applications/admin/languages/ja.py
old mode 100755
new mode 100644
index 497132c9..e1a9b39a
--- a/applications/admin/languages/ja.py
+++ b/applications/admin/languages/ja.py
@@ -11,7 +11,6 @@
'%s students registered': '%s students registered',
'%Y-%m-%d': '%Y-%m-%d',
'%Y-%m-%d %H:%M:%S': '%Y-%m-%d %H:%M:%S',
-'(requires internet access)': '(インターネットアクセスが必要)',
'(requires internet access, experimental)': '(requires internet access, experimental)',
'(something like "it-it")': '(例: "it-it")',
'(version %s)': '(version %s)',
@@ -78,7 +77,6 @@
'ATTENTION: you cannot edit the running application!': '注意: 実行中のアプリケーションは編集できません!',
'Authentication code': 'Authentication code',
'Autocomplete Python Code': 'Autocomplete Python Code',
-'Available databases and tables': '利用可能なデータベースとテーブル一覧',
'Available Databases and Tables': 'Available Databases and Tables',
'back': '戻る',
'Back to the plugins list': 'Back to the plugins list',
@@ -209,7 +207,6 @@
'Edit current record': 'Edit current record',
'edit views:': 'ビューの編集:',
'Editing %s': 'Editing %s',
-'Editing file "%s"': '"%s"ファイルを編集中',
'Editing Language file': 'Editing Language file',
'Editing Plural Forms File': 'Editing Plural Forms File',
'Editor': 'Editor',
@@ -262,7 +259,6 @@
'GAE Output': 'GAE Output',
'GAE Password': 'GAE Password',
'Generate': 'アプリ生成',
-'Get from URL:': 'URLから取得:',
'Git Pull': 'Git Pull',
'Git Push': 'Git Push',
'Globals##debug': 'Globals##debug',
@@ -270,8 +266,8 @@
'Google App Engine Deployment Interface': 'Google App Engine Deployment Interface',
'Google Application Id': 'Google Application Id',
'Goto': 'Goto',
-'graph model': 'graph model',
'Graph Model': 'Graph Model',
+'graph model': 'graph model',
'Group %(group_id)s created': 'Group %(group_id)s created',
'Group %(group_id)s deleted': 'Group %(group_id)s deleted',
'Group ID': 'Group ID',
@@ -294,7 +290,6 @@
'includes': 'インクルード',
'Incorrect code. {0} more attempt(s) remaining.': 'Incorrect code. {0} more attempt(s) remaining.',
'Indent with tabs': 'Indent with tabs',
-'index': 'index',
'inspect attributes': '引数の検査',
'Install': 'インストール',
'Installation of %(plugin)s for %(app)s': 'Installation of %(plugin)s for %(app)s',
@@ -342,7 +337,6 @@
'lists by exception': 'lists by exception',
'lists by ticket': 'lists by ticket',
'Loading...': 'Loading...',
-'loading...': 'ロードしています...',
'Local Apps': 'Local Apps',
'locals': 'ローカル',
'Locals##debug': 'Locals##debug',
@@ -398,7 +392,6 @@
'Object or table name': 'Object or table name',
'Old password': 'Old password',
"On production, you'll have to configure your webserver to use one process and multiple threads to use this debugger.": "On production, you'll have to configure your webserver to use one process and multiple threads to use this debugger.",
-'online designer': 'オンラインデザイナー',
'Open new app in new window': 'Open new app in new window',
'OpenShift Deployment Interface': 'OpenShift Deployment Interface',
'OpenShift Output': 'OpenShift Output',
@@ -536,15 +529,15 @@
'Start searching': 'Start searching',
'Start wizard': 'ウィザードの開始',
'state': 'state',
-'Static': 'Static',
'static': '静的ファイル',
+'Static': 'Static',
'Static files': '静的ファイル',
'Statistics': 'Statistics',
'Step': 'ステップ',
'step': 'step',
'stop': 'stop',
-'submit': 'submit',
'Submit': 'Submit',
+'submit': 'submit',
'successful': 'successful',
'switch to : db': 'switch to : db',
'switch to : filesystem': 'switch to : filesystem',
@@ -607,7 +600,6 @@
'unable to delete file plugin "%(plugin)s"': 'unable to delete file plugin "%(plugin)s"',
'Unable to determine the line number!': 'Unable to determine the line number!',
'Unable to download app because:': 'Unable to download app because:',
-'Unable to download because:': '以下の理由でダウンロードできません:',
'unable to download layout': 'unable to download layout',
'unable to download plugin: %s': 'unable to download plugin: %s',
'Unable to download the list of plugins': 'Unable to download the list of plugins',
@@ -631,7 +623,6 @@
'upload file:': 'ファイルをアップロード:',
'upload plugin file:': 'プラグインファイルをアップロード:',
'Use (...)&(...) for AND, (...)|(...) for OR, and ~(...) for NOT to build more complex queries.': 'Use (...)&(...) for AND, (...)|(...) for OR, and ~(...) for NOT to build more complex queries.',
-'user': 'ユーザー',
'User': 'User',
'User %(id)s is impersonating %(other_id)s': 'User %(id)s is impersonating %(other_id)s',
'User %(id)s Logged-in': 'User %(id)s Logged-in',
@@ -666,7 +657,6 @@
'web2py downgrade': 'web2py downgrade',
'web2py is up to date': 'web2pyは最新です',
'web2py online debugger': 'web2py online debugger',
-'web2py Recent Tweets': '最近のweb2pyTweets',
'web2py upgrade': 'web2py upgrade',
'web2py upgraded; please restart it': 'web2py upgraded; please restart it',
'Welcome %(username)s! Click on the link %(link)s to verify your email': 'Welcome %(username)s! Click on the link %(link)s to verify your email',
diff --git a/applications/admin/languages/my-mm.py b/applications/admin/languages/my-mm.py
old mode 100755
new mode 100644
index 70f7e25e..96a36405
--- a/applications/admin/languages/my-mm.py
+++ b/applications/admin/languages/my-mm.py
@@ -36,7 +36,6 @@
'About': 'အကြောင်း',
'About application': 'About application',
'Accept Terms': 'Accept Terms',
-'Access Control': 'အသုံးပြု ခြင်းဆိုင်ရာ ထိန်းချုပ်ရန်',
'Add breakpoint': 'Add breakpoint',
'Additional code for your application': 'Additional code for your application',
'Admin design page': 'Admin design page',
@@ -47,10 +46,8 @@
'Admin is disabled because insecure channel': 'Admin is disabled because insecure channel',
'Admin language': 'Admin language',
'Admin versioning page': 'Admin versioning page',
-'Administrative Interface': 'စီမံခန့်ခွဲရာ အင်တာဖေ့စ်',
'administrative interface': 'administrative interface',
'Administrator Password:': 'Administrator Password:',
-'Ajax Recipes': 'Ajax Recipes',
'and rename it:': 'and rename it:',
'App does not exist or you are not authorized': 'App does not exist or you are not authorized',
'appadmin': 'appadmin',
@@ -91,7 +88,6 @@
'breakpoints': 'breakpoints',
'Bulk Register': 'Bulk Register',
'Bulk Student Registration': 'Bulk Student Registration',
-'Buy this book': 'ဒီစာအုပ်ကို ဝယ်ပါ',
'Cache': 'Cache',
'cache': 'cache',
'Cache Cleared': 'Cache Cleared',
@@ -129,24 +125,19 @@
'Commit': 'Commit',
'Commit form': 'Commit form',
'Committed files': 'Committed files',
-'Community': 'အသိုင်းအဝိုင်း',
'Compile': 'Compile',
'Compile (all or nothing)': 'Compile (all or nothing)',
'Compile (skip failed views)': 'Compile (skip failed views)',
'compiled application removed': 'compiled application removed',
-'Components and Plugins': 'Components and Plugins',
'Condition': 'Condition',
'continue': 'continue',
-'Controller': 'ကွန်ထရိုလာ',
'Controllers': 'ကွန်ထရိုလာများ',
'controllers': 'controllers',
-'Copyright': 'မူပိုင်ခွင့်',
'Count': 'Count',
'Create': 'ဖန်တီးရန်',
'create file with filename:': 'create file with filename:',
'Create/Upload': 'Create/Upload',
'created by': 'ဖန်းတီးသူ',
-'Created By': 'ပြုလုပ်ဖန်တီးသူ',
'Created by:': 'Created by:',
'Created On': 'ပြုလုပ်ဖန်တီးသည့်အချိန်',
'Created on:': 'Created on:',
@@ -164,7 +155,6 @@
'Database Administration (appadmin)': 'ဒေတာဘေစ့် စီမံခန့်ခွဲခြင်း (appadmin)',
'Date and Time': 'Date and Time',
'db': 'db',
-'DB Model': 'DB Model',
'Debug': 'အမှားရှာရန်',
'defines tables': 'defines tables',
'Delete': 'Delete',
@@ -182,7 +172,6 @@
'Deploy to PythonAnywhere': 'Deploy to PythonAnywhere',
'Deployment form': 'Deployment form',
'Deployment Interface': 'Deployment Interface',
-'Deployment Recipes': 'Deployment Recipes',
'Description': 'ဖော်ပြချက်',
'Description:': 'Description:',
'design': 'design',
@@ -202,11 +191,8 @@
'DO NOT use the "Pack compiled" feature.': 'DO NOT use the "Pack compiled" feature.',
'docs': 'docs',
'Docs': 'Docs',
-'Documentation': 'စာရွက်စာတမ်း အထောက်အကူများ',
-"Don't know what to do?": 'ဘာလုပ်ရမည်မသိ ဖြစ်နေပါသလား။',
'done!': 'လုပ်ငန်း ဆောင်ရွက်ပြီးပြီ!',
'Downgrade': 'Downgrade',
-'Download': 'Download',
'Download .w2p': 'Download .w2p',
'Download as .exe': 'Download as .exe',
'download layouts': 'download layouts',
@@ -225,14 +211,12 @@
'Editing Plural Forms File': 'Editing Plural Forms File',
'Editor': 'Editor',
'Email Address': 'Email Address',
-'Email and SMS': 'အီးမေးလ်နှင့် SMS',
'Email sent': 'Email sent',
'Email verification': 'Email verification',
'Email verified': 'Email verified',
'Enable': 'ဖွင့်ရန်',
'Enable Close-Tag': 'Enable Close-Tag',
'Enable Code Folding': 'Enable Code Folding',
-'enter an integer between %(min)g and %(max)g': 'enter an integer between %(min)g and %(max)g',
'Error': 'Error',
'Error logs for "%(app)s"': 'Error logs for "%(app)s"',
'Error snapshot': 'Error snapshot',
@@ -250,7 +234,6 @@
'extends': 'extends',
'failed to compile file because:': 'failed to compile file because:',
'failed to reload module because:': 'failed to reload module because:',
-'FAQ': 'ဖြစ်လေ့ရှိသော ပြဿနာများ',
'File': 'File',
'file "%(filename)s" created': 'file "%(filename)s" created',
'file "%(filename)s" deleted': 'file "%(filename)s" deleted',
@@ -269,9 +252,7 @@
'Find Previous': 'Find Previous',
'First name': 'အမည်၏ ပထမဆုံး စာလုံး',
'Form has errors': 'Form has errors',
-'Forms and Validators': 'Forms and Validators',
'Frames': 'Frames',
-'Free Applications': 'အခမဲ့ Applications',
'Function disabled': 'Function disabled',
'Functions with no doctests will result in [passed] tests.': 'Functions with no doctests will result in [passed] tests.',
'GAE Email': 'GAE Email',
@@ -285,14 +266,12 @@
'Google App Engine Deployment Interface': 'Google App Engine Deployment Interface',
'Google Application Id': 'Google Application Id',
'Goto': 'Goto',
-'graph model': 'graph model',
'Graph Model': 'Graph Model',
+'graph model': 'graph model',
'Group %(group_id)s created': 'Group %(group_id)s created',
'Group %(group_id)s deleted': 'Group %(group_id)s deleted',
'Group ID': 'Group ID',
'Group uniquely assigned to user %(id)s': 'Group uniquely assigned to user %(id)s',
-'Groups': 'အဖွဲ့များ',
-'Hello World': 'မင်္ဂလာပါ ကမ္ဘာကြီး။',
'Help': 'အကူအညီ',
'here': 'here',
'Hide/Show Translated strings': 'Hide/Show Translated strings',
@@ -300,7 +279,6 @@
'Hits': 'Hits',
'Home': 'မူလသို့',
'honored only if the expression evaluates to true': 'honored only if the expression evaluates to true',
-'How did you get here?': 'သင် ဘယ်လို ရောက်လာခဲ့သလဲ။',
'If start the downgrade, be patient, it may take a while to rollback': 'If start the downgrade, be patient, it may take a while to rollback',
'If start the upgrade, be patient, it may take a while to download': 'If start the upgrade, be patient, it may take a while to download',
'If the report above contains a ticket number it indicates a failure in executing the controller, before any attempt to execute the doctests. This is usually due to an indentation error or an error outside function code.\n\t\tA green title indicates that all tests (if defined) passed. In this case test results are not shown.': 'If the report above contains a ticket number it indicates a failure in executing the controller, before any attempt to execute the doctests. This is usually due to an indentation error or an error outside function code.\n\t\tA green title indicates that all tests (if defined) passed. In this case test results are not shown.',
@@ -322,7 +300,6 @@
'internal error': 'internal error',
'internal error: %s': 'internal error: %s',
'Internal State': 'Internal State',
-'Introduction': 'မိတ်ဆက်',
'Invalid action': 'Invalid action',
'Invalid application name': 'Invalid application name',
'invalid circular reference': 'invalid circular reference',
@@ -342,12 +319,10 @@
'Invalid user': 'Invalid user',
'Invalid username': 'Invalid username',
'Invitation to join %(site)s': 'Invitation to join %(site)s',
-'Is Active': 'Is Active',
'Key': 'Key',
'Key verified': 'Key verified',
'Keyboard shortcuts': 'Keyboard shortcuts',
'kill process': 'kill process',
-'Language': 'ဘာသာစကား',
'language file "%(filename)s" created/updated': 'language file "%(filename)s" created/updated',
'Language files (static strings) updated': 'Language files (static strings) updated',
'languages': 'ဘာသာစကားများ',
@@ -355,16 +330,12 @@
'Last name': 'မျိုးနွယ်အမည်',
'Last Revision': 'Last Revision',
'Last saved on:': 'Last saved on:',
-'Layout': 'အပြင်အဆင်',
-'Layout Plugins': 'Layout Plugins',
-'Layouts': 'အပြင်အဆင်များ',
'License for': 'License for',
'License:': 'License:',
'Line Nr': 'Line Nr',
'Line number': 'Line number',
'lists by exception': 'lists by exception',
'lists by ticket': 'lists by ticket',
-'Live Chat': 'တိုက်ရိုက် ဆက်သွယ် ပြောကြားရန်',
'Loading...': 'Loading...',
'Local Apps': 'Local Apps',
'locals': 'locals',
@@ -378,9 +349,7 @@
'Login to the Administrative Interface': 'Login to the Administrative Interface',
'Login/Register': 'Login/Register',
'Logout': 'ထွက်ရန်',
-'Lost Password': 'စကားဝှက် မသိတော့ပါ',
'lost password': 'lost password',
-'Lost password?': 'စကားဝှက် မသိတော့ဘူးလား။',
'Main Menu': 'Main Menu',
'Manage': 'စီမံခန့်ခွဲရန်',
'Manage %(action)s': '%(action)s ကို စီမံရန်',
@@ -389,16 +358,13 @@
'Manage Cache': 'Manage Cache',
'Manage Students': 'Manage Students',
'Memberships': 'အသင်းဝင်များ',
-'Menu Model': 'Menu Model',
'merge': 'merge',
'Models': 'Models',
'models': 'models',
-'Modified By': 'ပြင်ဆင်မွမ်းမံသူ',
'Modified On': 'ပြင်ဆင်မွမ်းမံသည့် အချိန်',
'Modules': 'Modules',
'modules': 'modules',
'Multi User Mode': 'Multi User Mode',
-'My Sites': 'ကျွန်ုပ်၏ Site များ',
'Name': 'အမည်',
'new application "%s" created': 'new application "%s" created',
'new application "%s" imported': 'new application "%s" imported',
@@ -426,7 +392,6 @@
'Object or table name': 'Object or table name',
'Old password': 'Old password',
"On production, you'll have to configure your webserver to use one process and multiple threads to use this debugger.": "On production, you'll have to configure your webserver to use one process and multiple threads to use this debugger.",
-'Online examples': 'အွန်လိုင်း နမူနာများ',
'Open new app in new window': 'Open new app in new window',
'OpenShift Deployment Interface': 'OpenShift Deployment Interface',
'OpenShift Output': 'OpenShift Output',
@@ -435,8 +400,6 @@
'or import from csv file': 'or import from csv file',
'Origin': 'မူလ အစ',
'Original/Translation': 'Original/Translation',
-'Other Plugins': 'အခြား Plugins',
-'Other Recipes': 'အခြား Recipes',
'Overview': 'အပေါ်ယံရှုမြင်ခြင်း',
'Overwrite installed app': 'Overwrite installed app',
'Pack all': 'အားလုံးကို ထုပ်ပိုးရန်',
@@ -467,7 +430,6 @@
'Plural Form #%s': 'Plural Form #%s',
'Plural-Forms:': 'Plural-Forms:',
'Powered by': 'အားဖြည့်စွမ်းအားပေးသူ',
-'Preface': 'နိဒါန်း',
'Preferences saved correctly': 'Preferences saved correctly',
'Preferences saved on session only': 'Preferences saved on session only',
'previous %s rows': 'previous %s rows',
@@ -481,16 +443,13 @@
'Push': 'Push',
'Push failed, there are unmerged entries in the cache. Resolve merge issues manually and try again.': 'Push failed, there are unmerged entries in the cache. Resolve merge issues manually and try again.',
'pygraphviz library not found': 'pygraphviz library ကို မတွေ့ပါ',
-'Python': 'Python',
'PythonAnywhere Apps': 'PythonAnywhere Apps',
'PythonAnywhere Password': 'PythonAnywhere Password',
'Query:': 'Query:',
-'Quick Examples': 'အမြန် အသုံးပြုနိုင်သော နမူနာများ',
'RAM': 'RAM',
'RAM Cache Keys': 'RAM Cache Keys',
'Ram Cleared': 'Ram ရှင်းလင်းပြီးပြီ',
'Rapid Search': 'Rapid Search',
-'Recipes': 'Recipes',
'Record': 'မှတ်တမ်း',
'Record %(id)s created': 'Record %(id)s created',
'Record %(id)s deleted': 'Record %(id)s deleted',
@@ -499,12 +458,11 @@
'Record Created': 'Record Created',
'Record Deleted': 'Record Deleted',
'record does not exist': 'မှတ်တမ်း မရှိပါ',
-'Record ID': 'Record ID',
'Record id': 'Record id',
+'Record ID': 'Record ID',
'Record Updated': 'Record Updated',
'refresh': 'refresh',
'register': 'register',
-'Register': 'မှတ်ပုံတင်ရန်',
'Registration identifier': 'Registration identifier',
'Registration is pending approval': 'Registration is pending approval',
'Registration key': 'Registration key',
@@ -550,8 +508,6 @@
'Screenshot %s': 'Screenshot %s',
'Search': 'Search',
'Select Files to Package': 'Select Files to Package',
-'Semantic': 'Semantic',
-'Services': 'Services',
'session': 'session',
'session expired': 'session expired',
'Session saved correctly': 'Session saved correctly',
@@ -573,18 +529,16 @@
'Start searching': 'Start searching',
'Start wizard': 'Start wizard',
'state': 'state',
-'Static': 'Static',
'static': 'static',
+'Static': 'Static',
'Static files': 'Static files',
'Statistics': 'ကိန်းဂဏန်း အချက်အလက်များ',
'Step': 'Step',
'step': 'step',
'stop': 'stop',
-'Stylesheet': 'Stylesheet',
-'submit': 'ပြုလုပ်ပါ',
'Submit': 'Submit',
+'submit': 'ပြုလုပ်ပါ',
'successful': 'successful',
-'Support': 'အထောက်အပံ့',
'switch to : db': 'switch to : db',
'switch to : filesystem': 'switch to : filesystem',
'Tab width (# characters)': 'Tab width (# characters)',
@@ -596,11 +550,8 @@
'The app exists, was created by wizard, continue to overwrite!': 'The app exists, was created by wizard, continue to overwrite!',
'The app exists, was NOT created by wizard, continue to overwrite!': 'The app exists, was NOT created by wizard, continue to overwrite!',
'The application logic, each URL path is mapped in one exposed function in the controller': 'The application logic, each URL path is mapped in one exposed function in the controller',
-'The Core': 'The Core',
'The data representation, define database tables and sets': 'The data representation, define database tables and sets',
-'The output of the file is a dictionary that was rendered by the view %s': 'The output of the file is a dictionary that was rendered by the view %s',
'The presentations layer, views are also known as templates': 'The presentations layer, views are also known as templates',
-'The Views': 'The Views',
'Theme': 'Theme',
'There are no controllers': 'There are no controllers',
'There are no models': 'There are no models',
@@ -613,7 +564,6 @@
'There are no views': 'There are no views',
'These files are not served, they are only available from within your app': 'These files are not served, they are only available from within your app',
'These files are served without processing, your images go here': 'These files are served without processing, your images go here',
-'This App': 'ဒီ App',
'This code was emailed to you and is required for login.': 'This code was emailed to you and is required for login.',
"This debugger may not work properly if you don't have a threaded webserver or you're using multiple daemon processes.": "This debugger may not work properly if you don't have a threaded webserver or you're using multiple daemon processes.",
'This email already has an account': 'ဒီအီးမေးလ်တွင် အကောင့် ရှိပြီး ဖြစ်ပါသည်',
@@ -641,7 +591,6 @@
'try something like': 'try something like',
'Try the mobile interface': 'Try the mobile interface',
'try view': 'try view',
-'Twitter': 'Twitter',
'Two-step Login Authentication Code': 'Two-step Login Authentication Code',
'Type PDB debugger command in here and hit Return (Enter) to execute it.': 'Type PDB debugger command in here and hit Return (Enter) to execute it.',
'Type some Python code in here and hit Return (Enter) to execute it.': 'Type some Python code in here and hit Return (Enter) to execute it.',
@@ -696,8 +645,6 @@
'Verify Password': 'စကားဝှက်ကို အတည်ပြုပါ',
'Version': 'Version',
'Versioning': 'Versioning',
-'Videos': 'ဗွီဒီယိုများ',
-'View': 'ဗျူး',
'Views': 'ဗျူးများ',
'views': 'views',
'Warning!': 'Warning!',
@@ -712,29 +659,20 @@
'web2py online debugger': 'web2py online debugger',
'web2py upgrade': 'web2py upgrade',
'web2py upgraded; please restart it': 'web2py upgraded; please restart it',
-'Welcome': 'ကြိုဆိုပါ၏',
'Welcome %(username)s! Click on the link %(link)s to verify your email': 'Welcome %(username)s! Click on the link %(link)s to verify your email',
-'Welcome to web2py!': 'web2py မှ ကြိုဆိုပါသည်။',
-'Which called the function %s located in the file %s': 'Which called the function %s located in the file %s',
'Working...': 'ဆောင်ရွက်နေပါသည် ။ ။ ။',
'WSGI reference name': 'WSGI reference name',
'YES': 'YES',
'Yes': 'Yes',
-'You are successfully running web2py': 'သင်သည် web2py ကို အောင်မြင်စွာ လည်ပတ်မောင်းနှင်စေပါသည်။',
'You can also set and remove breakpoint in the edit window, using the Toggle Breakpoint button': 'You can also set and remove breakpoint in the edit window, using the Toggle Breakpoint button',
'You can inspect variables using the console below': 'You can inspect variables using the console below',
-'You can modify this application and adapt it to your needs': 'သင် ဒီ application ကို ပြုပြင်မွမ်းမံနိုင်ပါသည်။ ထို့အပြင် သင့်လိုအပ်ချက်များနှင့် ကိုက်ညီစေရန် ပြုလုပ်နိုင်ပါသည်။',
'You have been invited to join %(site)s, click %(link)s to complete the process': 'You have been invited to join %(site)s, click %(link)s to complete the process',
'You have one more login attempt before you are locked out': 'You have one more login attempt before you are locked out',
'You need to set up and reach a': 'You need to set up and reach a',
'You only need these if you have already registered': 'You only need these if you have already registered',
-'You visited the url %s': 'သင် လည်ပတ်ခဲ့သော URL %s',
'Your application will be blocked until you click an action button (next, step, continue, etc.)': 'Your application will be blocked until you click an action button (next, step, continue, etc.)',
'Your password is: %(password)s': 'Your password is: %(password)s',
'Your temporary login code is {0}': 'Your temporary login code is {0}',
'Your username is: %(username)s': 'Your username is: %(username)s',
'Your username was emailed to you': 'Your username was emailed to you',
-'စကားဝှက် အသစ် တောင်းဆိုရန်': 'စကားဝှက် အသစ် တောင်းဆိုရန်',
-'မှတ်ပုံတင်ရန်': 'မှတ်ပုံတင်ရန်',
-'ဝင်ရောက်အသုံးပြုရန်': 'ဝင်ရောက်အသုံးပြုရန်',
}
diff --git a/applications/admin/languages/nl.py b/applications/admin/languages/nl.py
old mode 100755
new mode 100644
index e24b6d2e..42e5e601
--- a/applications/admin/languages/nl.py
+++ b/applications/admin/languages/nl.py
@@ -4,16 +4,13 @@
'!langname!': 'Nederlands',
'"update" is an optional expression like "field1=\'newvalue\'". You cannot update or delete the results of a JOIN': '"update" is een optionele expressie zoals "veld1=\'nieuwewaarde\'". Je kan de resultaten van een JOIN niet updaten of verwijderen.',
'"User Exception" debug mode. ': '"Gebruiker Exceptie" debug mode.',
-'"User Exception" debug mode. An error ticket could be issued!': '"Gebruiker Exceptie" debug mode. Een error ticket kan worden aangemaakt!',
'%s': '%s',
'%s %%{row} deleted': '%s %%{row} verwijderd',
'%s %%{row} updated': '%s %%{row} geupdate',
-'%s Recent Tweets': '%s Recente Tweets',
'%s selected': '%s selected',
'%s students registered': '%s studenten geregistreerd',
'%Y-%m-%d': '%Y/%m/%d',
'%Y-%m-%d %H:%M:%S': '%Y/%m/%d %H:%M:%S',
-'(requires internet access)': '(vereist internettoegang)',
'(requires internet access, experimental)': '(requires internet access, experimental)',
'(something like "it-it")': '(zoiets als "it-it")',
'(version %s)': '(version %s)',
@@ -37,7 +34,6 @@
'A new password was emailed to you': 'A new password was emailed to you',
'Abort': 'Afbreken',
'About': 'Over',
-'about': 'over',
'About application': 'Over applicatie',
'Accept Terms': 'Accept Terms',
'Add breakpoint': 'Voeg breakpoint toe',
@@ -54,12 +50,10 @@
'Administrator Password:': 'Administrator Wachtwoord:',
'and rename it:': 'en hernoem het:',
'App does not exist or you are not authorized': 'App does not exist or you are not authorized',
-'App does not exist or your are not authorized': 'App bestaat niet of je bent niet geautoriseerd',
'appadmin': 'appadmin',
'appadmin is disabled because insecure channel': 'appadmin is uitgezet vanwege een onveilig kanaal',
'Application': 'Application',
'application "%s" uninstalled': 'applicatie "%s" gedeïnstalleerd',
-'application %(appname)s installed with md5sum: %(digest)s': 'applicatie %(appname)s geïnstalleerd met md5sum: %(digest)s',
'Application cannot be generated in demo mode': 'Applicatie kan niet gegenereerd worden in demo-mode',
'application compiled': 'applicatie gecompileerd',
'Application exists already': 'Application exists already',
@@ -83,12 +77,10 @@
'ATTENTION: you cannot edit the running application!': 'LET OP: je kan de draaiende applicatie niet bewerken!',
'Authentication code': 'Authentication code',
'Autocomplete Python Code': 'Autocomplete Python Code',
-'Available databases and tables': 'Beschikbare databases en tabellen',
'Available Databases and Tables': 'Available Databases and Tables',
'back': 'terug',
'Back to the plugins list': 'Back to the plugins list',
'Back to wizard': 'Back to wizard',
-'bad_resource': 'slechte_resource',
'Basics': 'Basics',
'Begin': 'Begin',
'breakpoint': 'breakpoint',
@@ -138,16 +130,12 @@
'Compile (skip failed views)': 'Compile (skip failed views)',
'compiled application removed': 'Gecompileerde applicatie verwijderd',
'Condition': 'Conditie',
-'contact_admin': 'contact_admin',
'continue': 'ga door',
'Controllers': 'Controllers',
'controllers': 'controllers',
'Count': 'Count',
'Create': 'Maak',
-'create': 'maak',
'create file with filename:': 'maak bestand met naam:',
-'create plural-form': 'maak meervoudsvorm',
-'Create rules': 'Maak regels',
'Create/Upload': 'Create/Upload',
'created by': 'gemaakt door:',
'Created by:': 'Created by:',
@@ -161,9 +149,7 @@
'currently saved or': 'op het moment opgeslagen of',
'data uploaded': 'data geupload',
'Database': 'Database',
-'database': 'database',
'Database %s select': 'Database %s select',
-'database %s select': 'database %s select',
'Database administration': 'Database administration',
'database administration': 'database administratie',
'Database Administration (appadmin)': 'Database Administration (appadmin)',
@@ -217,12 +203,10 @@
'Edit': 'Bewerk',
'edit all': 'bewerk alles',
'Edit application': 'Bewerk applicatie',
-'edit controller': 'bewerk controller',
'edit controller:': 'edit controller:',
'Edit current record': 'Bewerk huidige record',
'edit views:': 'bewerk views:',
'Editing %s': 'Editing %s',
-'Editing file "%s"': 'Bewerk bestand "%s"',
'Editing Language file': 'Taalbestand aan het bewerken',
'Editing Plural Forms File': 'Meervoudsvormenbestand aan het bewerken',
'Editor': 'Editor',
@@ -233,7 +217,6 @@
'Enable': 'Zet aan',
'Enable Close-Tag': 'Enable Close-Tag',
'Enable Code Folding': 'Enable Code Folding',
-'enter a value': 'geef een waarde',
'Error': 'Error',
'Error logs for "%(app)s"': 'Error logs voor "%(app)s"',
'Error snapshot': 'Error snapshot',
@@ -243,7 +226,6 @@
'Exception %s': 'Exceptie %s',
'Exception instance attributes': 'Exceptie instantie attributen',
'Exit Fullscreen': 'Exit Fullscreen',
-'Expand Abbreviation': 'Klap Afkorting uit',
'Expand Abbreviation (html files only)': 'Expand Abbreviation (html files only)',
'export as csv file': 'exporteer als csv-bestand',
'Exports:': 'Exports:',
@@ -252,7 +234,6 @@
'extends': 'extends',
'failed to compile file because:': 'niet gelukt om bestand te compileren omdat:',
'failed to reload module because:': 'niet gelukt om module te herladen omdat:',
-'faq': 'faq',
'File': 'Bestand',
'file "%(filename)s" created': 'bestand "%(filename)s" gemaakt',
'file "%(filename)s" deleted': 'bestand "%(filename)s" verwijderd',
@@ -278,17 +259,15 @@
'GAE Output': 'GAE Output',
'GAE Password': 'GAE Password',
'Generate': 'Genereer',
-'Get from URL:': 'Krijg van URL:',
'Git Pull': 'Git Pull',
'Git Push': 'Git Push',
'Globals##debug': 'Globals##debug',
-'Go to Matching Pair': 'Ga naar Matchende Paar',
'go!': 'ga!',
'Google App Engine Deployment Interface': 'Google App Engine Deployment Interface',
'Google Application Id': 'Google Application Id',
'Goto': 'Ga naar',
-'graph model': 'graph model',
'Graph Model': 'Graph Model',
+'graph model': 'graph model',
'Group %(group_id)s created': 'Group %(group_id)s created',
'Group %(group_id)s deleted': 'Group %(group_id)s deleted',
'Group ID': 'Group ID',
@@ -311,9 +290,6 @@
'includes': 'includes',
'Incorrect code. {0} more attempt(s) remaining.': 'Incorrect code. {0} more attempt(s) remaining.',
'Indent with tabs': 'Indent with tabs',
-'index': 'index',
-'insert new': 'insert new',
-'insert new %s': 'insert new %s',
'inspect attributes': 'inspecteer attributen',
'Install': 'Install',
'Installation of %(plugin)s for %(app)s': 'Installation of %(plugin)s for %(app)s',
@@ -326,7 +302,6 @@
'Internal State': 'Interne State',
'Invalid action': 'Ongeldige actie',
'Invalid application name': 'Invalid application name',
-'invalid circual reference': 'ongeldige cirkelreferentie',
'invalid circular reference': 'Ongeldige circulaire referentie',
'Invalid email': 'Invalid email',
'Invalid git repository specified.': 'Invalid git repository specified.',
@@ -338,7 +313,6 @@
'Invalid Query': 'Ongeldige Query',
'invalid request': 'ongeldige request',
'Invalid request': 'Invalid request',
-'invalid request ': 'ongeldige request',
'Invalid reset password': 'Invalid reset password',
'invalid table names (auth_* tables already defined)': 'ongeldige tabelnamen (auth_* tabellen zijn al gedefinieerd)',
'invalid ticket': 'ongeldige ticket',
@@ -346,8 +320,6 @@
'Invalid username': 'Invalid username',
'Invitation to join %(site)s': 'Invitation to join %(site)s',
'Key': 'Key',
-'Key bindings': 'Key bindings',
-'Key bindings for ZenCoding Plugin': 'Key bindings voor ZenCoding Plugin',
'Key verified': 'Key verified',
'Keyboard shortcuts': 'Keyboard shortcuts',
'kill process': 'kill proces',
@@ -362,11 +334,9 @@
'License:': 'License:',
'Line Nr': 'Line Nr',
'Line number': 'Regelnummer',
-'LineNo': 'RegelNr',
'lists by exception': 'lists by exception',
'lists by ticket': 'lists by ticket',
'Loading...': 'Loading...',
-'loading...': 'laden...',
'Local Apps': 'Local Apps',
'locals': 'locals',
'Locals##debug': 'Locals##debug',
@@ -374,7 +344,6 @@
'Logged in': 'Logged in',
'Logged out': 'Logged out',
'Login': 'Login',
-'login': 'Login',
'Login disabled by administrator': 'Login disabled by administrator',
'Login successful': 'Login successful',
'Login to the Administrative Interface': 'Login op de Administratieve Interface',
@@ -388,21 +357,14 @@
'Manage Admin Users/Students': 'Beheer Admin Gebruikers/Studenten',
'Manage Cache': 'Manage Cache',
'Manage Students': 'Beheer Studenten',
-'Match Pair': 'Match Pair',
'Memberships': 'Memberships',
'merge': 'samenvoegen',
-'Merge Lines': 'Voeg Regels Samen',
-'Minimum length is %s': 'Minimale lengte is %s',
'Models': 'Modellen',
'models': 'modellen',
'Modified On': 'Verandert Op',
'Modules': 'Modules',
'modules': 'modules',
'Multi User Mode': 'Multi User Mode',
-'Must include at least %s %s': 'Moet ten minste bevatten %s %s',
-'Must include at least %s lowercase': 'Moet ten minste bevatten %s kleine letter',
-'Must include at least %s of the following : %s': 'Moet ten minste bevatten %s van het volgende : %s',
-'Must include at least %s uppercase': 'Moet ten minste bevatten %s hoofdletter',
'Name': 'Name',
'new application "%s" created': 'nieuwe applicatie "%s" gemaakt',
'new application "%s" imported': 'new application "%s" imported',
@@ -416,8 +378,6 @@
'New simple application': 'Nieuwe eenvoudige applicatie',
'next': 'volgende',
'next %s rows': 'next %s rows',
-'next 100 rows': 'volgende 100 rijen',
-'Next Edit Point': 'Volgende Bewerkpunt',
'NO': 'NEE',
'no changes': 'no changes',
'No databases in this application': 'Geen databases in deze applicatie',
@@ -425,7 +385,6 @@
'no match': 'geen match',
'no package selected': 'no package selected',
'no permission to uninstall "%s"': 'geen permissie om "%s" te deïnstalleren',
-'No ticket_storage.txt found under /private folder': 'Geen ticket_storage.txt gevonden onder /private directory',
'Node:': 'Node:',
'Not Authorized': 'Geen Rechten',
'Not supported': 'Not supported',
@@ -433,7 +392,6 @@
'Object or table name': 'Object or table name',
'Old password': 'Old password',
"On production, you'll have to configure your webserver to use one process and multiple threads to use this debugger.": 'Om op productie deze debugger te gebruiken, moet je webserver configureren om een proces en meerdere threads te gebruiken.',
-'online designer': 'online designer',
'Open new app in new window': 'Open new app in new window',
'OpenShift Deployment Interface': 'OpenShift Deployment Interface',
'OpenShift Output': 'OpenShift Output',
@@ -448,7 +406,6 @@
'Pack compiled': 'Pack compiled',
'Pack custom': 'Pack custom',
'pack plugin': 'pack plugin',
-'PAM authenticated user, cannot change password here': 'PAM geauthenticeerde gebruiker, kan wachtwoord hier niet wijzigen',
'Password': 'Password',
'password changed': 'wachtwoord gewijzigd',
'Password changed': 'Password changed',
@@ -458,14 +415,12 @@
'Past revisions': 'Past revisions',
'Path to appcfg.py': 'Pad naar appcfg.py',
'Path to local openshift repo root.': 'Pad naar lokale openshift repo root.',
-'peek': 'gluur',
'Peeking at file': 'Gluren naar bestand',
'Permission': 'Permission',
'Permissions': 'Permissions',
'Please': 'Alstublieft',
'please input your password again': 'please input your password again',
'Please wait, giving pythonanywhere a moment...': 'Please wait, giving pythonanywhere a moment...',
-'plugin': 'plugin',
'plugin "%(plugin)s" deleted': 'plugin "%(plugin)s" gedetecteerd',
'Plugin "%s" in application': 'Plugin "%s" in applicatie',
'plugin not specified': 'plugin niet gespecialiseerd',
@@ -478,8 +433,6 @@
'Preferences saved correctly': 'Preferences saved correctly',
'Preferences saved on session only': 'Preferences saved on session only',
'previous %s rows': 'previous %s rows',
-'previous 100 rows': 'vorige 100 rijen',
-'Previous Edit Point': 'Vorige Bewerkpunt',
'Private files': 'Privébestanden',
'private files': 'privébestanden',
'Profile updated': 'Profile updated',
@@ -498,7 +451,6 @@
'Ram Cleared': 'Ram Cleared',
'Rapid Search': 'Rapid Search',
'Record': 'Record',
-'record': 'record',
'Record %(id)s created': 'Record %(id)s created',
'Record %(id)s deleted': 'Record %(id)s deleted',
'Record %(id)s read': 'Record %(id)s read',
@@ -506,7 +458,6 @@
'Record Created': 'Record Created',
'Record Deleted': 'Record Deleted',
'record does not exist': 'record bestaat niet',
-'record id': 'record id',
'Record id': 'Record id',
'Record ID': 'Record ID',
'Record Updated': 'Record Updated',
@@ -529,7 +480,6 @@
'requires distutils, but not installed': 'requires distutils, but not installed',
'requires python-git, but not installed': 'vereist python-git, maar niet geïnstalleerd',
'Reset Password key': 'Reset Password key',
-'resolve': 'oplossen',
'Resolve Conflict file': 'Los Conflictbestand op',
'response': 'antwoord',
'restart': 'herstart',
@@ -543,16 +493,12 @@
'Role': 'Role',
'Roles': 'Roles',
'Rows in Table': 'Rows in Table',
-'Rows in table': 'Rijen in tabel',
'Rows selected': 'Rijen geselecteerd',
'rules are not defined': 'regels zijn niet gedefinieerd',
-'rules parsed with errors': 'regels geparsed met errors',
-'rules:': 'regels:',
'Run tests': 'Draai testen',
'Run tests in this file': 'Draai testen in dit bestand',
"Run tests in this file (to run all files, you may also use the button labelled 'test')": "Draai testen in dit bestand (om alle bestanden te draaien, kun je ook de button genaamd 'test' gebruiken)",
'Running on %s': 'Draait op %s',
-'runonce': 'runonce',
'Save': 'Bewaar',
'Save file:': 'Save file:',
'Save file: %s': 'Save file: %s',
@@ -560,10 +506,8 @@
'Save via Ajax': 'Bewaar via Ajax',
'Saved file hash:': 'Opgeslagen bestandhash:',
'Screenshot %s': 'Screenshot %s',
-'search': 'zoek',
'Search': 'Search',
'Select Files to Package': 'Select Files to Package',
-'selected': 'Geselecteerd',
'session': 'sessie',
'session expired': 'sessie verlopen',
'Session saved correctly': 'Session saved correctly',
@@ -572,10 +516,7 @@
'shell': 'shell',
'Showing %s to %s of %s %s found': 'Showing %s to %s of %s %s found',
'Sign Up': 'Sign Up',
-'signup': 'signup',
-'signup_requested': 'signup_requested',
'Singular Form': 'Enkelvoudsvorm',
-'site': 'site',
'Site': 'Site',
'Size of cache:': 'Size of cache:',
'skip to generate': 'sla over om te genereren',
@@ -588,22 +529,20 @@
'Start searching': 'Start searching',
'Start wizard': 'Start wizard',
'state': 'state',
-'Static': 'Static',
'static': 'statisch',
+'Static': 'Static',
'Static files': 'Statische bestanden',
'Statistics': 'Statistics',
'Step': 'Stap',
'step': 'stap',
'stop': 'stop',
-'submit': 'submit',
'Submit': 'Submit',
+'submit': 'submit',
'successful': 'succesvol',
'switch to : db': 'switch to : db',
'switch to : filesystem': 'switch to : filesystem',
'Tab width (# characters)': 'Tab width (# characters)',
-'table': 'tabel',
'Table': 'Table',
-'tags': 'tags',
'Temporary': 'tijdelijk',
'test': 'test',
'Testing application': 'Applicatie Testen',
@@ -630,17 +569,14 @@
'This email already has an account': 'This email already has an account',
'This is an experimental feature and it needs more testing. If you decide to downgrade you do it at your own risk': 'Dit is een experimentele feature en heeft meer tests nodig. Downgraden op eigen risico.',
'This is an experimental feature and it needs more testing. If you decide to upgrade you do it at your own risk': 'Dit is een experimentele feature en heeft meer tests nodig. Upgraden op eigen risico.',
-'This is the %(filename)s template': 'Dit is de %(filename)s template',
"This page can commit your changes to an openshift app repo and push them to your cloud instance. This assumes that you've already created the application instance using the web2py skeleton and have that repo somewhere on a filesystem that this web2py instance can access. This functionality requires GitPython installed and on the python path of the runtime that web2py is operating in.": 'Op deze pagina kan je veranderingen naar een openshift app repo committen en pushen naar je cloud-instantie. Dit gaat er vanuit dat je de applicatie-instantie al gemaakt hebt met de web2py skeleton en de repo ergens op een bestandssysteem hebt waar de web2py-instantie toegang tot heeft. Deze functionaliteit vereist ook een geïnstalleerde GitPython welke beschikbaar is in het python pad van de runtime waar web2py ook in opereert.',
'This page can upload your application to the Google App Engine computing cloud. Mind that you must first create indexes locally and this is done by installing the Google appserver and running the app locally with it once, or there will be errors when selecting records. Attention: deployment may take long time, depending on the network speed. Attention: it will overwrite your app.yaml. DO NOT SUBMIT TWICE.': 'Op deze pagina kan je applicatie uploaden naar Google App Engine. Let op, dat je eerst je indexes lokaal aanmaakt. Dit kun je doen door de Google appserver te installeren en de app lokaal eenmaal te draaien, anders krijg je error wanneer je records selecteert. Attentie: deployment kan een lange tijd duren, afhankelijk van de netwerksnelheid. Attentie: het overschrijft je app.yaml. SUBMIT NIET TWEE KEER!',
'this page to see if a breakpoint was hit and debug interaction is required.': 'deze pagina om te zien of een breakpoint geraakt is en debug-interactie nodig is',
'This will pull changes from the remote repo for application "%s"?': 'Dit zal veranderingen van de remote repo for applicatie "%s" pullen. ',
'This will push changes to the remote repo for application "%s".': 'Dit zal veranderingen naar de remote repo for applicatie "%s" pushen. ',
-'ticket': 'ticket',
'Ticket': 'Ticket',
'Ticket ID': 'Ticket ID',
'Ticket Missing': 'Ticket Missing',
-'tickets': 'tickets',
'Time in Cache (h:m:s)': 'Tijd in Cache (u:m:s)',
'Timestamp': 'Timestamp',
'to previous version.': 'naar vorige versie.',
@@ -657,37 +593,29 @@
'try view': 'try view',
'Two-step Login Authentication Code': 'Two-step Login Authentication Code',
'Type PDB debugger command in here and hit Return (Enter) to execute it.': 'Type PDB debugger commando hier en druk op Return (Enter) om het uit te voeren.',
-'Type python statement in here and hit Return (Enter) to execute it.': 'Type python statement hier en druk op Return (Enter) om het uit te voeren.',
'Type some Python code in here and hit Return (Enter) to execute it.': 'Type some Python code in here and hit Return (Enter) to execute it.',
'Unable to check for upgrades': 'Onmogelijk om voor upgrades te checken',
'unable to create application "%s"': 'onmogelijk om applicatie "%s" te maken',
-'unable to create application "%s" (it may exist already)': 'onmogelijk om applicatie "%s" te maken (mogelijk bestaat deze al)',
'unable to delete file "%(filename)s"': 'onmogelijk om bestand "%(filename)s" te verwijderen',
'unable to delete file plugin "%(plugin)s"': 'onmogelijk om pluginbestand "%(plugin)s" te verwijderen',
'Unable to determine the line number!': 'Onmogelijk om regelnummer te bepalen!',
'Unable to download app because:': 'Onmogelijk om app the downloaden omdat:',
-'Unable to download because:': 'Onmogelijk om te downloaden omdat:',
'unable to download layout': 'onmogelijk om layout te downloaden',
'unable to download plugin: %s': 'onmogelijk om plugin te downloaden: %s',
'Unable to download the list of plugins': 'Unable to download the list of plugins',
-'unable to install application "%(appname)s"': 'onmogelijk om applicatie "%(appname)s" te installeren',
'unable to install plugin "%s"': 'unable to install plugin "%s"',
'unable to parse csv file': 'onmogelijk om csv-bestand te parsen',
'Unable to send email': 'Unable to send email',
'unable to uninstall "%s"': 'onmogelijk om te deïnstalleren "%s"',
'unable to upgrade because "%s"': 'onmogelijk om te upgraden omdat "%s"',
-'unauthorized': 'niet geautoriseerd ',
'uncheck all': 'vink alles uit',
-'uninstall': 'deïnstalleer',
'Uninstall': 'Deïnstalleer',
'Unsupported webserver working mode: %s': 'Niet ondersteunde webserver werkmodus: %s',
'update': 'update',
'update all languages': 'update alle talen',
'Update:': 'Update:',
'Upgrade': 'Upgrade',
-'upgrade now': 'upgrade now',
'upgrade now to %s': 'upgrade now to %s',
-'upgrade_web2py': 'upgrade_web2py',
'upload': 'upload',
'Upload': 'Upload',
'Upload a package:': 'Upload een package:',
@@ -695,7 +623,6 @@
'upload file:': 'upload bestand:',
'upload plugin file:': 'upload pluginbestand:',
'Use (...)&(...) for AND, (...)|(...) for OR, and ~(...) for NOT to build more complex queries.': 'Gebruik (...)&(...) voor AND, (...)|(...) voor OR, en ~(...) voor NOT om meer complexe queries te maken.',
-'user': 'gebruiker',
'User': 'User',
'User %(id)s is impersonating %(other_id)s': 'User %(id)s is impersonating %(other_id)s',
'User %(id)s Logged-in': 'User %(id)s Logged-in',
@@ -714,13 +641,10 @@
'Username retrieve': 'Username retrieve',
'Users': 'Users',
'Using the shell may lock the database to other users of this app.': 'Het gebruik van de shell kan database locken voor andere gebruikers van deze app.',
-'value not allowed': 'waarde is niet toegestaan',
'variables': 'variabelen',
'Verify Password': 'Verify Password',
'Version': 'Versie',
-'Version %s.%s.%s (%s) %s': 'Versie %s.%s.%s (%s) %s',
'Versioning': 'Versionering',
-'view': 'view',
'Views': 'Views',
'views': 'views',
'Warning!': 'Warning!',
@@ -733,21 +657,17 @@
'web2py downgrade': 'web2py downgrade',
'web2py is up to date': 'web2py is up to date',
'web2py online debugger': 'web2py online debugger',
-'web2py Recent Tweets': 'web2py Recente Tweets',
'web2py upgrade': 'web2py upgrade',
'web2py upgraded; please restart it': 'web2py geupgrade; herstart alstublieft',
'Welcome %(username)s! Click on the link %(link)s to verify your email': 'Welcome %(username)s! Click on the link %(link)s to verify your email',
'Working...': 'Working...',
-'Wrap with Abbreviation': 'Wrap met Afkorting',
'WSGI reference name': 'WSGI reference name',
'YES': 'JA',
'Yes': 'Yes',
'You can also set and remove breakpoint in the edit window, using the Toggle Breakpoint button': 'Je kan ook een breakpoint zetten of verwijderen in het bewerkscherm met de Toggle Breakpoint-knop',
-'You can inspect variables using the console bellow': 'Je kan je variabelen inspecteren in de console hieronder',
'You can inspect variables using the console below': 'You can inspect variables using the console below',
'You have been invited to join %(site)s, click %(link)s to complete the process': 'You have been invited to join %(site)s, click %(link)s to complete the process',
'You have one more login attempt before you are locked out': 'Je hebt nog een poging om in te loggen voor je buitengesloten wordt.',
-'you must specify a name for the uploaded application': 'je moet een naam specificeren voor de geuploade applicatie',
'You need to set up and reach a': 'Je moet het volgende opzetten en bereiken:',
'You only need these if you have already registered': 'You only need these if you have already registered',
'Your application will be blocked until you click an action button (next, step, continue, etc.)': 'Je applicatie zal geblokkeerd zijn tot je een actie button aanklikt (volgende, step, ga door, etc.)',
diff --git a/applications/admin/languages/pl.py b/applications/admin/languages/pl.py
old mode 100755
new mode 100644
index bbc9060f..ddf7da0b
--- a/applications/admin/languages/pl.py
+++ b/applications/admin/languages/pl.py
@@ -11,7 +11,6 @@
'%s students registered': '%s students registered',
'%Y-%m-%d': '%Y-%m-%d',
'%Y-%m-%d %H:%M:%S': '%Y-%m-%d %H:%M:%S',
-'(requires internet access)': '(requires internet access)',
'(requires internet access, experimental)': '(requires internet access, experimental)',
'(something like "it-it")': '(coś podobnego do "it-it")',
'(version %s)': '(version %s)',
@@ -33,14 +32,11 @@
'@markmin\x01Searching: **%s** %%{file}': 'Searching: **%s** files',
'@markmin\x01You need to set up and reach a [[breakpoint %s]] to use the debugger!': 'You need to set up and reach a [[breakpoint %s]] to use the debugger!',
'A new password was emailed to you': 'A new password was emailed to you',
-'A new version of web2py is available': 'Nowa wersja web2py jest dostępna',
-'A new version of web2py is available: %s': 'Nowa wersja web2py jest dostępna: %s',
'Abort': 'Abort',
'About': 'informacje',
'About application': 'Informacje o aplikacji',
'Accept Terms': 'Accept Terms',
'Add breakpoint': 'Add breakpoint',
-'additional code for your application': 'dodatkowy kod Twojej aplikacji',
'Additional code for your application': 'Additional code for your application',
'Admin design page': 'Admin design page',
'admin disabled because no admin password': 'panel administracyjny wyłączony z powodu braku hasła administracyjnego',
@@ -48,12 +44,10 @@
'admin disabled because too many invalid login attempts': 'admin disabled because too many invalid login attempts',
'admin disabled because unable to access password file': 'panel administracyjny wyłączony z powodu braku dostępu do pliku z hasłem',
'Admin is disabled because insecure channel': 'Panel administracyjny wyłączony z powodu braku bezpiecznego połączenia',
-'Admin is disabled because unsecure channel': 'Panel administracyjny wyłączony z powodu braku bezpiecznego połączenia',
'Admin language': 'Admin language',
'Admin versioning page': 'Admin versioning page',
'administrative interface': 'administrative interface',
'Administrator Password:': 'Hasło administratora:',
-'and rename it (required):': 'i nadaj jej nową nazwę (wymagane):',
'and rename it:': 'i nadaj mu nową nazwę:',
'App does not exist or you are not authorized': 'App does not exist or you are not authorized',
'appadmin': 'administracja aplikacji',
@@ -72,9 +66,7 @@
'Are you sure you want to delete file "%s"?': 'Czy na pewno chcesz usunąć plik "%s"?',
'Are you sure you want to delete plugin "%s"?': 'Czy na pewno chcesz usunąć wtyczkę "%s"?',
'Are you sure you want to delete this object?': 'Are you sure you want to delete this object?',
-'Are you sure you want to uninstall application "%s"': 'Czy na pewno chcesz usunąć aplikację "%s"',
'Are you sure you want to uninstall application "%s"?': 'Czy na pewno chcesz usunąć aplikację "%s"?',
-'Are you sure you want to upgrade web2py now?': 'Are you sure you want to upgrade web2py now?',
'Are you sure?': 'Are you sure?',
'arguments': 'arguments',
'at char %s': 'at char %s',
@@ -85,7 +77,6 @@
'ATTENTION: you cannot edit the running application!': 'UWAGA: nie można edytować uruchomionych aplikacji!',
'Authentication code': 'Authentication code',
'Autocomplete Python Code': 'Autocomplete Python Code',
-'Available databases and tables': 'Dostępne bazy danych i tabele',
'Available Databases and Tables': 'Available Databases and Tables',
'back': 'wstecz',
'Back to the plugins list': 'Back to the plugins list',
@@ -105,7 +96,6 @@
'can be a git repo': 'can be a git repo',
'Cancel': 'Cancel',
'Cannot be empty': 'Nie może być puste',
-'Cannot compile: there are errors in your app. Debug it, correct errors and try again.': 'Nie można skompilować: w Twojej aplikacji są błędy . Znajdź je, popraw a następnie spróbój ponownie.',
'Cannot compile: there are errors in your app:': 'Cannot compile: there are errors in your app:',
'cannot create file': 'nie można utworzyć pliku',
'cannot upload file "%(filename)s"': 'nie można wysłać pliku "%(filename)s"',
@@ -123,12 +113,9 @@
'Clear CACHE?': 'Clear CACHE?',
'Clear DISK': 'Clear DISK',
'Clear RAM': 'Clear RAM',
-'click here for online examples': 'kliknij aby przejść do interaktywnych przykładów',
-'click here for the administrative interface': 'kliknij aby przejść do panelu administracyjnego',
'Click on the link %(link)s to reset your password': 'Click on the link %(link)s to reset your password',
'Click row to expand traceback': 'Click row to expand traceback',
'Click row to view a ticket': 'Click row to view a ticket',
-'click to check for upgrades': 'kliknij aby sprawdzić aktualizacje',
'Client IP': 'Client IP',
'code': 'code',
'Code listing': 'Code listing',
@@ -149,8 +136,6 @@
'Count': 'Count',
'Create': 'create',
'create file with filename:': 'utwórz plik o nazwie:',
-'create new application:': 'utwórz nową aplikację:',
-'Create new simple application': 'Utwórz nową aplikację',
'Create/Upload': 'Create/Upload',
'created by': 'utworzone przez',
'Created by:': 'Created by:',
@@ -164,9 +149,7 @@
'currently saved or': 'aktualnie zapisany lub',
'data uploaded': 'dane wysłane',
'Database': 'Database',
-'database': 'baza danych',
'Database %s select': 'Database %s select',
-'database %s select': 'wybór z bazy danych %s',
'Database administration': 'Database administration',
'database administration': 'administracja bazy danych',
'Database Administration (appadmin)': 'Database Administration (appadmin)',
@@ -192,8 +175,6 @@
'Description': 'Description',
'Description:': 'Description:',
'design': 'projektuj',
-'DESIGN': 'PROJEKTUJ',
-'Design for': 'Projekt dla',
'Detailed traceback description': 'Detailed traceback description',
'details': 'details',
'direction: ltr': 'direction: ltr',
@@ -219,17 +200,13 @@
'download plugins': 'download plugins',
'Download plugins from repository': 'Download plugins from repository',
'E-mail': 'E-mail',
-'EDIT': 'EDYTUJ',
'Edit': 'edytuj',
'edit all': 'edit all',
'Edit application': 'Edycja aplikacji',
-'edit controller': 'edytuj kontroler',
'edit controller:': 'edit controller:',
'Edit current record': 'Edytuj aktualny rekord',
'edit views:': 'edit views:',
'Editing %s': 'Editing %s',
-'Editing file': 'Edycja pliku',
-'Editing file "%s"': 'Edycja pliku "%s"',
'Editing Language file': 'Edytuj plik tłumaczeń',
'Editing Plural Forms File': 'Editing Plural Forms File',
'Editor': 'Editor',
@@ -240,7 +217,6 @@
'Enable': 'Enable',
'Enable Close-Tag': 'Enable Close-Tag',
'Enable Code Folding': 'Enable Code Folding',
-'Enterprise Web Framework': 'Enterprise Web Framework',
'Error': 'Error',
'Error logs for "%(app)s"': 'Wpisy błędów dla "%(app)s"',
'Error snapshot': 'Error snapshot',
@@ -257,13 +233,11 @@
'exposes:': 'exposes:',
'extends': 'rozszerza',
'failed to compile file because:': 'failed to compile file because:',
-'failed to reload module': 'nie udało się przeładować modułu',
'failed to reload module because:': 'failed to reload module because:',
'File': 'File',
'file "%(filename)s" created': 'plik "%(filename)s" został utworzony',
'file "%(filename)s" deleted': 'plik "%(filename)s" został usunięty',
'file "%(filename)s" uploaded': 'plik "%(filename)s" został wysłany',
-'file "%(filename)s" was not deleted': 'plik "%(filename)s" nie został usunięty',
'file "%s" of %s restored': 'plik "%s" z %s został odtworzony',
'file changed on disk': 'plik na dysku został zmieniony',
'file does not exist': 'plik nie istnieje',
@@ -292,13 +266,12 @@
'Google App Engine Deployment Interface': 'Google App Engine Deployment Interface',
'Google Application Id': 'Google Application Id',
'Goto': 'Goto',
-'graph model': 'graph model',
'Graph Model': 'Graph Model',
+'graph model': 'graph model',
'Group %(group_id)s created': 'Group %(group_id)s created',
'Group %(group_id)s deleted': 'Group %(group_id)s deleted',
'Group ID': 'Group ID',
'Group uniquely assigned to user %(id)s': 'Group uniquely assigned to user %(id)s',
-'Hello World': 'Witaj Świecie',
'Help': 'pomoc',
'here': 'here',
'Hide/Show Translated strings': 'Hide/Show Translated strings',
@@ -306,7 +279,6 @@
'Hits': 'Hits',
'Home': 'Home',
'honored only if the expression evaluates to true': 'honored only if the expression evaluates to true',
-'htmledit': 'edytuj HTML',
'If start the downgrade, be patient, it may take a while to rollback': 'If start the downgrade, be patient, it may take a while to rollback',
'If start the upgrade, be patient, it may take a while to download': 'If start the upgrade, be patient, it may take a while to download',
'If the report above contains a ticket number it indicates a failure in executing the controller, before any attempt to execute the doctests. This is usually due to an indentation error or an error outside function code.\n\t\tA green title indicates that all tests (if defined) passed. In this case test results are not shown.': 'If the report above contains a ticket number it indicates a failure in executing the controller, before any attempt to execute the doctests. This is usually due to an indentation error or an error outside function code.\n\t\tA green title indicates that all tests (if defined) passed. In this case test results are not shown.',
@@ -318,8 +290,6 @@
'includes': 'zawiera',
'Incorrect code. {0} more attempt(s) remaining.': 'Incorrect code. {0} more attempt(s) remaining.',
'Indent with tabs': 'Indent with tabs',
-'insert new': 'wstaw nowy rekord tabeli',
-'insert new %s': 'wstaw nowy rekord do tabeli %s',
'inspect attributes': 'inspect attributes',
'Install': 'install',
'Installation of %(plugin)s for %(app)s': 'Installation of %(plugin)s for %(app)s',
@@ -357,7 +327,6 @@
'Language files (static strings) updated': 'Pliki tłumaczeń (ciągi statyczne) zostały uaktualnione',
'languages': 'pliki tłumaczeń',
'Languages': 'Tłumaczenia',
-'languages updated': 'pliki tłumaczeń zostały uaktualnione',
'Last name': 'Last name',
'Last Revision': 'Last Revision',
'Last saved on:': 'Ostatnio zapisany:',
@@ -368,7 +337,6 @@
'lists by exception': 'lists by exception',
'lists by ticket': 'lists by ticket',
'Loading...': 'Loading...',
-'loading...': 'wczytywanie...',
'Local Apps': 'Local Apps',
'locals': 'locals',
'Locals##debug': 'Locals##debug',
@@ -376,7 +344,6 @@
'Logged in': 'Logged in',
'Logged out': 'Logged out',
'Login': 'Zaloguj',
-'login': 'zaloguj',
'Login disabled by administrator': 'Login disabled by administrator',
'Login successful': 'Login successful',
'Login to the Administrative Interface': 'Logowanie do panelu administracyjnego',
@@ -411,7 +378,6 @@
'New simple application': 'New simple application',
'next': 'next',
'next %s rows': 'next %s rows',
-'next 100 rows': 'następne 100 wierszy',
'NO': 'NIE',
'no changes': 'no changes',
'No databases in this application': 'Brak baz danych w tej aplikacji',
@@ -432,8 +398,6 @@
'or alternatively': 'or alternatively',
'Or Get from URL:': 'Or Get from URL:',
'or import from csv file': 'lub zaimportuj z pliku csv',
-'or provide app url:': 'or provide app url:',
-'or provide application url:': 'lub podaj url aplikacji:',
'Origin': 'Origin',
'Original/Translation': 'Oryginał/tłumaczenie',
'Overview': 'Overview',
@@ -442,7 +406,6 @@
'Pack compiled': 'spakuj skompilowane',
'Pack custom': 'Pack custom',
'pack plugin': 'spakuj wtyczkę',
-'PAM authenticated user, cannot change password here': 'PAM authenticated user, cannot change password here',
'Password': 'Password',
'password changed': 'password changed',
'Password changed': 'Password changed',
@@ -470,7 +433,6 @@
'Preferences saved correctly': 'Preferences saved correctly',
'Preferences saved on session only': 'Preferences saved on session only',
'previous %s rows': 'previous %s rows',
-'previous 100 rows': 'poprzednie 100 wierszy',
'Private files': 'Private files',
'private files': 'private files',
'Profile updated': 'Profile updated',
@@ -489,7 +451,6 @@
'Ram Cleared': 'Ram Cleared',
'Rapid Search': 'Rapid Search',
'Record': 'Record',
-'record': 'rekord',
'Record %(id)s created': 'Record %(id)s created',
'Record %(id)s deleted': 'Record %(id)s deleted',
'Record %(id)s read': 'Record %(id)s read',
@@ -497,7 +458,6 @@
'Record Created': 'Record Created',
'Record Deleted': 'Record Deleted',
'record does not exist': 'rekord nie istnieje',
-'record id': 'ID rekordu',
'Record id': 'Record id',
'Record ID': 'Record ID',
'Record Updated': 'Record Updated',
@@ -532,7 +492,6 @@
'Revision:': 'Revision:',
'Role': 'Role',
'Roles': 'Roles',
-'Rows in table': 'Wiersze w tabeli',
'Rows in Table': 'Rows in Table',
'Rows selected': 'Wierszy wybranych',
'rules are not defined': 'rules are not defined',
@@ -541,7 +500,6 @@
"Run tests in this file (to run all files, you may also use the button labelled 'test')": "Run tests in this file (to run all files, you may also use the button labelled 'test')",
'Running on %s': 'Running on %s',
'Save': 'Save',
-'save': 'zapisz',
'Save file:': 'Save file:',
'Save file: %s': 'Save file: %s',
'Save model as...': 'Save model as...',
@@ -550,7 +508,6 @@
'Screenshot %s': 'Screenshot %s',
'Search': 'Search',
'Select Files to Package': 'Select Files to Package',
-'selected': 'zaznaczone',
'session': 'session',
'session expired': 'sesja wygasła',
'Session saved correctly': 'Session saved correctly',
@@ -572,21 +529,19 @@
'Start searching': 'Start searching',
'Start wizard': 'start wizard',
'state': 'stan',
-'Static': 'Static',
'static': 'pliki statyczne',
+'Static': 'Static',
'Static files': 'Pliki statyczne',
'Statistics': 'Statistics',
'Step': 'Step',
'step': 'step',
'stop': 'stop',
-'submit': 'wyślij',
'Submit': 'Submit',
+'submit': 'wyślij',
'successful': 'successful',
-'Sure you want to delete this object?': 'Czy na pewno chcesz usunąć ten obiekt?',
'switch to : db': 'switch to : db',
'switch to : filesystem': 'switch to : filesystem',
'Tab width (# characters)': 'Tab width (# characters)',
-'table': 'tabela',
'Table': 'Table',
'Temporary': 'Temporary',
'test': 'testuj',
@@ -594,12 +549,9 @@
'The "query" is a condition like "db.table1.field1==\'value\'". Something like "db.table1.field1==db.table2.field2" results in a SQL JOIN.': '"Zapytanie" jest warunkiem postaci "db.tabela1.pole1==\'wartość\'". Takie coś jak "db.tabela1.pole1==db.tabela2.pole2" oznacza SQL JOIN.',
'The app exists, was created by wizard, continue to overwrite!': 'The app exists, was created by wizard, continue to overwrite!',
'The app exists, was NOT created by wizard, continue to overwrite!': 'The app exists, was NOT created by wizard, continue to overwrite!',
-'the application logic, each URL path is mapped in one exposed function in the controller': 'logika aplikacji, każda ścieżka URL jest mapowana na jedną z funkcji eksponowanych w kontrolerze',
'The application logic, each URL path is mapped in one exposed function in the controller': 'The application logic, each URL path is mapped in one exposed function in the controller',
-'the data representation, define database tables and sets': 'reprezentacja danych, definicje zbiorów i tabel bazy danych',
'The data representation, define database tables and sets': 'The data representation, define database tables and sets',
'The presentations layer, views are also known as templates': 'The presentations layer, views are also known as templates',
-'the presentations layer, views are also known as templates': 'warstwa prezentacji, widoki zwane są również szablonami',
'Theme': 'Theme',
'There are no controllers': 'Brak kontrolerów',
'There are no models': 'Brak modeli',
@@ -612,13 +564,11 @@
'There are no views': 'Brak widoków',
'These files are not served, they are only available from within your app': 'These files are not served, they are only available from within your app',
'These files are served without processing, your images go here': 'These files are served without processing, your images go here',
-'these files are served without processing, your images go here': 'pliki obsługiwane bez interpretacji, to jest miejsce na Twoje obrazy',
'This code was emailed to you and is required for login.': 'This code was emailed to you and is required for login.',
"This debugger may not work properly if you don't have a threaded webserver or you're using multiple daemon processes.": "This debugger may not work properly if you don't have a threaded webserver or you're using multiple daemon processes.",
'This email already has an account': 'This email already has an account',
'This is an experimental feature and it needs more testing. If you decide to downgrade you do it at your own risk': 'This is an experimental feature and it needs more testing. If you decide to downgrade you do it at your own risk',
'This is an experimental feature and it needs more testing. If you decide to upgrade you do it at your own risk': 'This is an experimental feature and it needs more testing. If you decide to upgrade you do it at your own risk',
-'This is the %(filename)s template': 'To jest szablon %(filename)s',
"This page can commit your changes to an openshift app repo and push them to your cloud instance. This assumes that you've already created the application instance using the web2py skeleton and have that repo somewhere on a filesystem that this web2py instance can access. This functionality requires GitPython installed and on the python path of the runtime that web2py is operating in.": "This page can commit your changes to an openshift app repo and push them to your cloud instance. This assumes that you've already created the application instance using the web2py skeleton and have that repo somewhere on a filesystem that this web2py instance can access. This functionality requires GitPython installed and on the python path of the runtime that web2py is operating in.",
'This page can upload your application to the Google App Engine computing cloud. Mind that you must first create indexes locally and this is done by installing the Google appserver and running the app locally with it once, or there will be errors when selecting records. Attention: deployment may take long time, depending on the network speed. Attention: it will overwrite your app.yaml. DO NOT SUBMIT TWICE.': 'This page can upload your application to the Google App Engine computing cloud. Mind that you must first create indexes locally and this is done by installing the Google appserver and running the app locally with it once, or there will be errors when selecting records. Attention: deployment may take long time, depending on the network speed. Attention: it will overwrite your app.yaml. DO NOT SUBMIT TWICE.',
'this page to see if a breakpoint was hit and debug interaction is required.': 'this page to see if a breakpoint was hit and debug interaction is required.',
@@ -629,7 +579,6 @@
'Ticket Missing': 'Ticket Missing',
'Time in Cache (h:m:s)': 'Time in Cache (h:m:s)',
'Timestamp': 'Timestamp',
-'TM': 'TM',
'to previous version.': 'do poprzedniej wersji.',
'To create a plugin, name a file/folder plugin_[name]': 'Aby utworzyć wtyczkę, nazwij plik/katalog plugin_[nazwa]',
'To emulate a breakpoint programatically, write:': 'To emulate a breakpoint programatically, write:',
@@ -638,9 +587,7 @@
'Toggle comment': 'Toggle comment',
'Toggle Fullscreen': 'Toggle Fullscreen',
'Traceback': 'Traceback',
-'translation strings for the application': 'ciągi tłumaczeń dla aplikacji',
'Translation strings for the application': 'Translation strings for the application',
-'try': 'spróbój',
'try something like': 'spróbój czegos takiego jak',
'Try the mobile interface': 'Try the mobile interface',
'try view': 'try view',
@@ -652,10 +599,7 @@
'unable to delete file "%(filename)s"': 'nie można usunąć pliku "%(filename)s"',
'unable to delete file plugin "%(plugin)s"': 'nie można usunąc pliku wtyczki "%(plugin)s"',
'Unable to determine the line number!': 'Unable to determine the line number!',
-'Unable to download': 'Nie można ściągnąć',
-'Unable to download app': 'Nie można ściągnąć aplikacji',
'Unable to download app because:': 'Unable to download app because:',
-'Unable to download because': 'Unable to download because',
'unable to download layout': 'unable to download layout',
'unable to download plugin: %s': 'unable to download plugin: %s',
'Unable to download the list of plugins': 'Unable to download the list of plugins',
@@ -672,18 +616,13 @@
'Update:': 'Uaktualnij:',
'Upgrade': 'Upgrade',
'upgrade now to %s': 'upgrade now to %s',
-'upgrade web2py now': 'upgrade web2py now',
'upload': 'upload',
'Upload': 'Upload',
-'Upload & install packed application': 'Upload & install packed application',
'Upload a package:': 'Upload a package:',
'Upload and install packed application': 'Upload and install packed application',
-'upload application:': 'wyślij plik aplikacji:',
-'Upload existing application': 'Wyślij istniejącą aplikację',
'upload file:': 'wyślij plik:',
'upload plugin file:': 'wyślij plik wtyczki:',
'Use (...)&(...) for AND, (...)|(...) for OR, and ~(...) for NOT to build more complex queries.': 'Użyj (...)&(...) jako AND, (...)|(...) jako OR oraz ~(...) jako NOT do tworzenia bardziej skomplikowanych zapytań.',
-'Use an url:': 'Use an url:',
'User': 'User',
'User %(id)s is impersonating %(other_id)s': 'User %(id)s is impersonating %(other_id)s',
'User %(id)s Logged-in': 'User %(id)s Logged-in',
@@ -706,8 +645,6 @@
'Verify Password': 'Verify Password',
'Version': 'Wersja',
'Versioning': 'Versioning',
-'versioning': 'versioning',
-'view': 'widok',
'Views': 'Widoki',
'views': 'widoki',
'Warning!': 'Warning!',
@@ -720,11 +657,9 @@
'web2py downgrade': 'web2py downgrade',
'web2py is up to date': 'web2py jest aktualne',
'web2py online debugger': 'web2py online debugger',
-'web2py Recent Tweets': 'najnowsze tweety web2py',
'web2py upgrade': 'web2py upgrade',
'web2py upgraded; please restart it': 'web2py upgraded; please restart it',
'Welcome %(username)s! Click on the link %(link)s to verify your email': 'Welcome %(username)s! Click on the link %(link)s to verify your email',
-'Welcome to web2py': 'Witaj w web2py',
'Working...': 'Working...',
'WSGI reference name': 'WSGI reference name',
'YES': 'TAK',
diff --git a/applications/admin/languages/plural-en.py b/applications/admin/languages/plural-en.py
old mode 100755
new mode 100644
diff --git a/applications/admin/languages/plural-ru.py b/applications/admin/languages/plural-ru.py
old mode 100755
new mode 100644
diff --git a/applications/admin/languages/plural-uk.py b/applications/admin/languages/plural-uk.py
old mode 100755
new mode 100644
diff --git a/applications/admin/languages/pt-br.py b/applications/admin/languages/pt-br.py
old mode 100755
new mode 100644
index 3960a3ea..d1a3e0e1
--- a/applications/admin/languages/pt-br.py
+++ b/applications/admin/languages/pt-br.py
@@ -32,14 +32,11 @@
'@markmin\x01Searching: **%s** %%{file}': 'Buscando: **%s** arquivos',
'@markmin\x01You need to set up and reach a [[breakpoint %s]] to use the debugger!': 'You need to set up and reach a [[breakpoint %s]] to use the debugger!',
'A new password was emailed to you': 'A new password was emailed to you',
-'A new version of web2py is available': 'Está disponível uma nova versão do web2py',
-'A new version of web2py is available: %s': 'Está disponível uma nova versão do web2py: %s',
'Abort': 'Abort',
'About': 'sobre',
'About application': 'Sobre a aplicação',
'Accept Terms': 'Accept Terms',
'Add breakpoint': 'Add breakpoint',
-'additional code for your application': 'código adicional para sua aplicação',
'Additional code for your application': 'Código adicional para sua aplicação',
'Admin design page': 'Admin design page',
'admin disabled because no admin password': ' admin desabilitado por falta de senha definida',
@@ -47,12 +44,10 @@
'admin disabled because too many invalid login attempts': 'admin disabled because too many invalid login attempts',
'admin disabled because unable to access password file': 'admin desabilitado porque não foi possível ler o arquivo de senha',
'Admin is disabled because insecure channel': 'Admin desabilitado pois o canal não é seguro',
-'Admin is disabled because unsecure channel': 'Admin desabilitado pois o canal não é seguro',
'Admin language': 'Idioma do Admin',
'Admin versioning page': 'Admin versioning page',
'administrative interface': 'interface administrativa',
'Administrator Password:': 'Senha de administrador:',
-'and rename it (required):': 'e renomeie (requerido):',
'and rename it:': ' e renomeie:',
'App does not exist or you are not authorized': 'App does not exist or you are not authorized',
'appadmin': 'appadmin',
@@ -71,9 +66,7 @@
'Are you sure you want to delete file "%s"?': 'Tem certeza que deseja apagar o arquivo "%s"?',
'Are you sure you want to delete plugin "%s"?': 'Tem certeza que deseja apagar o plugin "%s"?',
'Are you sure you want to delete this object?': 'Tem certeza que deseja apagar esse objeto?',
-'Are you sure you want to uninstall application "%s"': 'Tem certeza que deseja desinstalar a aplicação "%s"?',
'Are you sure you want to uninstall application "%s"?': 'Tem certeza que deseja desinstalar a aplicação "%s"?',
-'Are you sure you want to upgrade web2py now?': 'Tem certeza que deseja atualizar o web2py agora?',
'Are you sure?': 'Are you sure?',
'arguments': 'argumentos',
'at char %s': 'at char %s',
@@ -84,7 +77,6 @@
'ATTENTION: you cannot edit the running application!': 'ATENÇÃO: Não pode modificar a aplicação em execução!',
'Authentication code': 'Authentication code',
'Autocomplete Python Code': 'Autocomplete Python Code',
-'Available databases and tables': 'Bancos de dados e tabelas disponíveis',
'Available Databases and Tables': 'Available Databases and Tables',
'back': 'voltar',
'Back to the plugins list': 'Back to the plugins list',
@@ -94,7 +86,6 @@
'breakpoint': 'breakpoint',
'Breakpoints': 'Breakpoints',
'breakpoints': 'breakpoints',
-'browse': 'navegar',
'Bulk Register': 'Bulk Register',
'Bulk Student Registration': 'Bulk Student Registration',
'Cache': 'Cache',
@@ -105,14 +96,12 @@
'can be a git repo': 'pode ser um repositório git',
'Cancel': 'Cancel',
'Cannot be empty': 'Não pode ser vazio',
-'Cannot compile: there are errors in your app. Debug it, correct errors and try again.': 'Não é possível compilar: Existem erros em sua aplicação. Depure, corrija os errros e tente novamente',
'Cannot compile: there are errors in your app:': 'Não é possível compilar: Existem erros em sua aplicação',
'cannot create file': 'Não é possível criar o arquivo',
'cannot upload file "%(filename)s"': 'não é possível fazer upload do arquivo "%(filename)s"',
'Change Admin Password': 'Change Admin Password',
'Change admin password': 'mudar senha de administrador',
'change editor settings': 'change editor settings',
-'Change Password': 'Mudar Senha',
'Change password': 'Change password',
'Changelog': 'Changelog',
'check all': 'marcar todos',
@@ -124,13 +113,9 @@
'Clear CACHE?': 'Clear CACHE?',
'Clear DISK': 'Clear DISK',
'Clear RAM': 'Clear RAM',
-'click here for online examples': 'clique para ver exemplos online',
-'click here for the administrative interface': 'Clique aqui para acessar a interface administrativa',
'Click on the link %(link)s to reset your password': 'Click on the link %(link)s to reset your password',
'Click row to expand traceback': 'Clique na linha para expandir o traceback',
'Click row to view a ticket': 'Click row to view a ticket',
-'click to check for upgrades': 'clique aqui para verificar se existem atualizações',
-'click to open': 'clique para abrir',
'Client IP': 'IP do cliente',
'code': 'código',
'Code listing': 'Code listing',
@@ -138,7 +123,6 @@
'Command': 'Command',
'Comment:': 'Comment:',
'Commit': 'Commit',
-'commit (mercurial)': 'commit (mercurial)',
'Commit form': 'Commit form',
'Committed files': 'Committed files',
'Compile': 'Compilar',
@@ -152,9 +136,6 @@
'Count': 'Contagem',
'Create': 'Criar',
'create file with filename:': 'criar um arquivo com o nome:',
-'Create new application using the Wizard': 'Criar nova aplicação utilizando o Assistente',
-'create new application:': 'nome da nova aplicação:',
-'Create new simple application': 'Crie uma nova aplicação',
'Create/Upload': 'Create/Upload',
'created by': 'criado por',
'Created by:': 'Created by:',
@@ -166,12 +147,9 @@
'Current session': 'Sessão atual',
'currently running': 'Executando',
'currently saved or': 'Atualmente salvo ou',
-'customize me!': 'Modifique-me!',
'data uploaded': 'Dados enviados',
'Database': 'Database',
-'database': 'banco de dados',
'Database %s select': 'Database %s select',
-'database %s select': 'Select no banco de dados %s',
'Database administration': 'Database administration',
'database administration': 'administração do banco de dados',
'Database Administration (appadmin)': 'Database Administration (appadmin)',
@@ -197,8 +175,6 @@
'Description': 'Descrição',
'Description:': 'Description:',
'design': 'projeto',
-'DESIGN': 'Projeto',
-'Design for': 'Projeto de',
'Detailed traceback description': 'Descrição detalhada do traceback',
'details': 'details',
'direction: ltr': 'direção: ltr',
@@ -224,18 +200,13 @@
'download plugins': 'download de plugins',
'Download plugins from repository': 'Download plugins from repository',
'E-mail': 'E-mail',
-'EDIT': 'EDITAR',
'Edit': 'Editar',
'edit all': 'editar todos',
'Edit application': 'Editar aplicação',
-'edit controller': 'editar controlador',
'edit controller:': 'edit controller:',
'Edit current record': 'Editar o registro atual',
-'Edit Profile': 'Editar Perfil',
'edit views:': 'editar visões:',
'Editing %s': 'Editing %s',
-'Editing file': 'Editando arquivo',
-'Editing file "%s"': 'Editando arquivo "%s"',
'Editing Language file': 'Editando arquivo de idioma',
'Editing Plural Forms File': 'Editing Plural Forms File',
'Editor': 'Editor',
@@ -246,7 +217,6 @@
'Enable': 'Enable',
'Enable Close-Tag': 'Enable Close-Tag',
'Enable Code Folding': 'Enable Code Folding',
-'Enterprise Web Framework': 'Framework Web Corporativo',
'Error': 'Erro',
'Error logs for "%(app)s"': 'Logs de erro para "%(app)s"',
'Error snapshot': 'Momento do Erro',
@@ -263,13 +233,11 @@
'exposes:': 'exposes:',
'extends': 'estende',
'failed to compile file because:': 'failed to compile file because:',
-'failed to reload module': 'Falha ao recarregar o módulo',
'failed to reload module because:': 'falha ao recarregar o módulo porque:',
'File': 'Arquivo',
'file "%(filename)s" created': 'arquivo "%(filename)s" criado',
'file "%(filename)s" deleted': 'arquivo "%(filename)s" apagado',
'file "%(filename)s" uploaded': 'arquivo "%(filename)s" enviado',
-'file "%(filename)s" was not deleted': 'arquivo "%(filename)s" não foi apagado',
'file "%s" of %s restored': 'arquivo "%s" de %s restaurado',
'file changed on disk': 'arquivo modificado no disco',
'file does not exist': 'arquivo não existe',
@@ -298,13 +266,12 @@
'Google App Engine Deployment Interface': 'Google App Engine Deployment Interface',
'Google Application Id': 'Google Application Id',
'Goto': 'Goto',
-'graph model': 'graph model',
'Graph Model': 'Graph Model',
+'graph model': 'graph model',
'Group %(group_id)s created': 'Group %(group_id)s created',
'Group %(group_id)s deleted': 'Group %(group_id)s deleted',
'Group ID': 'ID do Grupo',
'Group uniquely assigned to user %(id)s': 'Group uniquely assigned to user %(id)s',
-'Hello World': 'Olá Mundo',
'Help': 'Ajuda',
'here': 'here',
'Hide/Show Translated strings': 'Hide/Show Translated strings',
@@ -312,7 +279,6 @@
'Hits': 'Hits',
'Home': 'Home',
'honored only if the expression evaluates to true': 'honored only if the expression evaluates to true',
-'htmledit': 'htmledit',
'If start the downgrade, be patient, it may take a while to rollback': 'If start the downgrade, be patient, it may take a while to rollback',
'If start the upgrade, be patient, it may take a while to download': 'If start the upgrade, be patient, it may take a while to download',
'If the report above contains a ticket number it indicates a failure in executing the controller, before any attempt to execute the doctests. This is usually due to an indentation error or an error outside function code.\n\t\tA green title indicates that all tests (if defined) passed. In this case test results are not shown.': 'If the report above contains a ticket number it indicates a failure in executing the controller, before any attempt to execute the doctests. This is usually due to an indentation error or an error outside function code.\n\t\tA green title indicates that all tests (if defined) passed. In this case test results are not shown.',
@@ -324,8 +290,6 @@
'includes': 'inclui',
'Incorrect code. {0} more attempt(s) remaining.': 'Incorrect code. {0} more attempt(s) remaining.',
'Indent with tabs': 'Indent with tabs',
-'insert new': 'inserir novo',
-'insert new %s': 'inserir novo %s',
'inspect attributes': 'inspeciona atributos',
'Install': 'instalar',
'Installation of %(plugin)s for %(app)s': 'Installation of %(plugin)s for %(app)s',
@@ -363,7 +327,6 @@
'Language files (static strings) updated': 'Arquivos de idioma (textos estáticos) atualizados',
'languages': 'idiomas',
'Languages': 'Idiomas',
-'languages updated': 'idiomas atualizados',
'Last name': 'Sobrenome',
'Last Revision': 'Last Revision',
'Last saved on:': 'Salvo pela última vez em:',
@@ -374,25 +337,21 @@
'lists by exception': 'lists by exception',
'lists by ticket': 'lists by ticket',
'Loading...': 'Loading...',
-'loading...': 'carregando...',
'Local Apps': 'Local Apps',
'locals': 'locals',
'Locals##debug': 'Locals##debug',
'Log In': 'Log In',
'Logged in': 'Logged in',
'Logged out': 'Logged out',
-'login': 'início de sessão',
'Login': 'Entrar',
'Login disabled by administrator': 'Login disabled by administrator',
'Login successful': 'Login successful',
'Login to the Administrative Interface': 'Entrar na interface adminitrativa',
'Login/Register': 'Login/Register',
'Logout': 'finalizar sessão',
-'Lost Password': 'Perdi a senha',
'lost password': 'lost password',
'Main Menu': 'Main Menu',
'Manage': 'Gerenciar',
-'manage': 'gerenciar',
'Manage %(action)s': 'Manage %(action)s',
'Manage Access Control': 'Manage Access Control',
'Manage Admin Users/Students': 'Manage Admin Users/Students',
@@ -400,8 +359,8 @@
'Manage Students': 'Manage Students',
'Memberships': 'Memberships',
'merge': 'juntar',
-'models': 'modelos',
'Models': 'Modelos',
+'models': 'modelos',
'Modified On': 'Modified On',
'Modules': 'Módulos',
'modules': 'módulos',
@@ -419,7 +378,6 @@
'New simple application': 'Nova aplicação básica',
'next': 'next',
'next %s rows': 'next %s rows',
-'next 100 rows': 'próximos 100 registros',
'NO': 'NÃO',
'no changes': 'no changes',
'No databases in this application': 'Não existem bancos de dados nesta aplicação',
@@ -440,8 +398,6 @@
'or alternatively': 'or alternatively',
'Or Get from URL:': 'Ou baixa da URL:',
'or import from csv file': 'ou importar de um arquivo CSV',
-'or provide app url:': 'ou forneça a url de uma aplicação:',
-'or provide application url:': 'ou forneça a url de uma aplicação:',
'Origin': 'Origem',
'Original/Translation': 'Original/Tradução',
'Overview': 'Overview',
@@ -450,7 +406,6 @@
'Pack compiled': 'Criar pacote compilado',
'Pack custom': 'Customizar pacote',
'pack plugin': 'empacotar plugin',
-'PAM authenticated user, cannot change password here': 'usuário autenticado por PAM não pode alterar a senha aqui',
'Password': 'Senha',
'password changed': 'senha alterada',
'Password changed': 'Password changed',
@@ -478,7 +433,6 @@
'Preferences saved correctly': 'Preferences saved correctly',
'Preferences saved on session only': 'Preferences saved on session only',
'previous %s rows': 'previous %s rows',
-'previous 100 rows': '100 registros anteriores',
'Private files': 'Private files',
'private files': 'private files',
'Profile updated': 'Profile updated',
@@ -497,7 +451,6 @@
'Ram Cleared': 'Ram Cleared',
'Rapid Search': 'Rapid Search',
'Record': 'Record',
-'record': 'registro',
'Record %(id)s created': 'Record %(id)s created',
'Record %(id)s deleted': 'Record %(id)s deleted',
'Record %(id)s read': 'Record %(id)s read',
@@ -505,13 +458,11 @@
'Record Created': 'Record Created',
'Record Deleted': 'Record Deleted',
'record does not exist': 'o registro não existe',
-'record id': 'id do registro',
-'Record ID': 'ID do Registro',
'Record id': 'Record id',
+'Record ID': 'ID do Registro',
'Record Updated': 'Record Updated',
'refresh': 'refresh',
'register': 'register',
-'Register': 'Registrar-se',
'Registration identifier': 'Registration identifier',
'Registration is pending approval': 'Registration is pending approval',
'Registration key': 'Chave de registro',
@@ -541,7 +492,6 @@
'Revision:': 'Revision:',
'Role': 'Papel',
'Roles': 'Roles',
-'Rows in table': 'Registros na tabela',
'Rows in Table': 'Rows in Table',
'Rows selected': 'Registros selecionados',
'rules are not defined': 'rules are not defined',
@@ -550,7 +500,6 @@
"Run tests in this file (to run all files, you may also use the button labelled 'test')": "Run tests in this file (to run all files, you may also use the button labelled 'test')",
'Running on %s': 'Rodando em %s',
'Save': 'Save',
-'save': 'salvar',
'Save file:': 'Save file:',
'Save file: %s': 'Save file: %s',
'Save model as...': 'Save model as...',
@@ -559,7 +508,6 @@
'Screenshot %s': 'Screenshot %s',
'Search': 'Search',
'Select Files to Package': 'Selecione arquivos para empacotar',
-'selected': 'selecionado(s)',
'session': 'session',
'session expired': 'sessão expirada',
'Session saved correctly': 'Session saved correctly',
@@ -581,35 +529,29 @@
'Start searching': 'Start searching',
'Start wizard': 'Iniciar assistente',
'state': 'estado',
-'Static': 'Static',
'static': 'estáticos',
+'Static': 'Static',
'Static files': 'Arquivos estáticos',
'Statistics': 'Statistics',
'Step': 'Passo',
'step': 'step',
'stop': 'stop',
-'submit': 'enviar',
'Submit': 'Enviar',
+'submit': 'enviar',
'successful': 'successful',
-'Sure you want to delete this object?': 'Tem certeza que deseja apagar este objeto?',
'switch to : db': 'switch to : db',
'switch to : filesystem': 'switch to : filesystem',
'Tab width (# characters)': 'Tab width (# characters)',
-'table': 'tabela',
'Table': 'Table',
-'Table name': 'Nome da tabela',
'Temporary': 'Temporary',
'test': 'testar',
'Testing application': 'Testando a aplicação',
'The "query" is a condition like "db.table1.field1==\'value\'". Something like "db.table1.field1==db.table2.field2" results in a SQL JOIN.': 'A "consulta" é uma condição como "db.tabela.campo1==\'valor\'". Algo como "db.tabela1.campo1==db.tabela2.campo2" resulta em um JOIN SQL.',
'The app exists, was created by wizard, continue to overwrite!': 'The app exists, was created by wizard, continue to overwrite!',
'The app exists, was NOT created by wizard, continue to overwrite!': 'The app exists, was NOT created by wizard, continue to overwrite!',
-'the application logic, each URL path is mapped in one exposed function in the controller': 'A lógica da aplicação, cada URL é mapeada para uma função exposta pelo controlador',
'The application logic, each URL path is mapped in one exposed function in the controller': 'A lógica da aplicação, cada URL é mapeada para uma função exposta pelo controlador',
-'the data representation, define database tables and sets': 'A representação dos dados, define tabelas do banco de dados e conjuntos',
'The data representation, define database tables and sets': 'A representação dos dados, define tabelas do banco de dados e conjuntos',
'The presentations layer, views are also known as templates': 'A camada de apresentação, as visões também são chamadas de templates',
-'the presentations layer, views are also known as templates': 'A camada de apresentação, as visões também são chamadas de templates',
'Theme': 'Theme',
'There are no controllers': 'Não existem controladores',
'There are no models': 'Não existem modelos',
@@ -622,13 +564,11 @@
'There are no views': 'Não existem visões',
'These files are not served, they are only available from within your app': 'These files are not served, they are only available from within your app',
'These files are served without processing, your images go here': 'Estes arquivos são servidos sem processamento, suas imagens ficam aqui',
-'these files are served without processing, your images go here': 'Estes arquivos são servidos sem processamento, suas imagens ficam aqui',
'This code was emailed to you and is required for login.': 'This code was emailed to you and is required for login.',
"This debugger may not work properly if you don't have a threaded webserver or you're using multiple daemon processes.": "This debugger may not work properly if you don't have a threaded webserver or you're using multiple daemon processes.",
'This email already has an account': 'This email already has an account',
'This is an experimental feature and it needs more testing. If you decide to downgrade you do it at your own risk': 'This is an experimental feature and it needs more testing. If you decide to downgrade you do it at your own risk',
'This is an experimental feature and it needs more testing. If you decide to upgrade you do it at your own risk': 'This is an experimental feature and it needs more testing. If you decide to upgrade you do it at your own risk',
-'This is the %(filename)s template': 'Este é o template %(filename)s',
"This page can commit your changes to an openshift app repo and push them to your cloud instance. This assumes that you've already created the application instance using the web2py skeleton and have that repo somewhere on a filesystem that this web2py instance can access. This functionality requires GitPython installed and on the python path of the runtime that web2py is operating in.": "This page can commit your changes to an openshift app repo and push them to your cloud instance. This assumes that you've already created the application instance using the web2py skeleton and have that repo somewhere on a filesystem that this web2py instance can access. This functionality requires GitPython installed and on the python path of the runtime that web2py is operating in.",
'This page can upload your application to the Google App Engine computing cloud. Mind that you must first create indexes locally and this is done by installing the Google appserver and running the app locally with it once, or there will be errors when selecting records. Attention: deployment may take long time, depending on the network speed. Attention: it will overwrite your app.yaml. DO NOT SUBMIT TWICE.': 'This page can upload your application to the Google App Engine computing cloud. Mind that you must first create indexes locally and this is done by installing the Google appserver and running the app locally with it once, or there will be errors when selecting records. Attention: deployment may take long time, depending on the network speed. Attention: it will overwrite your app.yaml. DO NOT SUBMIT TWICE.',
'this page to see if a breakpoint was hit and debug interaction is required.': 'this page to see if a breakpoint was hit and debug interaction is required.',
@@ -639,7 +579,6 @@
'Ticket Missing': 'Ticket Missing',
'Time in Cache (h:m:s)': 'Time in Cache (h:m:s)',
'Timestamp': 'Momento de geração',
-'TM': 'MR',
'to previous version.': 'para a versão anterior.',
'To create a plugin, name a file/folder plugin_[name]': 'Para criar um plugin, nomeie um arquivo/pasta como plugin_[nome]',
'To emulate a breakpoint programatically, write:': 'To emulate a breakpoint programatically, write:',
@@ -648,9 +587,7 @@
'Toggle comment': 'Toggle comment',
'Toggle Fullscreen': 'Toggle Fullscreen',
'Traceback': 'Traceback',
-'translation strings for the application': 'textos traduzidos para a aplicação',
'Translation strings for the application': 'textos traduzidos para a aplicação',
-'try': 'tente',
'try something like': 'tente algo como',
'Try the mobile interface': 'Experimente a interface para smartphones e tablets',
'try view': 'try view',
@@ -662,10 +599,7 @@
'unable to delete file "%(filename)s"': 'não é possível criar o arquivo "%(filename)s"',
'unable to delete file plugin "%(plugin)s"': 'não é possível criar o plugin "%(plugin)s"',
'Unable to determine the line number!': 'Unable to determine the line number!',
-'Unable to download': 'Não é possível efetuar o download',
-'Unable to download app': 'Não é possível baixar a aplicação',
'Unable to download app because:': 'Não é possível baixar a aplicação porque:',
-'Unable to download because': 'Não é possível baixar porque',
'unable to download layout': 'unable to download layout',
'unable to download plugin: %s': 'unable to download plugin: %s',
'Unable to download the list of plugins': 'Unable to download the list of plugins',
@@ -682,17 +616,13 @@
'Update:': 'Alterar:',
'Upgrade': 'Upgrade',
'upgrade now to %s': 'Atualize agora para %s',
-'upgrade web2py now': 'atualize o web2py agora',
'upload': 'upload',
'Upload': 'Upload',
'Upload a package:': 'Faça upload de um pacote:',
'Upload and install packed application': 'Faça upload e instale uma aplicação empacotada',
-'upload application:': 'Fazer upload de uma aplicação:',
-'Upload existing application': 'Faça upload de uma aplicação existente',
'upload file:': 'Enviar arquivo:',
'upload plugin file:': 'Enviar arquivo de plugin:',
'Use (...)&(...) for AND, (...)|(...) for OR, and ~(...) for NOT to build more complex queries.': 'Use (...)&(...) para AND, (...)|(...) para OR, e ~(...) para NOT, para criar consultas mais complexas.',
-'Use an url:': 'Use uma url:',
'User': 'User',
'User %(id)s is impersonating %(other_id)s': 'User %(id)s is impersonating %(other_id)s',
'User %(id)s Logged-in': 'User %(id)s Logged-in',
@@ -715,8 +645,6 @@
'Verify Password': 'Verify Password',
'Version': 'Versão',
'Versioning': 'Versionamento',
-'versioning': 'versionamento',
-'view': 'visão',
'Views': 'Visões',
'views': 'visões',
'Warning!': 'Warning!',
@@ -729,11 +657,9 @@
'web2py downgrade': 'web2py downgrade',
'web2py is up to date': 'web2py está atualizado',
'web2py online debugger': 'web2py online debugger',
-'web2py Recent Tweets': 'Tweets Recentes de @web2py',
'web2py upgrade': 'web2py upgrade',
'web2py upgraded; please restart it': 'web2py atualizado; favor reiniciar',
'Welcome %(username)s! Click on the link %(link)s to verify your email': 'Welcome %(username)s! Click on the link %(link)s to verify your email',
-'Welcome to web2py': 'Bem-vindo ao web2py',
'Working...': 'Working...',
'WSGI reference name': 'WSGI reference name',
'YES': 'SIM',
diff --git a/applications/admin/languages/pt.py b/applications/admin/languages/pt.py
old mode 100755
new mode 100644
index f88d4c37..b7959d8c
--- a/applications/admin/languages/pt.py
+++ b/applications/admin/languages/pt.py
@@ -11,7 +11,6 @@
'%s students registered': '%s students registered',
'%Y-%m-%d': '%d/%m/%Y',
'%Y-%m-%d %H:%M:%S': '%d/%m/%Y %H:%M:%S',
-'(requires internet access)': '(requer acesso à internet)',
'(requires internet access, experimental)': '(requer acesso à internet, experimental)',
'(something like "it-it")': '(algo como "it-it")',
'(version %s)': '(version %s)',
@@ -33,14 +32,11 @@
'@markmin\x01Searching: **%s** %%{file}': 'Searching: **%s** files',
'@markmin\x01You need to set up and reach a [[breakpoint %s]] to use the debugger!': 'You need to set up and reach a [[breakpoint %s]] to use the debugger!',
'A new password was emailed to you': 'A new password was emailed to you',
-'A new version of web2py is available': 'Está disponível uma nova versão do web2py',
-'A new version of web2py is available: %s': 'Está disponível uma nova versão do web2py: %s',
'Abort': 'Abort',
'About': 'sobre',
'About application': 'Sobre a aplicação',
'Accept Terms': 'Accept Terms',
'Add breakpoint': 'Add breakpoint',
-'additional code for your application': 'código adicional para sua aplicação',
'Additional code for your application': 'Código adicional para a sua aplicação',
'Admin design page': 'Admin design page',
'admin disabled because no admin password': ' admin desabilitado por falta de senha definida',
@@ -48,12 +44,10 @@
'admin disabled because too many invalid login attempts': 'admin disabled because too many invalid login attempts',
'admin disabled because unable to access password file': 'admin desabilitado, não foi possível ler o arquivo de senha',
'Admin is disabled because insecure channel': 'Admin desabilitado pois o canal não é seguro',
-'Admin is disabled because unsecure channel': 'Admin desabilitado pois o canal não é seguro',
'Admin language': 'Linguagem do Admin',
'Admin versioning page': 'Admin versioning page',
'administrative interface': 'interface administrativa',
'Administrator Password:': 'Senha de administrador:',
-'and rename it (required):': 'e renomeie (requerido):',
'and rename it:': ' e renomeie:',
'App does not exist or you are not authorized': 'App does not exist or you are not authorized',
'appadmin': 'appadmin',
@@ -72,9 +66,7 @@
'Are you sure you want to delete file "%s"?': 'Tem certeza que deseja apagar o arquivo "%s"?',
'Are you sure you want to delete plugin "%s"?': 'Tem certeza que deseja apagar o plugin "%s"?',
'Are you sure you want to delete this object?': 'Are you sure you want to delete this object?',
-'Are you sure you want to uninstall application "%s"': 'Tem certeza que deseja apagar a aplicação "%s"?',
'Are you sure you want to uninstall application "%s"?': 'Tem certeza que deseja apagar a aplicação "%s"?',
-'Are you sure you want to upgrade web2py now?': 'Tem certeza que deseja atualizar o web2py agora?',
'Are you sure?': 'Are you sure?',
'arguments': 'argumentos',
'at char %s': 'at char %s',
@@ -85,7 +77,6 @@
'ATTENTION: you cannot edit the running application!': 'ATENÇÃO: Não pode modificar a aplicação em execução!',
'Authentication code': 'Authentication code',
'Autocomplete Python Code': 'Autocompletar Código Python',
-'Available databases and tables': 'Bancos de dados e tabelas disponíveis',
'Available Databases and Tables': 'Available Databases and Tables',
'back': 'voltar',
'Back to the plugins list': 'Back to the plugins list',
@@ -95,7 +86,6 @@
'breakpoint': 'breakpoint',
'Breakpoints': 'Breakpoints',
'breakpoints': 'breakpoints',
-'browse': 'buscar',
'Bulk Register': 'Bulk Register',
'Bulk Student Registration': 'Bulk Student Registration',
'Cache': 'Cache',
@@ -106,14 +96,12 @@
'can be a git repo': 'can be a git repo',
'Cancel': 'Cancel',
'Cannot be empty': 'Não pode ser vazio',
-'Cannot compile: there are errors in your app. Debug it, correct errors and try again.': 'Não é possível compilar: Existem erros em sua aplicação. Depure, corrija os errros e tente novamente',
'Cannot compile: there are errors in your app:': 'Não é possível compilar: Existem erros em sua aplicação',
'cannot create file': 'Não é possível criar o arquivo',
'cannot upload file "%(filename)s"': 'não é possível fazer upload do arquivo "%(filename)s"',
'Change Admin Password': 'Change Admin Password',
'Change admin password': 'mudar senha de administrador',
'change editor settings': 'mudar definições do editor',
-'Change Password': 'Trocar Senha',
'Change password': 'Change password',
'Changelog': 'Changelog',
'check all': 'marcar todos',
@@ -125,13 +113,9 @@
'Clear CACHE?': 'Clear CACHE?',
'Clear DISK': 'Clear DISK',
'Clear RAM': 'Clear RAM',
-'click here for online examples': 'clique para ver exemplos online',
-'click here for the administrative interface': 'Clique aqui para acessar a interface administrativa',
'Click on the link %(link)s to reset your password': 'Click on the link %(link)s to reset your password',
'Click row to expand traceback': 'Clique em uma coluna para expandir o log do erro',
'Click row to view a ticket': 'Click row to view a ticket',
-'click to check for upgrades': 'clique aqui para checar por atualizações',
-'click to open': 'clique para abrir',
'Client IP': 'IP do cliente',
'code': 'código',
'Code listing': 'Code listing',
@@ -139,7 +123,6 @@
'Command': 'Command',
'Comment:': 'Comment:',
'Commit': 'Commit',
-'commit (mercurial)': 'commit (mercurial)',
'Commit form': 'Commit form',
'Committed files': 'Committed files',
'Compile': 'compilar',
@@ -153,9 +136,6 @@
'Count': 'Contagem',
'Create': 'criar',
'create file with filename:': 'criar um arquivo com o nome:',
-'Create new application using the Wizard': 'Criar nova aplicação utilizando o assistente',
-'create new application:': 'nome da nova aplicação:',
-'Create new simple application': 'Crie uma nova aplicação',
'Create/Upload': 'Create/Upload',
'created by': 'criado por',
'Created by:': 'Created by:',
@@ -167,12 +147,9 @@
'Current session': 'Sessão atual',
'currently running': 'Executando',
'currently saved or': 'Atualmente salvo ou',
-'customize me!': 'Modifique-me',
'data uploaded': 'Dados enviados',
'Database': 'Database',
-'database': 'banco de dados',
'Database %s select': 'Database %s select',
-'database %s select': 'Seleção no banco de dados %s',
'Database administration': 'Database administration',
'database administration': 'administração de banco de dados',
'Database Administration (appadmin)': 'Database Administration (appadmin)',
@@ -198,8 +175,6 @@
'Description': 'Descrição',
'Description:': 'Description:',
'design': 'modificar',
-'DESIGN': 'Projeto',
-'Design for': 'Projeto de',
'Detailed traceback description': 'Detailed traceback description',
'details': 'details',
'direction: ltr': 'direção: ltr',
@@ -225,18 +200,13 @@
'download plugins': 'download plugins',
'Download plugins from repository': 'Download plugins from repository',
'E-mail': 'E-mail',
-'EDIT': 'EDITAR',
'Edit': 'editar',
'edit all': 'edit all',
'Edit application': 'Editar aplicação',
-'edit controller': 'editar controlador',
'edit controller:': 'edit controller:',
'Edit current record': 'Editar o registro atual',
-'Edit Profile': 'Editar Perfil',
'edit views:': 'editar visões:',
'Editing %s': 'A Editar %s',
-'Editing file': 'Editando arquivo',
-'Editing file "%s"': 'Editando arquivo "%s"',
'Editing Language file': 'Editando arquivo de linguagem',
'Editing Plural Forms File': 'Editing Plural Forms File',
'Editor': 'Editor',
@@ -247,7 +217,6 @@
'Enable': 'Enable',
'Enable Close-Tag': 'Enable Close-Tag',
'Enable Code Folding': 'Enable Code Folding',
-'Enterprise Web Framework': 'Framework web empresarial',
'Error': 'Erro',
'Error logs for "%(app)s"': 'Logs de erro para "%(app)s"',
'Error snapshot': 'Error snapshot',
@@ -264,13 +233,11 @@
'exposes:': 'exposes:',
'extends': 'estende',
'failed to compile file because:': 'failed to compile file because:',
-'failed to reload module': 'Falha ao recarregar o módulo',
'failed to reload module because:': 'falha ao recarregar o módulo por:',
'File': 'Arquivo',
'file "%(filename)s" created': 'arquivo "%(filename)s" criado',
'file "%(filename)s" deleted': 'arquivo "%(filename)s" apagado',
'file "%(filename)s" uploaded': 'arquivo "%(filename)s" enviado',
-'file "%(filename)s" was not deleted': 'arquivo "%(filename)s" não foi apagado',
'file "%s" of %s restored': 'arquivo "%s" de %s restaurado',
'file changed on disk': 'arquivo modificado no disco',
'file does not exist': 'arquivo não existe',
@@ -299,13 +266,12 @@
'Google App Engine Deployment Interface': 'Google App Engine Deployment Interface',
'Google Application Id': 'Google Application Id',
'Goto': 'Goto',
-'graph model': 'graph model',
'Graph Model': 'Graph Model',
+'graph model': 'graph model',
'Group %(group_id)s created': 'Group %(group_id)s created',
'Group %(group_id)s deleted': 'Group %(group_id)s deleted',
'Group ID': 'ID do Grupo',
'Group uniquely assigned to user %(id)s': 'Group uniquely assigned to user %(id)s',
-'Hello World': 'Olá Mundo',
'Help': 'ajuda',
'here': 'here',
'Hide/Show Translated strings': '',
@@ -313,7 +279,6 @@
'Hits': 'Hits',
'Home': 'Home',
'honored only if the expression evaluates to true': 'honored only if the expression evaluates to true',
-'htmledit': 'htmledit',
'If start the downgrade, be patient, it may take a while to rollback': 'If start the downgrade, be patient, it may take a while to rollback',
'If start the upgrade, be patient, it may take a while to download': 'If start the upgrade, be patient, it may take a while to download',
'If the report above contains a ticket number it indicates a failure in executing the controller, before any attempt to execute the doctests. This is usually due to an indentation error or an error outside function code.\n\t\tA green title indicates that all tests (if defined) passed. In this case test results are not shown.': 'If the report above contains a ticket number it indicates a failure in executing the controller, before any attempt to execute the doctests. This is usually due to an indentation error or an error outside function code.\n\t\tA green title indicates that all tests (if defined) passed. In this case test results are not shown.',
@@ -325,8 +290,6 @@
'includes': 'inclui',
'Incorrect code. {0} more attempt(s) remaining.': 'Incorrect code. {0} more attempt(s) remaining.',
'Indent with tabs': 'Indent with tabs',
-'insert new': 'inserir novo',
-'insert new %s': 'inserir novo %s',
'inspect attributes': 'inspecionar atributos',
'Install': 'instalar',
'Installation of %(plugin)s for %(app)s': 'Installation of %(plugin)s for %(app)s',
@@ -364,7 +327,6 @@
'Language files (static strings) updated': 'Arquivos de linguagem (textos estáticos) atualizados',
'languages': 'linguagens',
'Languages': 'Linguagens',
-'languages updated': 'linguagens atualizadas',
'Last name': 'Sobrenome',
'Last Revision': 'Last Revision',
'Last saved on:': 'Salvo em:',
@@ -375,25 +337,21 @@
'lists by exception': 'lists by exception',
'lists by ticket': 'lists by ticket',
'Loading...': 'Loading...',
-'loading...': 'carregando...',
'Local Apps': 'Local Apps',
'locals': 'locals',
'Locals##debug': 'Locals##debug',
'Log In': 'Log In',
'Logged in': 'Logged in',
'Logged out': 'Logged out',
-'login': 'inicio de sessão',
'Login': 'Entrar',
'Login disabled by administrator': 'Login disabled by administrator',
'Login successful': 'Login successful',
'Login to the Administrative Interface': 'Entrar na interface adminitrativa',
'Login/Register': 'Login/Register',
'Logout': 'finalizar sessão',
-'Lost Password': 'Senha perdida',
'lost password': 'lost password',
'Main Menu': 'Main Menu',
'Manage': 'Manage',
-'manage': 'gerenciar',
'Manage %(action)s': 'Manage %(action)s',
'Manage Access Control': 'Manage Access Control',
'Manage Admin Users/Students': 'Manage Admin Users/Students',
@@ -401,8 +359,8 @@
'Manage Students': 'Manage Students',
'Memberships': 'Memberships',
'merge': 'juntar',
-'models': 'modelos',
'Models': 'Modelos',
+'models': 'modelos',
'Modified On': 'Modified On',
'Modules': 'Módulos',
'modules': 'módulos',
@@ -420,7 +378,6 @@
'New simple application': 'Nova aplicação básica',
'next': 'next',
'next %s rows': 'next %s rows',
-'next 100 rows': 'próximos 100 registros',
'NO': 'NÃO',
'no changes': 'no changes',
'No databases in this application': 'Não existem bancos de dados nesta aplicação',
@@ -428,7 +385,6 @@
'no match': 'não encontrado',
'no package selected': 'nenhum pacote selecionado',
'no permission to uninstall "%s"': 'no permission to uninstall "%s"',
-'No ticket_storage.txt found under /private folder': 'No ticket_storage.txt found under /private folder',
'Node:': 'Node:',
'Not Authorized': 'Not Authorized',
'Not supported': 'Not supported',
@@ -436,15 +392,12 @@
'Object or table name': 'Object or table name',
'Old password': 'Old password',
"On production, you'll have to configure your webserver to use one process and multiple threads to use this debugger.": "On production, you'll have to configure your webserver to use one process and multiple threads to use this debugger.",
-'online designer': 'online designer',
'Open new app in new window': 'Open new app in new window',
'OpenShift Deployment Interface': 'OpenShift Deployment Interface',
'OpenShift Output': 'OpenShift Output',
'or alternatively': 'or alternatively',
'Or Get from URL:': 'Ou Obtenha do URL:',
'or import from csv file': 'ou importar de um arquivo CSV',
-'or provide app url:': 'ou forneça a url de uma aplicação:',
-'or provide application url:': 'ou forneça a url de uma aplicação:',
'Origin': 'Origem',
'Original/Translation': 'Original/Tradução',
'Overview': 'Overview',
@@ -453,7 +406,6 @@
'Pack compiled': 'criar pacote compilado',
'Pack custom': 'Pack custom',
'pack plugin': 'empacotar plugin',
-'PAM authenticated user, cannot change password here': 'usuario autenticado por PAM, não pode alterar a senha por aqui',
'Password': 'Senha',
'password changed': 'senha alterada',
'Password changed': 'Password changed',
@@ -481,7 +433,6 @@
'Preferences saved correctly': 'Preferences saved correctly',
'Preferences saved on session only': 'Preferences saved on session only',
'previous %s rows': 'previous %s rows',
-'previous 100 rows': '100 registros anteriores',
'Private files': 'Private files',
'private files': 'private files',
'Profile updated': 'Profile updated',
@@ -499,9 +450,7 @@
'RAM Cache Keys': 'RAM Cache Keys',
'Ram Cleared': 'Ram Cleared',
'Rapid Search': 'Rapid Search',
-'Read': 'Read',
'Record': 'Record',
-'record': 'registro',
'Record %(id)s created': 'Record %(id)s created',
'Record %(id)s deleted': 'Record %(id)s deleted',
'Record %(id)s read': 'Record %(id)s read',
@@ -509,13 +458,11 @@
'Record Created': 'Record Created',
'Record Deleted': 'Record Deleted',
'record does not exist': 'o registro não existe',
-'record id': 'id do registro',
-'Record ID': 'ID do Registro',
'Record id': 'Record id',
+'Record ID': 'ID do Registro',
'Record Updated': 'Record Updated',
'refresh': 'refresh',
'register': 'register',
-'Register': 'Registrar-se',
'Registration identifier': 'Registration identifier',
'Registration is pending approval': 'Registration is pending approval',
'Registration key': 'Chave de registro',
@@ -545,7 +492,6 @@
'Revision:': 'Revision:',
'Role': 'Papel',
'Roles': 'Roles',
-'Rows in table': 'Registros na tabela',
'Rows in Table': 'Rows in Table',
'Rows selected': 'Registros selecionados',
'rules are not defined': 'rules are not defined',
@@ -554,7 +500,6 @@
"Run tests in this file (to run all files, you may also use the button labelled 'test')": "Run tests in this file (to run all files, you may also use the button labelled 'test')",
'Running on %s': 'A correr em %s',
'Save': 'Save',
-'save': 'salvar',
'Save file:': 'Gravar ficheiro:',
'Save file: %s': 'Gravar ficheiro: %s',
'Save model as...': 'Save model as...',
@@ -563,7 +508,6 @@
'Screenshot %s': 'Screenshot %s',
'Search': 'Search',
'Select Files to Package': 'Select Files to Package',
-'selected': 'selecionado(s)',
'session': 'session',
'session expired': 'sessão expirada',
'Session saved correctly': 'Session saved correctly',
@@ -585,35 +529,29 @@
'Start searching': 'Start searching',
'Start wizard': 'iniciar assistente',
'state': 'estado',
-'Static': 'Static',
'static': 'estáticos',
+'Static': 'Static',
'Static files': 'Arquivos estáticos',
'Statistics': 'Statistics',
'Step': 'Step',
'step': 'step',
'stop': 'stop',
-'submit': 'enviar',
'Submit': 'Submit',
+'submit': 'enviar',
'successful': 'successful',
-'Sure you want to delete this object?': 'Tem certeza que deseja apaagr este objeto?',
'switch to : db': 'switch to : db',
'switch to : filesystem': 'switch to : filesystem',
'Tab width (# characters)': 'Tab width (# characters)',
-'table': 'tabela',
'Table': 'Table',
-'Table name': 'Nome da tabela',
'Temporary': 'Temporary',
'test': 'testar',
'Testing application': 'Testando a aplicação',
'The "query" is a condition like "db.table1.field1==\'value\'". Something like "db.table1.field1==db.table2.field2" results in a SQL JOIN.': 'A "consulta" é uma condição como "db.tabela.campo1==\'valor\'". Algo como "db.tabela1.campo1==db.tabela2.campo2" resulta em um JOIN SQL.',
'The app exists, was created by wizard, continue to overwrite!': 'The app exists, was created by wizard, continue to overwrite!',
'The app exists, was NOT created by wizard, continue to overwrite!': 'The app exists, was NOT created by wizard, continue to overwrite!',
-'the application logic, each URL path is mapped in one exposed function in the controller': 'A lógica da aplicação, cada URL é mapeada para uma função exposta pelo controlador',
'The application logic, each URL path is mapped in one exposed function in the controller': 'The application logic, each URL path is mapped in one exposed function in the controller',
-'the data representation, define database tables and sets': 'A representação dos dadps, define tabelas e estruturas de dados',
'The data representation, define database tables and sets': 'The data representation, define database tables and sets',
'The presentations layer, views are also known as templates': 'The presentations layer, views are also known as templates',
-'the presentations layer, views are also known as templates': 'A camada de apresentação, As visões também são chamadas de templates',
'Theme': 'Theme',
'There are no controllers': 'Não existem controllers',
'There are no models': 'Não existem modelos',
@@ -626,13 +564,11 @@
'There are no views': 'Não existem visões',
'These files are not served, they are only available from within your app': 'These files are not served, they are only available from within your app',
'These files are served without processing, your images go here': 'These files are served without processing, your images go here',
-'these files are served without processing, your images go here': 'Estes arquivos são servidos sem processamento, suas imagens ficam aqui',
'This code was emailed to you and is required for login.': 'This code was emailed to you and is required for login.',
"This debugger may not work properly if you don't have a threaded webserver or you're using multiple daemon processes.": "This debugger may not work properly if you don't have a threaded webserver or you're using multiple daemon processes.",
'This email already has an account': 'This email already has an account',
'This is an experimental feature and it needs more testing. If you decide to downgrade you do it at your own risk': 'This is an experimental feature and it needs more testing. If you decide to downgrade you do it at your own risk',
'This is an experimental feature and it needs more testing. If you decide to upgrade you do it at your own risk': 'This is an experimental feature and it needs more testing. If you decide to upgrade you do it at your own risk',
-'This is the %(filename)s template': 'Este é o template %(filename)s',
"This page can commit your changes to an openshift app repo and push them to your cloud instance. This assumes that you've already created the application instance using the web2py skeleton and have that repo somewhere on a filesystem that this web2py instance can access. This functionality requires GitPython installed and on the python path of the runtime that web2py is operating in.": "This page can commit your changes to an openshift app repo and push them to your cloud instance. This assumes that you've already created the application instance using the web2py skeleton and have that repo somewhere on a filesystem that this web2py instance can access. This functionality requires GitPython installed and on the python path of the runtime that web2py is operating in.",
'This page can upload your application to the Google App Engine computing cloud. Mind that you must first create indexes locally and this is done by installing the Google appserver and running the app locally with it once, or there will be errors when selecting records. Attention: deployment may take long time, depending on the network speed. Attention: it will overwrite your app.yaml. DO NOT SUBMIT TWICE.': 'This page can upload your application to the Google App Engine computing cloud. Mind that you must first create indexes locally and this is done by installing the Google appserver and running the app locally with it once, or there will be errors when selecting records. Attention: deployment may take long time, depending on the network speed. Attention: it will overwrite your app.yaml. DO NOT SUBMIT TWICE.',
'this page to see if a breakpoint was hit and debug interaction is required.': 'this page to see if a breakpoint was hit and debug interaction is required.',
@@ -643,7 +579,6 @@
'Ticket Missing': 'Ticket Missing',
'Time in Cache (h:m:s)': 'Time in Cache (h:m:s)',
'Timestamp': 'Data Atual',
-'TM': 'MR',
'to previous version.': 'para a versão anterior.',
'To create a plugin, name a file/folder plugin_[name]': 'Para criar um plugin, nomeio um arquivo/pasta como plugin_[nome]',
'To emulate a breakpoint programatically, write:': 'To emulate a breakpoint programatically, write:',
@@ -652,9 +587,7 @@
'Toggle comment': 'Toggle comment',
'Toggle Fullscreen': 'Toggle Fullscreen',
'Traceback': 'Traceback',
-'translation strings for the application': 'textos traduzidos para a aplicação',
'Translation strings for the application': 'Translation strings for the application',
-'try': 'tente',
'try something like': 'tente algo como',
'Try the mobile interface': 'Try the mobile interface',
'try view': 'try view',
@@ -666,10 +599,7 @@
'unable to delete file "%(filename)s"': 'não é possível criar o arquico "%(filename)s"',
'unable to delete file plugin "%(plugin)s"': 'não é possível criar o plugin "%(plugin)s"',
'Unable to determine the line number!': 'Unable to determine the line number!',
-'Unable to download': 'Não é possível efetuar o download',
-'Unable to download app': 'Não é possível baixar a aplicação',
'Unable to download app because:': 'Não é possível baixar a aplicação porque:',
-'Unable to download because': 'Não é possível baixar porque',
'unable to download layout': 'unable to download layout',
'unable to download plugin: %s': 'unable to download plugin: %s',
'Unable to download the list of plugins': 'Unable to download the list of plugins',
@@ -686,18 +616,13 @@
'Update:': 'Atualizar:',
'Upgrade': 'Upgrade',
'upgrade now to %s': 'upgrade now to %s',
-'upgrade web2py now': 'atualize o web2py agora',
'upload': 'upload',
'Upload': 'Upload',
-'Upload & install packed application': 'Faça upload e instale uma aplicação empacotada',
'Upload a package:': 'Faça upload de um pacote:',
'Upload and install packed application': 'Upload and install packed application',
-'upload application:': 'Fazer upload de uma aplicação:',
-'Upload existing application': 'Faça upload de uma aplicação existente',
'upload file:': 'Enviar arquivo:',
'upload plugin file:': 'Enviar arquivo de plugin:',
'Use (...)&(...) for AND, (...)|(...) for OR, and ~(...) for NOT to build more complex queries.': 'Use (...)&(...) para AND, (...)|(...) para OR, y ~(...) para NOT, para criar consultas mais complexas.',
-'Use an url:': 'Use uma url:',
'User': 'User',
'User %(id)s is impersonating %(other_id)s': 'User %(id)s is impersonating %(other_id)s',
'User %(id)s Logged-in': 'User %(id)s Logged-in',
@@ -720,8 +645,6 @@
'Verify Password': 'Verify Password',
'Version': 'Versão',
'Versioning': 'Versioning',
-'versioning': 'versionamento',
-'view': 'visão',
'Views': 'Visões',
'views': 'visões',
'Warning!': 'Warning!',
@@ -734,11 +657,9 @@
'web2py downgrade': 'web2py downgrade',
'web2py is up to date': 'web2py está atualizado',
'web2py online debugger': 'web2py online debugger',
-'web2py Recent Tweets': 'Tweets Recentes de @web2py',
'web2py upgrade': 'web2py upgrade',
'web2py upgraded; please restart it': 'web2py atualizado; favor reiniciar',
'Welcome %(username)s! Click on the link %(link)s to verify your email': 'Welcome %(username)s! Click on the link %(link)s to verify your email',
-'Welcome to web2py': 'Bem-vindo ao web2py',
'Working...': 'Working...',
'WSGI reference name': 'WSGI reference name',
'YES': 'SIM',
diff --git a/applications/admin/languages/ro.py b/applications/admin/languages/ro.py
old mode 100755
new mode 100644
index d0566f61..b7795d6b
--- a/applications/admin/languages/ro.py
+++ b/applications/admin/languages/ro.py
@@ -1,11 +1,9 @@
# -*- coding: utf-8 -*-
{
-'!=': '!=',
'!langcode!': 'ro',
'!langname!': 'Română',
'"update" is an optional expression like "field1=\'newvalue\'". You cannot update or delete the results of a JOIN': '"update" (actualizează) este o expresie opțională precum "câmp1=\'valoare_nouă\'". Nu puteți actualiza sau șterge rezultatele unui JOIN',
'"User Exception" debug mode. ': '"User Exception" debug mode. ',
-'%(nrows)s records found': '%(nrows)s înregistrări găsite',
'%s': '%s',
'%s %%{row} deleted': '%s linii șterse',
'%s %%{row} updated': '%s linii actualizate',
@@ -13,15 +11,9 @@
'%s students registered': '%s students registered',
'%Y-%m-%d': '%Y-%m-%d',
'%Y-%m-%d %H:%M:%S': '%Y-%m-%d %H:%M:%S',
-'(requires internet access)': '(are nevoie de acces internet)',
'(requires internet access, experimental)': '(requires internet access, experimental)',
'(something like "it-it")': '(ceva ce seamănă cu "it-it")',
'(version %s)': '(version %s)',
-'<': '<',
-'<=': '<=',
-'=': '=',
-'>': '>',
-'>=': '>=',
'?': '?',
'@markmin\x01(**%.0d MB**)': '(**%.0d MB**)',
'@markmin\x01(file **gluon/contrib/plural_rules/%s.py** is not found)': '(file **gluon/contrib/plural_rules/%s.py** is not found)',
@@ -40,17 +32,11 @@
'@markmin\x01Searching: **%s** %%{file}': 'Căutare: **%s** fișiere',
'@markmin\x01You need to set up and reach a [[breakpoint %s]] to use the debugger!': 'You need to set up and reach a [[breakpoint %s]] to use the debugger!',
'A new password was emailed to you': 'A new password was emailed to you',
-'A new version of web2py is available': 'O nouă versiune de web2py este disponibilă',
-'A new version of web2py is available: %s': 'O nouă versiune de web2py este disponibilă: %s',
'Abort': 'Anulează',
'About': 'Despre',
-'about': 'despre',
'About application': 'Despre aplicație',
'Accept Terms': 'Accept Terms',
-'Access Control': 'Control acces',
-'Add': 'Adaugă',
'Add breakpoint': 'Add breakpoint',
-'additional code for your application': 'cod suplimentar pentru aplicația dvs.',
'Additional code for your application': 'Cod suplimentar pentru aplicație',
'Admin design page': 'Admin design page',
'admin disabled because no admin password': 'administrare dezactivată deoarece parola de administrator nu a fost furnizată',
@@ -58,16 +44,10 @@
'admin disabled because too many invalid login attempts': 'admin disabled because too many invalid login attempts',
'admin disabled because unable to access password file': 'administrare dezactivată deoarece nu există acces la fișierul cu parole',
'Admin is disabled because insecure channel': 'Adminstrarea este dezactivată deoarece conexiunea nu este sigură',
-'Admin is disabled because unsecure channel': 'Administrarea este dezactivată deoarece conexiunea nu este securizată',
'Admin language': 'Limba de administrare',
'Admin versioning page': 'Admin versioning page',
-'Administration': 'Administrare',
'administrative interface': 'interfață de administrare',
-'Administrative Interface': 'Interfață administrare',
'Administrator Password:': 'Parolă administrator:',
-'Ajax Recipes': 'Rețete Ajax',
-'And': 'Și',
-'and rename it (required):': 'și renumește (obligatoriu):',
'and rename it:': ' și renumește:',
'App does not exist or you are not authorized': 'App does not exist or you are not authorized',
'appadmin': 'appadmin',
@@ -86,7 +66,6 @@
'Are you sure you want to delete file "%s"?': 'Sigur ștergeți fișierul "%s"?',
'Are you sure you want to delete plugin "%s"?': 'Are you sure you want to delete plugin "%s"?',
'Are you sure you want to delete this object?': 'Sigur ștergeți acest obiect?',
-'Are you sure you want to uninstall application "%s"': 'Sigur dezinstalați aplicația "%s"',
'Are you sure you want to uninstall application "%s"?': 'Sigur dezinstalați aplicația "%s"?',
'Are you sure?': 'Are you sure?',
'arguments': 'argumente',
@@ -96,12 +75,9 @@
'ATTENTION: Login requires a secure (HTTPS) connection or running on localhost.': 'ATENȚIE: Nu vă puteți conecta decât utilizând o conexiune securizată (HTTPS) sau rulând aplicația pe computerul local.',
'ATTENTION: TESTING IS NOT THREAD SAFE SO DO NOT PERFORM MULTIPLE TESTS CONCURRENTLY.': 'ATENȚIE: Nu puteți efectua mai multe teste o dată deoarece lansarea în execuție a mai multor subpocese nu este sigură.',
'ATTENTION: you cannot edit the running application!': 'ATENȚIE: nu puteți edita o aplicație în curs de execuție!',
-'Authentication': 'Autentificare',
'Authentication code': 'Authentication code',
'Autocomplete Python Code': 'Autocomplete Python Code',
-'Available databases and tables': 'Baze de date și tabele disponibile',
'Available Databases and Tables': 'Available Databases and Tables',
-'Back': 'Înapoi',
'back': 'înapoi',
'Back to the plugins list': 'Back to the plugins list',
'Back to wizard': 'Back to wizard',
@@ -112,7 +88,6 @@
'breakpoints': 'breakpoints',
'Bulk Register': 'Bulk Register',
'Bulk Student Registration': 'Bulk Student Registration',
-'Buy this book': 'Cumpără această carte',
'Cache': 'Cache',
'cache': 'cache',
'Cache Cleared': 'Cache Cleared',
@@ -121,22 +96,18 @@
'can be a git repo': 'can be a git repo',
'Cancel': 'Cancel',
'Cannot be empty': 'Nu poate fi vid',
-'Cannot compile: there are errors in your app. Debug it, correct errors and try again.': 'Compilare imposibilă: aplicația conține erori. Debogați aplicația și încercați din nou.',
'Cannot compile: there are errors in your app:': 'Cannot compile: there are errors in your app:',
'cannot create file': 'fișier imposibil de creat',
'cannot upload file "%(filename)s"': 'imposibil de încărcat fișierul "%(filename)s"',
'Change Admin Password': 'Change Admin Password',
'Change admin password': 'Schimbă parola de administrare',
'change editor settings': 'change editor settings',
-'Change Password': 'Schimbare parolă',
'Change password': 'Schimbare parolă',
-'change password': 'schimbare parolă',
'Changelog': 'Changelog',
'check all': 'coșează tot',
'Check for upgrades': 'Verifică dacă există upgrade-uri',
'Check to delete': 'Coșați pentru a șterge',
'Checking for upgrades...': 'Verifică dacă există actualizări...',
-'clean': 'golire',
'Clean': 'Curăță',
'Clear': 'Golește',
'Clear CACHE?': 'Clear CACHE?',
@@ -145,7 +116,6 @@
'Click on the link %(link)s to reset your password': 'Click on the link %(link)s to reset your password',
'Click row to expand traceback': 'Clic pe linie pentru a extinde mesajul de trasabilitate',
'Click row to view a ticket': 'Click row to view a ticket',
-'click to check for upgrades': 'Clic pentru a verifica dacă există upgrade-uri',
'Client IP': 'IP client',
'code': 'code',
'Code listing': 'Code listing',
@@ -155,25 +125,17 @@
'Commit': 'Commit',
'Commit form': 'Commit form',
'Committed files': 'Committed files',
-'Community': 'Comunitate',
'Compile': 'Compilează',
-'compile': 'compilare',
'Compile (all or nothing)': 'Compile (all or nothing)',
'Compile (skip failed views)': 'Compile (skip failed views)',
'compiled application removed': 'aplicația compilată a fost ștearsă',
-'Components and Plugins': 'Componente și plugin-uri',
'Condition': 'Condition',
-'contains': 'conține',
'continue': 'continue',
-'Controller': 'Controlor',
'Controllers': 'Controlori',
'controllers': 'controlori',
-'Copyright': 'Drepturi de autor',
'Count': 'Număr',
'Create': 'Crează',
'create file with filename:': 'crează fișier cu numele:',
-'Create new application': 'Creați aplicație nouă',
-'create new application:': 'crează aplicație nouă:',
'Create/Upload': 'Create/Upload',
'created by': 'creat de',
'Created by:': 'Created by:',
@@ -185,18 +147,14 @@
'Current session': 'Sesiune curentă',
'currently running': 'acum în funcționare',
'currently saved or': 'în prezent salvat sau',
-'customize me!': 'Personalizează-mă!',
'data uploaded': 'date încărcate',
'Database': 'Baza de date',
-'database': 'bază de date',
'Database %s select': 'Database %s select',
-'database %s select': 'selectare bază de date %s',
'Database administration': 'Database administration',
'database administration': 'administrare bază de date',
'Database Administration (appadmin)': 'Database Administration (appadmin)',
'Date and Time': 'Data și ora',
'db': 'db',
-'DB Model': 'Model bază de date',
'Debug': 'Debogare',
'defines tables': 'definire tabele',
'Delete': 'Șterge',
@@ -214,12 +172,9 @@
'Deploy to PythonAnywhere': 'Deploy to PythonAnywhere',
'Deployment form': 'Deployment form',
'Deployment Interface': 'Deployment Interface',
-'Deployment Recipes': 'Rețete de instalare',
'Description': 'Descriere',
'Description:': 'Description:',
'design': 'design',
-'DESIGN': 'DESIGN',
-'Design for': 'Design pentru',
'Detailed traceback description': 'Descriere detaliată a mesajului de trasabilitate',
'details': 'detalii',
'direction: ltr': 'direcție: stânga-sus-dreapta',
@@ -236,11 +191,8 @@
'DO NOT use the "Pack compiled" feature.': 'DO NOT use the "Pack compiled" feature.',
'docs': 'documentație',
'Docs': 'Docs',
-'Documentation': 'Documentație',
-"Don't know what to do?": 'Nu știți ce să faceți?',
'done!': 'gata!',
'Downgrade': 'Downgrade',
-'Download': 'Descărcare',
'Download .w2p': 'Download .w2p',
'Download as .exe': 'Download as .exe',
'download layouts': 'descărcare șabloane',
@@ -248,63 +200,44 @@
'download plugins': 'descărcare plugin-uri',
'Download plugins from repository': 'Download plugins from repository',
'E-mail': 'E-mail',
-'E-mail invalid': 'E-mail invalid',
-'edit': 'editare',
-'EDIT': 'EDITARE',
'Edit': 'Editare',
'edit all': 'edit all',
'Edit application': 'Editare aplicație',
-'edit controller': 'editare controlor',
'edit controller:': 'edit controller:',
'Edit current record': 'Editare înregistrare curentă',
-'Edit Profile': 'Editare profil',
-'edit profile': 'editare profil',
-'Edit This App': 'Editați această aplicație',
'edit views:': 'editează vederi:',
'Editing %s': 'Editing %s',
-'Editing file': 'Editare fișier',
-'Editing file "%s"': 'Editare fișier "%s"',
'Editing Language file': 'Editing Language file',
'Editing Plural Forms File': 'Editing Plural Forms File',
'Editor': 'Editor',
'Email Address': 'Email Address',
-'Email and SMS': 'E-mail și SMS',
'Email sent': 'Email sent',
'Email verification': 'Email verification',
'Email verified': 'Email verified',
'Enable': 'Enable',
'Enable Close-Tag': 'Enable Close-Tag',
'Enable Code Folding': 'Enable Code Folding',
-'enter a number between %(min)g and %(max)g': 'introduceți un număr între %(min)g și %(max)g',
-'enter an integer between %(min)g and %(max)g': 'introduceți un întreg între %(min)g și %(max)g',
'Error': 'Eroare',
'Error logs for "%(app)s"': 'Log erori pentru "%(app)s"',
'Error snapshot': 'Instantaneu eroare',
'Error ticket': 'Tichet eroare',
-'errors': 'erori',
'Errors': 'Erori',
'Exception %(extype)s: %(exvalue)s': 'Exception %(extype)s: %(exvalue)s',
'Exception %s': 'Exception %s',
'Exception instance attributes': 'Exception instance attributes',
'Exit Fullscreen': 'Exit Fullscreen',
-'Expand Abbreviation': 'Extinde abreviația',
'Expand Abbreviation (html files only)': 'Expand Abbreviation (html files only)',
-'Export': 'Export',
'export as csv file': 'exportă ca fișier csv',
'Exports:': 'Exports:',
'exposes': 'expune',
'exposes:': 'expune:',
'extends': 'extinde',
'failed to compile file because:': 'failed to compile file because:',
-'failed to reload module': 'reîncarcare modul nereușită',
'failed to reload module because:': 'failed to reload module because:',
-'False': 'Neadevărat',
-'FAQ': 'Întrebări frecvente',
'File': 'Fișier',
'file "%(filename)s" created': 'fișier "%(filename)s" creat',
'file "%(filename)s" deleted': 'fișier "%(filename)s" șters',
'file "%(filename)s" uploaded': 'fișier "%(filename)s" încărcat',
-'file "%(filename)s" was not deleted': 'fișierul "%(filename)s" n-a fost șters',
'file "%s" of %s restored': 'fișier "%s" de %s restaurat',
'file changed on disk': 'fișier modificat pe disc',
'file does not exist': 'fișier inexistent',
@@ -318,35 +251,27 @@
'Find Next': 'Find Next',
'Find Previous': 'Find Previous',
'First name': 'Prenume',
-'Forbidden': 'Interzis',
'Form has errors': 'Form has errors',
-'Forms and Validators': 'Formulare și validatori',
'Frames': 'Frames',
-'Free Applications': 'Aplicații gratuite',
'Function disabled': 'Function disabled',
'Functions with no doctests will result in [passed] tests.': 'Funcțiile fără doctests vor genera teste [trecute].',
'GAE Email': 'GAE Email',
'GAE Output': 'GAE Output',
'GAE Password': 'GAE Password',
'Generate': 'Generate',
-'Get from URL:': 'Obține de la adresa:',
'Git Pull': 'Git Pull',
'Git Push': 'Git Push',
'Globals##debug': 'Globals##debug',
-'Go to Matching Pair': 'Mergi la perechea care se potrivește',
'go!': 'go!',
'Google App Engine Deployment Interface': 'Google App Engine Deployment Interface',
'Google Application Id': 'Google Application Id',
'Goto': 'Goto',
-'graph model': 'graph model',
'Graph Model': 'Graph Model',
+'graph model': 'graph model',
'Group %(group_id)s created': 'Grup %(group_id)s creat',
'Group %(group_id)s deleted': 'Group %(group_id)s deleted',
'Group ID': 'ID grup',
'Group uniquely assigned to user %(id)s': 'Grup asociat în mod unic utilizatorului %(id)s',
-'Groups': 'Grupuri',
-'Hello World': 'Salutare lume',
-'help': 'ajutor',
'Help': 'Ajutor',
'here': 'here',
'Hide/Show Translated strings': 'Hide/Show Translated strings',
@@ -354,13 +279,10 @@
'Hits': 'Hits',
'Home': 'Acasă',
'honored only if the expression evaluates to true': 'honored only if the expression evaluates to true',
-'How did you get here?': 'Cum ați ajuns aici?',
-'htmledit': 'editare html',
'If start the downgrade, be patient, it may take a while to rollback': 'If start the downgrade, be patient, it may take a while to rollback',
'If start the upgrade, be patient, it may take a while to download': 'If start the upgrade, be patient, it may take a while to download',
'If the report above contains a ticket number it indicates a failure in executing the controller, before any attempt to execute the doctests. This is usually due to an indentation error or an error outside function code.\n\t\tA green title indicates that all tests (if defined) passed. In this case test results are not shown.': 'If the report above contains a ticket number it indicates a failure in executing the controller, before any attempt to execute the doctests. This is usually due to an indentation error or an error outside function code.\n\t\tA green title indicates that all tests (if defined) passed. In this case test results are not shown.',
'If the report above contains a ticket number it indicates a failure in executing the controller, before any attempt to execute the doctests. This is usually due to an indentation error or an error outside function code.\nA green title indicates that all tests (if defined) passed. In this case test results are not shown.': 'If the report above contains a ticket number it indicates a failure in executing the controller, before any attempt to execute the doctests. This is usually due to an indentation error or an error outside function code.\nA green title indicates that all tests (if defined) passed. In this case test results are not shown.',
-'If the report above contains a ticket number it indicates a failure in executing the controller, before any attempt to execute the doctests. This is usually due to an indentation error or an error outside function code.\r\nA green title indicates that all tests (if defined) passed. In this case test results are not shown.': 'Dacă raportul de deasupra conține un număr de tichet, asta indică un eșec în executarea controlorului, înainte de orice încercare de a executa doctests-urile. Aceasta se întâmplă de obicei din cauza unei erori de identare sau a unei erori din afara corpului funcției.\r\nUn titlu în verde arată ca toate testele (dacă definite) au fost trecute. În acest caz rezultatele testelor nu sunt arătate.',
'if your application uses a database other than sqlite you will then have to configure its DAL in pythonanywhere.': 'if your application uses a database other than sqlite you will then have to configure its DAL in pythonanywhere.',
'import': 'import',
'Import/Export': 'Import/Export',
@@ -368,10 +290,6 @@
'includes': 'include',
'Incorrect code. {0} more attempt(s) remaining.': 'Incorrect code. {0} more attempt(s) remaining.',
'Indent with tabs': 'Indent with tabs',
-'Index': 'Index',
-'index': 'index',
-'insert new': 'adaugă nou',
-'insert new %s': 'adaugă nou %s',
'inspect attributes': 'inspectare atribute',
'Install': 'Instalează',
'Installation of %(plugin)s for %(app)s': 'Installation of %(plugin)s for %(app)s',
@@ -382,7 +300,6 @@
'internal error': 'eroare internă',
'internal error: %s': 'internal error: %s',
'Internal State': 'Stare internă',
-'Introduction': 'Introducere',
'Invalid action': 'Acțiune invalidă',
'Invalid application name': 'Invalid application name',
'invalid circular reference': 'invalid circular reference',
@@ -403,8 +320,6 @@
'Invalid username': 'Invalid username',
'Invitation to join %(site)s': 'Invitation to join %(site)s',
'Key': 'Key',
-'Key bindings': 'Combinație taste',
-'Key bindings for ZenCoding Plugin': 'Key bindings for ZenCoding Plugin',
'Key verified': 'Key verified',
'Keyboard shortcuts': 'Keyboard shortcuts',
'kill process': 'kill process',
@@ -412,40 +327,29 @@
'Language files (static strings) updated': 'Fișierele de limbă (șirurile statice de caractere) actualizate',
'languages': 'limbi',
'Languages': 'Limbi',
-'languages updated': 'limbi actualizate',
'Last name': 'Nume',
'Last Revision': 'Last Revision',
'Last saved on:': 'Ultima salvare:',
-'Layout': 'Șablon',
-'Layout Plugins': 'Șablon plugin-uri',
-'Layouts': 'Șabloane',
'License for': 'Licență pentru',
'License:': 'License:',
'Line Nr': 'Line Nr',
'Line number': 'Line number',
'lists by exception': 'lists by exception',
'lists by ticket': 'lists by ticket',
-'Live Chat': 'Chat live',
'Loading...': 'Loading...',
-'loading...': 'încarc...',
'Local Apps': 'Local Apps',
'locals': 'localizare',
'Locals##debug': 'Locals##debug',
-'located in the file': 'prezentă în fișierul',
'Log In': 'Log In',
'Logged in': 'Logat',
'Logged out': 'Delogat',
-'login': 'autentificare',
'Login': 'Autentificare',
'Login disabled by administrator': 'Login disabled by administrator',
'Login successful': 'Login successful',
'Login to the Administrative Interface': 'Logare interfață de administrare',
'Login/Register': 'Login/Register',
-'logout': 'ieșire',
'Logout': 'Ieșire',
-'Lost Password': 'Parolă pierdută',
'lost password': 'lost password',
-'Lost password?': 'Parolă pierdută?',
'Main Menu': 'Meniu principal',
'Manage': 'Manage',
'Manage %(action)s': 'Manage %(action)s',
@@ -453,20 +357,15 @@
'Manage Admin Users/Students': 'Manage Admin Users/Students',
'Manage Cache': 'Manage Cache',
'Manage Students': 'Manage Students',
-'Match Pair': 'Potrivește pereche',
'Memberships': 'Memberships',
-'Menu Model': 'Model meniu',
'merge': 'unește',
-'Merge Lines': 'Unește linii',
'Models': 'Modele',
'models': 'modele',
'Modified On': 'Modified On',
'Modules': 'Module',
'modules': 'module',
'Multi User Mode': 'Multi User Mode',
-'My Sites': 'Site-urile mele',
'Name': 'Nume',
-'New': 'Nou',
'new application "%s" created': 'aplicația nouă "%s" a fost creată',
'new application "%s" imported': 'new application "%s" imported',
'New Application Wizard': 'New Application Wizard',
@@ -479,8 +378,6 @@
'New simple application': 'O nouă aplicație simplă',
'next': 'next',
'next %s rows': 'next %s rows',
-'next 100 rows': 'următoarele 100 de linii',
-'Next Edit Point': 'Următorul punct de editare',
'NO': 'NU',
'no changes': 'no changes',
'No databases in this application': 'Aplicație fără bază de date',
@@ -488,7 +385,6 @@
'no match': 'no match',
'no package selected': 'no package selected',
'no permission to uninstall "%s"': 'no permission to uninstall "%s"',
-'No ticket_storage.txt found under /private folder': 'No ticket_storage.txt found under /private folder',
'Node:': 'Node:',
'Not Authorized': 'Not Authorized',
'Not supported': 'Not supported',
@@ -496,27 +392,18 @@
'Object or table name': 'Obiect sau nume de tabel',
'Old password': 'Parola veche',
"On production, you'll have to configure your webserver to use one process and multiple threads to use this debugger.": "On production, you'll have to configure your webserver to use one process and multiple threads to use this debugger.",
-'online designer': 'designer online',
-'Online examples': 'Exemple online',
'Open new app in new window': 'Open new app in new window',
'OpenShift Deployment Interface': 'OpenShift Deployment Interface',
'OpenShift Output': 'OpenShift Output',
-'Or': 'Sau',
-'OR': 'SAU',
'or alternatively': 'or alternatively',
'Or Get from URL:': 'Or Get from URL:',
'or import from csv file': 'sau importă din fișier csv',
-'or provide application url:': 'sau furnizează adresă url:',
'Origin': 'Origine',
'Original/Translation': 'Original/Traducere',
-'Other Plugins': 'Alte plugin-uri',
-'Other Recipes': 'Alte rețete',
'Overview': 'Prezentare de ansamblu',
'Overwrite installed app': 'Suprascrie aplicație instalată',
-'pack all': 'împachetează toate',
'Pack all': 'Împachetează tot',
'Pack compiled': 'Pack compiled',
-'pack compiled': 'împachetează ce e compilat',
'Pack custom': 'Pack custom',
'pack plugin': 'pack plugin',
'Password': 'Parola',
@@ -543,15 +430,11 @@
'Plural Form #%s': 'Plural Form #%s',
'Plural-Forms:': 'Plural-Forms:',
'Powered by': 'Pus în mișcare de',
-'Preface': 'Prefață',
'Preferences saved correctly': 'Preferences saved correctly',
'Preferences saved on session only': 'Preferences saved on session only',
'previous %s rows': 'previous %s rows',
-'previous 100 rows': '100 de linii anterioare',
-'Previous Edit Point': 'Punct de editare anterior',
'Private files': 'Private files',
'private files': 'private files',
-'Profile': 'Profil',
'Profile updated': 'Profile updated',
'Project Progress': 'Progres proiect',
'Pull': 'Pull',
@@ -560,19 +443,14 @@
'Push': 'Push',
'Push failed, there are unmerged entries in the cache. Resolve merge issues manually and try again.': 'Push failed, there are unmerged entries in the cache. Resolve merge issues manually and try again.',
'pygraphviz library not found': 'pygraphviz library not found',
-'Python': 'Python',
'PythonAnywhere Apps': 'PythonAnywhere Apps',
'PythonAnywhere Password': 'PythonAnywhere Password',
-'Query': 'Interogare',
'Query:': 'Interogare:',
-'Quick Examples': 'Exemple rapide',
'RAM': 'RAM',
'RAM Cache Keys': 'Chei cache RAM',
'Ram Cleared': 'Ram Cleared',
'Rapid Search': 'Rapid Search',
-'Recipes': 'Rețete',
'Record': 'Record',
-'record': 'înregistrare',
'Record %(id)s created': 'Record %(id)s created',
'Record %(id)s deleted': 'Record %(id)s deleted',
'Record %(id)s read': 'Record %(id)s read',
@@ -580,13 +458,11 @@
'Record Created': 'Record Created',
'Record Deleted': 'Record Deleted',
'record does not exist': 'înregistrare inexistentă',
-'record id': 'id înregistrare',
-'Record ID': 'ID înregistrare',
'Record id': 'Record id',
+'Record ID': 'ID înregistrare',
'Record Updated': 'Record Updated',
'refresh': 'refresh',
'register': 'înregistrare',
-'Register': 'Înregistrare',
'Registration identifier': 'Identificator de autentificare',
'Registration is pending approval': 'Registration is pending approval',
'Registration key': 'Cheie înregistrare',
@@ -595,7 +471,6 @@
'Reload routes': 'Reîncarcare rute',
'Remember me (for 30 days)': 'Ține-mă minte (timp de 30 de zile)',
'Remove compiled': 'Remove compiled',
-'remove compiled': 'șterge compilate',
'Removed Breakpoint on %s at line %s': 'Removed Breakpoint on %s at line %s',
'Replace': 'Replace',
'Replace All': 'Replace All',
@@ -618,7 +493,6 @@
'Role': 'Rol',
'Roles': 'Roles',
'Rows in Table': 'Rows in Table',
-'Rows in table': 'Linii în tabel',
'Rows selected': 'Linii selectate',
'rules are not defined': 'rules are not defined',
'Run tests': 'Run tests',
@@ -626,19 +500,14 @@
"Run tests in this file (to run all files, you may also use the button labelled 'test')": "Run tests in this file (to run all files, you may also use the button labelled 'test')",
'Running on %s': 'Running on %s',
'Save': 'Salvează',
-'save': 'salvare',
'Save file:': 'Save file:',
'Save file: %s': 'Save file: %s',
'Save model as...': 'Save model as...',
-'Save profile': 'Salvează profil',
'Save via Ajax': 'Salvează utilizând Ajax',
'Saved file hash:': 'Hash fișier salvat:',
'Screenshot %s': 'Screenshot %s',
'Search': 'Căutare',
'Select Files to Package': 'Select Files to Package',
-'selected': 'selectat',
-'Semantic': 'Semantică',
-'Services': 'Servicii',
'session': 'sesiune',
'session expired': 'sesiune expirată',
'Session saved correctly': 'Session saved correctly',
@@ -648,7 +517,6 @@
'Showing %s to %s of %s %s found': 'Showing %s to %s of %s %s found',
'Sign Up': 'Sign Up',
'Singular Form': 'Singular Form',
-'site': 'site',
'Site': 'Site',
'Size of cache:': 'Size of cache:',
'skip to generate': 'skip to generate',
@@ -660,42 +528,30 @@
'Start a new app': 'Începe o nouă aplicație',
'Start searching': 'Start searching',
'Start wizard': 'Startează magician',
-'starts with': 'începe cu',
'state': 'stare',
-'Static': 'Static',
'static': 'static',
+'Static': 'Static',
'Static files': 'Fișiere statice',
'Statistics': 'Statistics',
'Step': 'Step',
'step': 'step',
'stop': 'stop',
-'Stylesheet': 'Foaie de stiluri',
-'submit': 'submit',
'Submit': 'Înregistrează',
+'submit': 'submit',
'successful': 'cu succes',
-'Support': 'Suport',
-'Sure you want to delete this object?': 'Sigur ștergeți acest obiect?',
'switch to : db': 'switch to : db',
'switch to : filesystem': 'switch to : filesystem',
'Tab width (# characters)': 'Tab width (# characters)',
-'table': 'tabel',
'Table': 'Table',
-'Table name': 'Nume tabel',
'Temporary': 'Temporary',
'test': 'test',
'Testing application': 'Testare aplicație',
'The "query" is a condition like "db.table1.field1==\'value\'". Something like "db.table1.field1==db.table2.field2" results in a SQL JOIN.': '"Interogarea (query)" este o condiție de tipul "db.tabel1.câmp1==\'valoare\'". Ceva de genul "db.tabel1.câmp1==db.tabel2.câmp2" generează un JOIN SQL.',
'The app exists, was created by wizard, continue to overwrite!': 'The app exists, was created by wizard, continue to overwrite!',
'The app exists, was NOT created by wizard, continue to overwrite!': 'The app exists, was NOT created by wizard, continue to overwrite!',
-'the application logic, each URL path is mapped in one exposed function in the controller': 'logica aplicației, fiecare rută URL este mapată într-o funcție expusă de controlor',
'The application logic, each URL path is mapped in one exposed function in the controller': 'Logica aplicației, fiecare rută URL este mapată într-o funcție expusă de controlor',
-'The Core': 'Nucleul',
-'the data representation, define database tables and sets': 'reprezentarea datelor, definește tabelele bazei de date și seturile (de date)',
'The data representation, define database tables and sets': 'Reprezentarea datelor, definește tabele și seturi de date',
-'The output of the file is a dictionary that was rendered by the view': 'Fișierul produce un dicționar care a fost prelucrat de vederea',
'The presentations layer, views are also known as templates': 'Nivelul de prezentare, vederile sunt cunoscute de asemenea ca șabloane',
-'the presentations layer, views are also known as templates': 'nivelul de prezentare, vederile sunt de asemenea numite și șabloane',
-'The Views': 'Vederile',
'Theme': 'Theme',
'There are no controllers': 'Nu există controlori',
'There are no models': 'Nu există modele',
@@ -708,15 +564,11 @@
'There are no views': 'Nu există vederi',
'These files are not served, they are only available from within your app': 'These files are not served, they are only available from within your app',
'These files are served without processing, your images go here': 'Aceste fișiere sunt servite fără procesare, fișierele imagine se pun aici',
-'these files are served without processing, your images go here': 'aceste fișiere sunt servite fără procesare, imaginea se plasează acolo',
-'This App': 'Această aplicație',
'This code was emailed to you and is required for login.': 'This code was emailed to you and is required for login.',
"This debugger may not work properly if you don't have a threaded webserver or you're using multiple daemon processes.": "This debugger may not work properly if you don't have a threaded webserver or you're using multiple daemon processes.",
'This email already has an account': 'This email already has an account',
-'This is a copy of the scaffolding application': 'Aceasta este o copie a aplicației schelet',
'This is an experimental feature and it needs more testing. If you decide to downgrade you do it at your own risk': 'This is an experimental feature and it needs more testing. If you decide to downgrade you do it at your own risk',
'This is an experimental feature and it needs more testing. If you decide to upgrade you do it at your own risk': 'This is an experimental feature and it needs more testing. If you decide to upgrade you do it at your own risk',
-'This is the %(filename)s template': 'Aceasta este șablonul fișierului %(filename)s',
"This page can commit your changes to an openshift app repo and push them to your cloud instance. This assumes that you've already created the application instance using the web2py skeleton and have that repo somewhere on a filesystem that this web2py instance can access. This functionality requires GitPython installed and on the python path of the runtime that web2py is operating in.": "This page can commit your changes to an openshift app repo and push them to your cloud instance. This assumes that you've already created the application instance using the web2py skeleton and have that repo somewhere on a filesystem that this web2py instance can access. This functionality requires GitPython installed and on the python path of the runtime that web2py is operating in.",
'This page can upload your application to the Google App Engine computing cloud. Mind that you must first create indexes locally and this is done by installing the Google appserver and running the app locally with it once, or there will be errors when selecting records. Attention: deployment may take long time, depending on the network speed. Attention: it will overwrite your app.yaml. DO NOT SUBMIT TWICE.': 'This page can upload your application to the Google App Engine computing cloud. Mind that you must first create indexes locally and this is done by installing the Google appserver and running the app locally with it once, or there will be errors when selecting records. Attention: deployment may take long time, depending on the network speed. Attention: it will overwrite your app.yaml. DO NOT SUBMIT TWICE.',
'this page to see if a breakpoint was hit and debug interaction is required.': 'this page to see if a breakpoint was hit and debug interaction is required.',
@@ -734,16 +586,11 @@
'toggle breakpoint': 'comutare breakpoint',
'Toggle comment': 'Toggle comment',
'Toggle Fullscreen': 'Toggle Fullscreen',
-'too short': 'prea scurt',
'Traceback': 'Trasabilitate',
-'translation strings for the application': 'șiruri de caractere folosite la traducerea aplicației',
'Translation strings for the application': 'Șiruri de traducere pentru aplicație',
-'True': 'Adevărat',
-'try': 'încearcă',
'try something like': 'încearcă ceva de genul',
'Try the mobile interface': 'Try the mobile interface',
'try view': 'try view',
-'Twitter': 'Twitter',
'Two-step Login Authentication Code': 'Two-step Login Authentication Code',
'Type PDB debugger command in here and hit Return (Enter) to execute it.': 'Type PDB debugger command in here and hit Return (Enter) to execute it.',
'Type some Python code in here and hit Return (Enter) to execute it.': 'Type some Python code in here and hit Return (Enter) to execute it.',
@@ -752,8 +599,6 @@
'unable to delete file "%(filename)s"': 'imposibil de șters fișierul "%(filename)s"',
'unable to delete file plugin "%(plugin)s"': 'unable to delete file plugin "%(plugin)s"',
'Unable to determine the line number!': 'Unable to determine the line number!',
-'Unable to download': 'Imposibil de descărcat',
-'Unable to download app': 'Imposibil de descărcat aplicația',
'Unable to download app because:': 'Unable to download app because:',
'unable to download layout': 'unable to download layout',
'unable to download plugin: %s': 'unable to download plugin: %s',
@@ -764,7 +609,6 @@
'unable to uninstall "%s"': 'imposibil de dezinstalat "%s"',
'unable to upgrade because "%s"': 'unable to upgrade because "%s"',
'uncheck all': 'decoșează tot',
-'uninstall': 'dezinstalează',
'Uninstall': 'Dezinstalează',
'Unsupported webserver working mode: %s': 'Unsupported webserver working mode: %s',
'update': 'actualizează',
@@ -776,12 +620,9 @@
'Upload': 'Upload',
'Upload a package:': 'Încarcă un pachet:',
'Upload and install packed application': 'Încarcă și instalează aplicație împachetată',
-'upload application:': 'incarcă aplicația:',
-'Upload existing application': 'Încarcă aplicația existentă',
'upload file:': 'încărcă fișier:',
'upload plugin file:': 'încarcă fișier plugin:',
'Use (...)&(...) for AND, (...)|(...) for OR, and ~(...) for NOT to build more complex queries.': 'Folosiți (...)&(...) pentru ȘI, (...)|(...) pentru SAU, și ~(...) pentru NEGARE, pentru a crea interogări complexe.',
-'user': 'utilizator',
'User': 'User',
'User %(id)s is impersonating %(other_id)s': 'User %(id)s is impersonating %(other_id)s',
'User %(id)s Logged-in': 'Utilizator %(id)s autentificat',
@@ -800,17 +641,10 @@
'Username retrieve': 'Username retrieve',
'Users': 'Users',
'Using the shell may lock the database to other users of this app.': 'Using the shell may lock the database to other users of this app.',
-'value already in database or empty': 'Valoare existentă în baza de date sau vidă',
'variables': 'variables',
'Verify Password': 'Verifică parola',
-'VERSION': 'VERSIUNE',
'Version': 'Version',
-'Version %s.%s.%s (%s) %s': 'Versiune %s.%s.%s (%s) %s',
'Versioning': 'Versiuni',
-'versioning': 'versiuni',
-'Videos': 'Video-uri',
-'View': 'Vedere',
-'view': 'vedere',
'Views': 'Vederi',
'views': 'vederi',
'Warning!': 'Warning!',
@@ -823,29 +657,19 @@
'web2py downgrade': 'web2py downgrade',
'web2py is up to date': 'web2py este la zi',
'web2py online debugger': 'web2py online debugger',
-'web2py Recent Tweets': 'Ultimele tweet-uri web2py',
'web2py upgrade': 'web2py upgrade',
'web2py upgraded; please restart it': 'web2py upgraded; please restart it',
-'Welcome': 'Bine ați venit',
'Welcome %(username)s! Click on the link %(link)s to verify your email': 'Welcome %(username)s! Click on the link %(link)s to verify your email',
-'Welcome %s': 'Bine ați venit %s',
-'Welcome to web2py': 'Bun venit la web2py',
-'Welcome to web2py!': 'Bun venit la web2py!',
-'Which called the function': 'Care a apelat funcția',
'Working...': 'Working...',
-'Wrap with Abbreviation': 'Încadrează cu abreviația',
'WSGI reference name': 'WSGI reference name',
'YES': 'DA',
'Yes': 'Yes',
-'You are successfully running web2py': 'Rulați cu succes web2py',
'You can also set and remove breakpoint in the edit window, using the Toggle Breakpoint button': 'You can also set and remove breakpoint in the edit window, using the Toggle Breakpoint button',
'You can inspect variables using the console below': 'You can inspect variables using the console below',
-'You can modify this application and adapt it to your needs': 'Puteți modifica și adapta aplicația nevoilor dvs.',
'You have been invited to join %(site)s, click %(link)s to complete the process': 'You have been invited to join %(site)s, click %(link)s to complete the process',
'You have one more login attempt before you are locked out': 'You have one more login attempt before you are locked out',
'You need to set up and reach a': 'You need to set up and reach a',
'You only need these if you have already registered': 'You only need these if you have already registered',
-'You visited the url': 'Ați vizitat adresa',
'Your application will be blocked until you click an action button (next, step, continue, etc.)': 'Your application will be blocked until you click an action button (next, step, continue, etc.)',
'Your password is: %(password)s': 'Your password is: %(password)s',
'Your temporary login code is {0}': 'Your temporary login code is {0}',
diff --git a/applications/admin/languages/ru.py b/applications/admin/languages/ru.py
old mode 100755
new mode 100644
index 0d8ba603..f7e65654
--- a/applications/admin/languages/ru.py
+++ b/applications/admin/languages/ru.py
@@ -11,7 +11,6 @@
'%s students registered': '%s students registered',
'%Y-%m-%d': '%Y-%m-%d',
'%Y-%m-%d %H:%M:%S': '%Y-%m-%d %H:%M:%S',
-'(requires internet access)': '(требует подключения к интернету)',
'(requires internet access, experimental)': '(requires internet access, experimental)',
'(something like "it-it")': '(наподобие "it-it")',
'(version %s)': '(version %s)',
@@ -33,28 +32,22 @@
'@markmin\x01Searching: **%s** %%{file}': 'Найдено: **%s** %%{файл}',
'@markmin\x01You need to set up and reach a [[breakpoint %s]] to use the debugger!': 'You need to set up and reach a [[breakpoint %s]] to use the debugger!',
'A new password was emailed to you': 'A new password was emailed to you',
-'A new version of web2py is available': 'Доступна новая версия web2py',
-'A new version of web2py is available: %s': 'Доступна новая версия web2py: %s',
'Abort': 'Отмена',
'About': 'О',
'About application': 'О приложении',
'Accept Terms': 'Accept Terms',
'Add breakpoint': 'Add breakpoint',
-'additional code for your application': 'добавочный код для вашего приложения',
'Additional code for your application': 'Допольнительный код для вашего приложения',
'Admin design page': 'Admin design page',
'admin disabled because no admin password': 'админка отключена, потому что отсутствует пароль администратора',
'admin disabled because not supported on google app engine': 'admin disabled because not supported on google app engine',
-'admin disabled because not supported on google apps engine': 'админка отключена, т.к. не поддерживается на google app engine',
'admin disabled because too many invalid login attempts': 'admin disabled because too many invalid login attempts',
'admin disabled because unable to access password file': 'админка отключена, т.к. невозможно получить доступ к файлу с паролями ',
'Admin is disabled because insecure channel': 'Админпанель выключена из-за небезопасного соединения',
-'Admin is disabled because unsecure channel': 'Админпанель выключен из-за небезопасного соединения',
'Admin language': 'Язык админпанели',
'Admin versioning page': 'Admin versioning page',
'administrative interface': 'интерфейс администратора',
'Administrator Password:': 'Пароль администратора:',
-'and rename it (required):': 'и переименуйте его (необходимо):',
'and rename it:': ' и переименуйте его:',
'App does not exist or you are not authorized': 'App does not exist or you are not authorized',
'appadmin': 'appadmin',
@@ -73,9 +66,7 @@
'Are you sure you want to delete file "%s"?': 'Вы действительно хотите удалить файл "%s"?',
'Are you sure you want to delete plugin "%s"?': 'Are you sure you want to delete plugin "%s"?',
'Are you sure you want to delete this object?': 'Are you sure you want to delete this object?',
-'Are you sure you want to uninstall application "%s"': 'Вы действительно хотите удалить приложение "%s"',
'Are you sure you want to uninstall application "%s"?': 'Вы действительно хотите удалить приложение "%s"?',
-'Are you sure you want to upgrade web2py now?': 'Вы действительно хотите обновить web2py сейчас?',
'Are you sure?': 'Are you sure?',
'arguments': 'аргументы',
'at char %s': 'at char %s',
@@ -83,18 +74,14 @@
'ATTENTION:': 'ATTENTION:',
'ATTENTION: Login requires a secure (HTTPS) connection or running on localhost.': 'ВНИМАНИЕ: Для входа требуется бесопасное (HTTPS) соединение либо запуск на localhost.',
'ATTENTION: TESTING IS NOT THREAD SAFE SO DO NOT PERFORM MULTIPLE TESTS CONCURRENTLY.': 'ВНИМАНИЕ: Тестирование не потокобезопасно, поэтому не запускайте несколько тестов параллельно.',
-'ATTENTION: This is an experimental feature and it needs more testing.': 'ВНИМАНИЕ: Это экспериментальная возможность и требует тестирования.',
'ATTENTION: you cannot edit the running application!': 'ВНИМАНИЕ: Вы не можете редактировать работающее приложение!',
-'Authentication': 'Аутентификация',
'Authentication code': 'Authentication code',
'Autocomplete Python Code': 'Autocomplete Python Code',
-'Available databases and tables': 'Доступные базы данных и таблицы',
'Available Databases and Tables': 'Available Databases and Tables',
'back': 'назад',
'Back to the plugins list': 'Back to the plugins list',
'Back to wizard': 'Back to wizard',
'Basics': 'Basics',
-'beautify': 'Раскрасить',
'Begin': 'Begin',
'breakpoint': 'breakpoint',
'Breakpoints': 'Breakpoints',
@@ -106,19 +93,15 @@
'Cache Cleared': 'Cache Cleared',
'Cache Keys': 'Cache Keys',
'cache, errors and sessions cleaned': 'Кэш, ошибки и сессии очищены',
-'call': 'вызов',
'can be a git repo': 'can be a git repo',
'Cancel': 'Cancel',
'Cannot be empty': 'Не может быть пустым',
-'Cannot compile: there are errors in your app. Debug it, correct errors and try again.': 'Невозможно компилировать: в приложении присутствуют ошибки. Отладьте его, исправьте ошибки и попробуйте заново.',
'Cannot compile: there are errors in your app:': 'Cannot compile: there are errors in your app:',
'cannot create file': 'Невозможно создать файл',
'cannot upload file "%(filename)s"': 'Невозможно загрузить файл "%(filename)s"',
'Change Admin Password': 'Change Admin Password',
'Change admin password': 'Изменить пароль администратора',
'change editor settings': 'change editor settings',
-'Change Password': 'Изменить пароль',
-'change password': 'изменить пароль',
'Change password': 'Change password',
'Changelog': 'Changelog',
'check all': 'проверить все',
@@ -130,12 +113,9 @@
'Clear CACHE?': 'Clear CACHE?',
'Clear DISK': 'Clear DISK',
'Clear RAM': 'Clear RAM',
-'click here for online examples': 'нажмите здесь для онлайн примеров',
-'click here for the administrative interface': 'нажмите здесь для интерфейса администратора',
'Click on the link %(link)s to reset your password': 'Click on the link %(link)s to reset your password',
'Click row to expand traceback': 'Click row to expand traceback',
'Click row to view a ticket': 'Click row to view a ticket',
-'click to check for upgrades': 'нажмите для проверки обновления',
'Client IP': 'IP клиента',
'code': 'код',
'Code listing': 'Code listing',
@@ -151,15 +131,11 @@
'compiled application removed': 'скомпилированное приложение удалено',
'Condition': 'Condition',
'continue': 'continue',
-'Controller': 'Контроллер',
'Controllers': 'Контроллеры',
'controllers': 'контроллеры',
-'Copyright': 'Copyright',
'Count': 'Count',
'Create': 'Создать',
'create file with filename:': 'Создать файл с названием:',
-'create new application:': 'создать новое приложение:',
-'Create new simple application': 'Создать новое простое приложение',
'Create/Upload': 'Create/Upload',
'created by': 'создано',
'Created by:': 'Created by:',
@@ -171,18 +147,14 @@
'Current session': 'Текущая сессия',
'currently running': 'сейчас работает',
'currently saved or': 'сейчас сохранено или',
-'customize me!': 'настрой меня!',
'data uploaded': 'дата загрузки',
'Database': 'База данных',
-'database': 'база данных',
'Database %s select': 'Database %s select',
-'database %s select': 'Выбор базы данных %s ',
'Database administration': 'Database administration',
'database administration': 'администрирование базы данных',
'Database Administration (appadmin)': 'Database Administration (appadmin)',
'Date and Time': 'Дата и время',
'db': 'бд',
-'DB Model': 'Модель БД',
'Debug': 'Debug',
'defines tables': 'определить таблицы',
'Delete': 'Удалить',
@@ -203,8 +175,6 @@
'Description': 'Описание',
'Description:': 'Description:',
'design': 'дизайн',
-'DESIGN': 'ДИЗАЙН',
-'Design for': 'Дизайн для',
'Detailed traceback description': 'Detailed traceback description',
'details': 'details',
'direction: ltr': 'направление: ltr',
@@ -221,7 +191,6 @@
'DO NOT use the "Pack compiled" feature.': 'DO NOT use the "Pack compiled" feature.',
'docs': 'docs',
'Docs': 'Docs',
-'documentation': 'документация',
'done!': 'выполнено!',
'Downgrade': 'Downgrade',
'Download .w2p': 'Download .w2p',
@@ -231,20 +200,13 @@
'download plugins': 'загрузить плагины',
'Download plugins from repository': 'Download plugins from repository',
'E-mail': 'E-mail',
-'EDIT': 'ПРАВКА',
'Edit': 'Правка',
'edit all': 'edit all',
'Edit application': 'Правка приложения',
-'edit controller': 'правка контроллера',
'edit controller:': 'edit controller:',
'Edit current record': 'Правка текущей записи',
-'Edit Profile': 'Правка профиля',
-'edit profile': 'правка профиля',
-'Edit This App': 'Правка данного приложения',
'edit views:': 'правка видов:',
'Editing %s': 'Editing %s',
-'Editing file': 'Правка файла',
-'Editing file "%s"': 'Правка файла "%s"',
'Editing Language file': 'Правка языкового файла',
'Editing Plural Forms File': 'Editing Plural Forms File',
'Editor': 'Editor',
@@ -255,18 +217,15 @@
'Enable': 'Enable',
'Enable Close-Tag': 'Enable Close-Tag',
'Enable Code Folding': 'Enable Code Folding',
-'Enterprise Web Framework': 'Enterprise Web Framework',
'Error': 'Error',
'Error logs for "%(app)s"': 'Журнал ошибок для "%(app)s"',
'Error snapshot': 'Error snapshot',
'Error ticket': 'Error ticket',
'Errors': 'Ошибка',
-'escape': 'escape',
'Exception %(extype)s: %(exvalue)s': 'Exception %(extype)s: %(exvalue)s',
'Exception %s': 'Exception %s',
'Exception instance attributes': 'Атрибуты объекта исключения',
'Exit Fullscreen': 'Exit Fullscreen',
-'Expand Abbreviation': 'Раскрыть аббревиатуру',
'Expand Abbreviation (html files only)': 'Expand Abbreviation (html files only)',
'export as csv file': 'Экспорт в CSV',
'Exports:': 'Exports:',
@@ -274,13 +233,11 @@
'exposes:': 'exposes:',
'extends': 'расширяет',
'failed to compile file because:': 'failed to compile file because:',
-'failed to reload module': 'невозможно загрузить модуль',
'failed to reload module because:': 'failed to reload module because:',
'File': 'File',
'file "%(filename)s" created': 'файл "%(filename)s" создан',
'file "%(filename)s" deleted': 'файл "%(filename)s" удален',
'file "%(filename)s" uploaded': 'файл "%(filename)s" загружен',
-'file "%(filename)s" was not deleted': 'файл "%(filename)s" не был удален',
'file "%s" of %s restored': 'файл "%s" из %s восстановлен',
'file changed on disk': 'файл изменился на диске',
'file does not exist': 'файл не существует',
@@ -302,22 +259,19 @@
'GAE Output': 'GAE Output',
'GAE Password': 'GAE Password',
'Generate': 'Generate',
-'Get from URL:': 'Get from URL:',
'Git Pull': 'Git Pull',
'Git Push': 'Git Push',
'Globals##debug': 'Globals##debug',
-'Go to Matching Pair': 'К подходящей паре',
'go!': 'go!',
'Google App Engine Deployment Interface': 'Google App Engine Deployment Interface',
'Google Application Id': 'Google Application Id',
'Goto': 'Goto',
-'graph model': 'graph model',
'Graph Model': 'Graph Model',
+'graph model': 'graph model',
'Group %(group_id)s created': 'Group %(group_id)s created',
'Group %(group_id)s deleted': 'Group %(group_id)s deleted',
'Group ID': 'ID группы',
'Group uniquely assigned to user %(id)s': 'Group uniquely assigned to user %(id)s',
-'Hello World': 'Привет, Мир',
'Help': 'Помощь',
'here': 'here',
'Hide/Show Translated strings': 'Hide/Show Translated strings',
@@ -325,13 +279,10 @@
'Hits': 'Hits',
'Home': 'Home',
'honored only if the expression evaluates to true': 'honored only if the expression evaluates to true',
-'htmledit': 'htmledit',
'If start the downgrade, be patient, it may take a while to rollback': 'If start the downgrade, be patient, it may take a while to rollback',
'If start the upgrade, be patient, it may take a while to download': 'If start the upgrade, be patient, it may take a while to download',
'If the report above contains a ticket number it indicates a failure in executing the controller, before any attempt to execute the doctests. This is usually due to an indentation error or an error outside function code.\n\t\tA green title indicates that all tests (if defined) passed. In this case test results are not shown.': 'If the report above contains a ticket number it indicates a failure in executing the controller, before any attempt to execute the doctests. This is usually due to an indentation error or an error outside function code.\n\t\tA green title indicates that all tests (if defined) passed. In this case test results are not shown.',
'If the report above contains a ticket number it indicates a failure in executing the controller, before any attempt to execute the doctests. This is usually due to an indentation error or an error outside function code.\nA green title indicates that all tests (if defined) passed. In this case test results are not shown.': 'Если отчет выше содержит номер ошибки, это указывает на ошибку при работе контроллера, до попытки выполнить doctest. Причиной чаще является неверные отступы или ошибки в коде вне функции. \nЗеленый заголовок указывает на успешное выполнение всех тестов. В этом случае результаты тестов не показываются.',
-'If you answer "yes", be patient, it may take a while to download': 'Если вы ответили "Да", потерпите, загрузка может потребовать времени',
-'If you answer yes, be patient, it may take a while to download': 'Если вы ответили "Да", потерпите, загрузка может потребовать времени',
'if your application uses a database other than sqlite you will then have to configure its DAL in pythonanywhere.': 'if your application uses a database other than sqlite you will then have to configure its DAL in pythonanywhere.',
'import': 'import',
'Import/Export': 'Импорт/Экспорт',
@@ -339,10 +290,6 @@
'includes': 'включает',
'Incorrect code. {0} more attempt(s) remaining.': 'Incorrect code. {0} more attempt(s) remaining.',
'Indent with tabs': 'Indent with tabs',
-'Index': 'Индекс',
-'index': 'index',
-'insert new': 'вставить новый',
-'insert new %s': 'вставить новый %s',
'inspect attributes': 'inspect attributes',
'Install': 'Установить',
'Installation of %(plugin)s for %(app)s': 'Installation of %(plugin)s for %(app)s',
@@ -373,8 +320,6 @@
'Invalid username': 'Invalid username',
'Invitation to join %(site)s': 'Invitation to join %(site)s',
'Key': 'Key',
-'Key bindings': 'Комбинации клавиш',
-'Key bindings for ZenConding Plugin': 'Комбинации клавиш для плагина ZenConding',
'Key verified': 'Key verified',
'Keyboard shortcuts': 'Keyboard shortcuts',
'kill process': 'kill process',
@@ -382,11 +327,9 @@
'Language files (static strings) updated': 'Языковые файлы (статичные строки) обновлены',
'languages': 'языки',
'Languages': 'Языки',
-'languages updated': 'языки обновлены',
'Last name': 'Фамилия',
'Last Revision': 'Last Revision',
'Last saved on:': 'Последнее сохранение:',
-'Layout': 'Верстка',
'License for': 'Лицензия для',
'License:': 'License:',
'Line Nr': 'Line Nr',
@@ -394,24 +337,19 @@
'lists by exception': 'lists by exception',
'lists by ticket': 'lists by ticket',
'Loading...': 'Loading...',
-'loading...': 'загрузка...',
'Local Apps': 'Local Apps',
'locals': 'locals',
'Locals##debug': 'Locals##debug',
-'located in the file': 'расположенный в файле',
'Log In': 'Log In',
'Logged in': 'Logged in',
'Logged out': 'Logged out',
-'login': 'логин',
'Login': 'Логин',
'Login disabled by administrator': 'Login disabled by administrator',
'Login successful': 'Login successful',
'Login to the Administrative Interface': 'Вход в интерфейс администратора',
'Login/Register': 'Login/Register',
'Logout': 'выход',
-'Lost Password': 'Забыли пароль',
'lost password': 'lost password',
-'lost password?': 'Пароль утерян?',
'Main Menu': 'Главное меню',
'Manage': 'Manage',
'Manage %(action)s': 'Manage %(action)s',
@@ -419,11 +357,8 @@
'Manage Admin Users/Students': 'Manage Admin Users/Students',
'Manage Cache': 'Manage Cache',
'Manage Students': 'Manage Students',
-'Match Pair': 'Найти пару',
'Memberships': 'Memberships',
-'Menu Model': 'Модель меню',
'merge': 'объединить',
-'Merge Lines': 'Объединить линии',
'Models': 'Модели',
'models': 'модели',
'Modified On': 'Modified On',
@@ -443,8 +378,6 @@
'New simple application': 'Новое простое приложение',
'next': 'next',
'next %s rows': 'next %s rows',
-'next 100 rows': 'следующие 100 строк',
-'Next Edit Point': 'Следующее место правки',
'NO': 'НЕТ',
'no changes': 'no changes',
'No databases in this application': 'В приложении нет базы данных',
@@ -465,8 +398,6 @@
'or alternatively': 'or alternatively',
'Or Get from URL:': 'Or Get from URL:',
'or import from csv file': 'или испорт из cvs файла',
-'or provide app url:': 'или URL приложения:',
-'or provide application url:': 'или URL приложения:',
'Origin': 'Оригинал',
'Original/Translation': 'Оригинал/Перевод',
'Overview': 'Overview',
@@ -489,7 +420,6 @@
'Permissions': 'Permissions',
'Please': 'Please',
'please input your password again': 'please input your password again',
-'please wait!': 'подождите, пожалуйста!',
'Please wait, giving pythonanywhere a moment...': 'Please wait, giving pythonanywhere a moment...',
'plugin "%(plugin)s" deleted': 'plugin "%(plugin)s" deleted',
'Plugin "%s" in application': 'Плагин "%s" в приложении',
@@ -503,8 +433,6 @@
'Preferences saved correctly': 'Preferences saved correctly',
'Preferences saved on session only': 'Preferences saved on session only',
'previous %s rows': 'previous %s rows',
-'previous 100 rows': 'предыдущие 100 строк',
-'Previous Edit Point': 'Предыдущее место правки',
'Private files': 'Private files',
'private files': 'private files',
'Profile updated': 'Profile updated',
@@ -523,7 +451,6 @@
'Ram Cleared': 'Ram Cleared',
'Rapid Search': 'Rapid Search',
'Record': 'Record',
-'record': 'запись',
'Record %(id)s created': 'Record %(id)s created',
'Record %(id)s deleted': 'Record %(id)s deleted',
'Record %(id)s read': 'Record %(id)s read',
@@ -531,12 +458,10 @@
'Record Created': 'Record Created',
'Record Deleted': 'Record Deleted',
'record does not exist': 'запись не существует',
-'record id': 'id записи',
-'Record ID': 'ID записи',
'Record id': 'Record id',
+'Record ID': 'ID записи',
'Record Updated': 'Record Updated',
'refresh': 'refresh',
-'Register': 'Зарегистрироваться',
'register': 'зарегистрироваться',
'Registration identifier': 'Registration identifier',
'Registration is pending approval': 'Registration is pending approval',
@@ -567,17 +492,14 @@
'Revision:': 'Revision:',
'Role': 'Роль',
'Roles': 'Roles',
-'Rows in table': 'Строк в таблице',
'Rows in Table': 'Rows in Table',
'Rows selected': 'Выбрано строк',
'rules are not defined': 'rules are not defined',
-'rules:': 'rules:',
'Run tests': 'Run tests',
'Run tests in this file': 'Run tests in this file',
"Run tests in this file (to run all files, you may also use the button labelled 'test')": "Run tests in this file (to run all files, you may also use the button labelled 'test')",
'Running on %s': 'Running on %s',
'Save': 'Save',
-'save': 'сохранить',
'Save file:': 'Save file:',
'Save file: %s': 'Save file: %s',
'Save model as...': 'Save model as...',
@@ -586,7 +508,6 @@
'Screenshot %s': 'Screenshot %s',
'Search': 'Search',
'Select Files to Package': 'Select Files to Package',
-'selected': 'выбрано',
'session': 'session',
'session expired': 'сессия истекла',
'Session saved correctly': 'Session saved correctly',
@@ -608,42 +529,29 @@
'Start searching': 'Start searching',
'Start wizard': 'запустить мастер',
'state': 'статус',
-'Static': 'Static',
'static': 'статичные файлы',
+'Static': 'Static',
'Static files': 'Статические файлы',
'Statistics': 'Statistics',
'Step': 'Step',
'step': 'step',
'stop': 'stop',
-'Stylesheet': 'Таблицы стилей',
-'submit': 'Отправить',
'Submit': 'Submit',
+'submit': 'Отправить',
'successful': 'successful',
-'Sure you want to delete this object?': 'Действительно хотите удалить данный объект?',
'switch to : db': 'switch to : db',
'switch to : filesystem': 'switch to : filesystem',
'Tab width (# characters)': 'Tab width (# characters)',
-'table': 'таблица',
'Table': 'Table',
-'Table name': 'Название таблицы',
'Temporary': 'Temporary',
'test': 'тест',
-'test_def': 'test_def',
-'test_for': 'test_for',
-'test_if': 'test_if',
-'test_try': 'test_try',
'Testing application': 'Тест приложения',
-'Testing controller': 'Тест контроллера',
'The "query" is a condition like "db.table1.field1==\'value\'". Something like "db.table1.field1==db.table2.field2" results in a SQL JOIN.': '"query" является условием вида "db.table1.field1 == \'значение\'". Что-либо типа "db.table1.field1 db.table2.field2 ==" ведет к SQL JOIN.',
'The app exists, was created by wizard, continue to overwrite!': 'The app exists, was created by wizard, continue to overwrite!',
'The app exists, was NOT created by wizard, continue to overwrite!': 'The app exists, was NOT created by wizard, continue to overwrite!',
-'the application logic, each URL path is mapped in one exposed function in the controller': 'Логика приложения, каждый URL отображается в открытую функцию в контроллере',
'The application logic, each URL path is mapped in one exposed function in the controller': 'Логика приложения, каждый URL отображается к одной функции в контроллере',
-'the data representation, define database tables and sets': 'представление данных, определить таблицы и наборы',
'The data representation, define database tables and sets': 'Представление данных, определите таблицы базы данных и наборы',
-'The output of the file is a dictionary that was rendered by the view': 'Выводом файла является словарь, который создан в виде',
'The presentations layer, views are also known as templates': 'Слой презентации, виды так же известны, как шаблоны',
-'the presentations layer, views are also known as templates': 'слой представления, виды известные так же как шаблоны',
'Theme': 'Theme',
'There are no controllers': 'Отсутствуют контроллеры',
'There are no models': 'Отсутствуют модели',
@@ -656,14 +564,11 @@
'There are no views': 'Отсутствуют виды',
'These files are not served, they are only available from within your app': 'These files are not served, they are only available from within your app',
'These files are served without processing, your images go here': 'Эти файлы обслуживаются без обработки, ваши изображения попадут сюда',
-'these files are served without processing, your images go here': 'Эти файлы обслуживаются без обработки, ваши изображения попадут сюда',
'This code was emailed to you and is required for login.': 'This code was emailed to you and is required for login.',
"This debugger may not work properly if you don't have a threaded webserver or you're using multiple daemon processes.": "This debugger may not work properly if you don't have a threaded webserver or you're using multiple daemon processes.",
'This email already has an account': 'This email already has an account',
-'This is a copy of the scaffolding application': 'Это копия сгенерированного приложения',
'This is an experimental feature and it needs more testing. If you decide to downgrade you do it at your own risk': 'This is an experimental feature and it needs more testing. If you decide to downgrade you do it at your own risk',
'This is an experimental feature and it needs more testing. If you decide to upgrade you do it at your own risk': 'This is an experimental feature and it needs more testing. If you decide to upgrade you do it at your own risk',
-'This is the %(filename)s template': 'Это шаблон %(filename)s',
"This page can commit your changes to an openshift app repo and push them to your cloud instance. This assumes that you've already created the application instance using the web2py skeleton and have that repo somewhere on a filesystem that this web2py instance can access. This functionality requires GitPython installed and on the python path of the runtime that web2py is operating in.": "This page can commit your changes to an openshift app repo and push them to your cloud instance. This assumes that you've already created the application instance using the web2py skeleton and have that repo somewhere on a filesystem that this web2py instance can access. This functionality requires GitPython installed and on the python path of the runtime that web2py is operating in.",
'This page can upload your application to the Google App Engine computing cloud. Mind that you must first create indexes locally and this is done by installing the Google appserver and running the app locally with it once, or there will be errors when selecting records. Attention: deployment may take long time, depending on the network speed. Attention: it will overwrite your app.yaml. DO NOT SUBMIT TWICE.': 'This page can upload your application to the Google App Engine computing cloud. Mind that you must first create indexes locally and this is done by installing the Google appserver and running the app locally with it once, or there will be errors when selecting records. Attention: deployment may take long time, depending on the network speed. Attention: it will overwrite your app.yaml. DO NOT SUBMIT TWICE.',
'this page to see if a breakpoint was hit and debug interaction is required.': 'this page to see if a breakpoint was hit and debug interaction is required.',
@@ -674,7 +579,6 @@
'Ticket Missing': 'Ticket Missing',
'Time in Cache (h:m:s)': 'Time in Cache (h:m:s)',
'Timestamp': 'Время',
-'TM': 'TM',
'to previous version.': 'на предыдущую версию.',
'To create a plugin, name a file/folder plugin_[name]': 'Для создания плагина назовите файл/папку plugin_[название]',
'To emulate a breakpoint programatically, write:': 'To emulate a breakpoint programatically, write:',
@@ -683,9 +587,7 @@
'Toggle comment': 'Toggle comment',
'Toggle Fullscreen': 'Toggle Fullscreen',
'Traceback': 'Traceback',
-'translation strings for the application': 'строки перевода для приложения',
'Translation strings for the application': 'Строки перевода для приложения',
-'try': 'try',
'try something like': 'попробовать что-либо вида',
'Try the mobile interface': 'Try the mobile interface',
'try view': 'try view',
@@ -697,8 +599,6 @@
'unable to delete file "%(filename)s"': 'невозможно удалить файл "%(filename)s"',
'unable to delete file plugin "%(plugin)s"': 'unable to delete file plugin "%(plugin)s"',
'Unable to determine the line number!': 'Unable to determine the line number!',
-'Unable to download': 'Невозможно загрузить',
-'Unable to download app': 'Невозможно загрузить',
'Unable to download app because:': 'Unable to download app because:',
'unable to download layout': 'unable to download layout',
'unable to download plugin: %s': 'unable to download plugin: %s',
@@ -716,19 +616,13 @@
'Update:': 'Обновить:',
'Upgrade': 'Upgrade',
'upgrade now to %s': 'upgrade now to %s',
-'upgrade web2py now': 'обновить web2py сейчас',
'upload': 'загрузить',
'Upload': 'Upload',
-'Upload & install packed application': 'Загрузить и установить приложение в архиве',
'Upload a package:': 'Загрузить пакет:',
'Upload and install packed application': 'Upload and install packed application',
-'upload application:': 'загрузить файл:',
-'Upload existing application': 'Загрузить существующее приложение',
'upload file:': 'загрузить файл:',
'upload plugin file:': 'загрузить файл плагина:',
'Use (...)&(...) for AND, (...)|(...) for OR, and ~(...) for NOT to build more complex queries.': 'Используйте (...)&(...) для AND, (...)|(...) для OR, и ~(...) для NOT при создании сложных запросов.',
-'Use an url:': 'Используйте url:',
-'user': 'пользователь',
'User': 'User',
'User %(id)s is impersonating %(other_id)s': 'User %(id)s is impersonating %(other_id)s',
'User %(id)s Logged-in': 'User %(id)s Logged-in',
@@ -751,9 +645,6 @@
'Verify Password': 'Verify Password',
'Version': 'Версия',
'Versioning': 'Versioning',
-'versioning': 'версии',
-'View': 'Вид',
-'view': 'вид',
'Views': 'Виды',
'views': 'виды',
'Warning!': 'Warning!',
@@ -766,28 +657,19 @@
'web2py downgrade': 'web2py downgrade',
'web2py is up to date': 'web2py обновлен',
'web2py online debugger': 'web2py online debugger',
-'web2py Recent Tweets': 'последние твиты по web2py',
'web2py upgrade': 'web2py upgrade',
'web2py upgraded; please restart it': 'web2py upgraded; please restart it',
'Welcome %(username)s! Click on the link %(link)s to verify your email': 'Welcome %(username)s! Click on the link %(link)s to verify your email',
-'Welcome %s': 'Добро пожаловать, %s',
-'Welcome to web2py': 'Добро пожаловать в web2py',
-'Which called the function': 'Который вызвал функцию',
'Working...': 'Working...',
-'Wrap with Abbreviation': 'Заключить в аббревиатуру',
'WSGI reference name': 'WSGI reference name',
-'xml': 'xml',
'YES': 'ДА',
'Yes': 'Yes',
-'You are successfully running web2py': 'Вы успешно запустили web2by',
'You can also set and remove breakpoint in the edit window, using the Toggle Breakpoint button': 'You can also set and remove breakpoint in the edit window, using the Toggle Breakpoint button',
'You can inspect variables using the console below': 'You can inspect variables using the console below',
-'You can modify this application and adapt it to your needs': 'Вы можете изменить это приложение и подогнать под свои нужды',
'You have been invited to join %(site)s, click %(link)s to complete the process': 'You have been invited to join %(site)s, click %(link)s to complete the process',
'You have one more login attempt before you are locked out': 'You have one more login attempt before you are locked out',
'You need to set up and reach a': 'You need to set up and reach a',
'You only need these if you have already registered': 'You only need these if you have already registered',
-'You visited the url': 'Вы посетили URL',
'Your application will be blocked until you click an action button (next, step, continue, etc.)': 'Your application will be blocked until you click an action button (next, step, continue, etc.)',
'Your password is: %(password)s': 'Your password is: %(password)s',
'Your temporary login code is {0}': 'Your temporary login code is {0}',
diff --git a/applications/admin/languages/sl.py b/applications/admin/languages/sl.py
old mode 100755
new mode 100644
index 02655b3d..e165d389
--- a/applications/admin/languages/sl.py
+++ b/applications/admin/languages/sl.py
@@ -11,7 +11,6 @@
'%s students registered': '%s students registered',
'%Y-%m-%d': '%Y-%m-%d',
'%Y-%m-%d %H:%M:%S': '%Y-%m-%d %H:%M:%S',
-'(requires internet access)': '(zahteva internetni dostop)',
'(requires internet access, experimental)': '(requires internet access, experimental)',
'(something like "it-it")': '(nekaj kot "sl-SI" ali samo "sl")',
'(version %s)': '(version %s)',
@@ -33,28 +32,22 @@
'@markmin\x01Searching: **%s** %%{file}': 'Iskanje: **%s** datoteke',
'@markmin\x01You need to set up and reach a [[breakpoint %s]] to use the debugger!': 'You need to set up and reach a [[breakpoint %s]] to use the debugger!',
'A new password was emailed to you': 'A new password was emailed to you',
-'A new version of web2py is available': 'Nova različica web2py je na voljo',
-'A new version of web2py is available: %s': 'Nova različica web2py je na voljo: %s',
'Abort': 'Preklic',
'About': 'Vizitka',
'About application': 'O aplikaciji',
'Accept Terms': 'Accept Terms',
'Add breakpoint': 'Add breakpoint',
-'additional code for your application': 'dodatna koda za vašo aplikacijo',
'Additional code for your application': 'Dodatna koda za vašo aplikacijo',
'Admin design page': 'Admin design page',
'admin disabled because no admin password': 'skrbnik izključen, ker ni skrbniškega gesla',
'admin disabled because not supported on google app engine': 'admin disabled because not supported on google app engine',
-'admin disabled because not supported on google apps engine': 'skrbnik izključen, ker ni podprt na Google App sistemu',
'admin disabled because too many invalid login attempts': 'admin disabled because too many invalid login attempts',
'admin disabled because unable to access password file': 'skrbnik izključen, ker ne morem dostopati do datoteke z gesli',
'Admin is disabled because insecure channel': 'Skrbnik je izključen zaradi nezavarovane povezave',
-'Admin is disabled because unsecure channel': 'Skrbnik je izključen zaradi nezavarovane povezave',
'Admin language': 'Skrbniški jezik',
'Admin versioning page': 'Admin versioning page',
'administrative interface': 'skrbniški vmesnik',
'Administrator Password:': 'Skrbniško geslo:',
-'and rename it (required):': 'in jo preimenujte (obvezno):',
'and rename it:': ' in jo preimenujte:',
'App does not exist or you are not authorized': 'App does not exist or you are not authorized',
'appadmin': 'appadmin',
@@ -73,9 +66,7 @@
'Are you sure you want to delete file "%s"?': 'Ali res želite pobrisati datoteko "%s"?',
'Are you sure you want to delete plugin "%s"?': 'Are you sure you want to delete plugin "%s"?',
'Are you sure you want to delete this object?': 'Ali res želite izbrisati ta predmet?',
-'Are you sure you want to uninstall application "%s"': 'Ali res želite odstraniti program "%s"',
'Are you sure you want to uninstall application "%s"?': 'Ali res želite odstraniti program "%s"?',
-'Are you sure you want to upgrade web2py now?': 'Ali želite sedaj nadgraditi web2py?',
'Are you sure?': 'Are you sure?',
'arguments': 'argumenti',
'at char %s': 'at char %s',
@@ -83,18 +74,14 @@
'ATTENTION:': 'ATTENTION:',
'ATTENTION: Login requires a secure (HTTPS) connection or running on localhost.': 'POZOR: Prijava zahteva varno povezavo (HTTPS) ali lokalni (localhost) dostop.',
'ATTENTION: TESTING IS NOT THREAD SAFE SO DO NOT PERFORM MULTIPLE TESTS CONCURRENTLY.': 'POZOR: Testiranje ni večopravilno, zato ne poganjajte več testov hkrati.',
-'ATTENTION: This is an experimental feature and it needs more testing.': 'POZOR: To je preizkusni fazi in potrebuje več testiranja.',
'ATTENTION: you cannot edit the running application!': 'POZOR: Ne morete urejati aplikacije, ki že teče!',
-'Authentication': 'Avtentikacija',
'Authentication code': 'Authentication code',
'Autocomplete Python Code': 'Autocomplete Python Code',
-'Available databases and tables': 'Podatkovne baze in tabele',
'Available Databases and Tables': 'Available Databases and Tables',
'back': 'nazaj',
'Back to the plugins list': 'Back to the plugins list',
'Back to wizard': 'Back to wizard',
'Basics': 'Basics',
-'beautify': 'olepšaj',
'Begin': 'Začni',
'breakpoint': 'breakpoint',
'Breakpoints': 'Breakpoints',
@@ -106,19 +93,15 @@
'Cache Cleared': 'Cache Cleared',
'Cache Keys': 'Cache Keys',
'cache, errors and sessions cleaned': 'Predpomnilnik, napake in seja so očiščeni',
-'call': 'kliči',
'can be a git repo': 'can be a git repo',
'Cancel': 'Cancel',
'Cannot be empty': 'Ne sme biti prazno',
-'Cannot compile: there are errors in your app. Debug it, correct errors and try again.': 'Nemogoče prevajanje: napake v programu. Odpravite napake in poskusite ponovno.',
'Cannot compile: there are errors in your app:': 'Cannot compile: there are errors in your app:',
'cannot create file': 'ne morem ustvariti datoteke',
'cannot upload file "%(filename)s"': 'ne morem naložiti datoteke "%(filename)s"',
'Change Admin Password': 'Change Admin Password',
'Change admin password': 'Spremenite skrbniško geslo',
'change editor settings': 'change editor settings',
-'Change Password': 'Spremeni geslo',
-'change password': 'spremeni geslo',
'Change password': 'Change password',
'Changelog': 'Changelog',
'check all': 'označi vse',
@@ -130,12 +113,9 @@
'Clear CACHE?': 'Clear CACHE?',
'Clear DISK': 'Clear DISK',
'Clear RAM': 'Clear RAM',
-'click here for online examples': 'kliknite za spletne primere',
-'click here for the administrative interface': 'kliknite za skrbniški vmesnik',
'Click on the link %(link)s to reset your password': 'Click on the link %(link)s to reset your password',
'Click row to expand traceback': 'Kliknite vrstico da razširite sledenje',
'Click row to view a ticket': 'Kliknite vrstico za ogled listka',
-'click to check for upgrades': 'kliknite za preverjanje nadgradenj',
'Client IP': 'IP klienta',
'code': 'koda',
'Code listing': 'Code listing',
@@ -151,15 +131,11 @@
'compiled application removed': 'prevedena aplikacija je odstranjena',
'Condition': 'Condition',
'continue': 'continue',
-'Controller': 'Krmilnik',
'Controllers': 'Krmilniki',
'controllers': 'krmilniki',
-'Copyright': 'Copyright',
'Count': 'Število',
'Create': 'Ustvari',
'create file with filename:': 'Ustvari datoteko z imenom:',
-'create new application:': 'Ustvari novo aplikacijo:',
-'Create new simple application': 'Ustvari novo enostavno aplikacijo',
'Create/Upload': 'Create/Upload',
'created by': 'ustvaril',
'Created by:': 'Created by:',
@@ -171,18 +147,14 @@
'Current session': 'Trenutna seja',
'currently running': 'trenutno teče',
'currently saved or': 'trenutno shranjeno ali',
-'customize me!': 'Spremeni me!',
'data uploaded': 'podatki naloženi',
'Database': 'Podatkovna baza',
-'database': 'podatkovna baza',
'Database %s select': 'Database %s select',
-'database %s select': 'izberi podatkovno bazo %s ',
'Database administration': 'Database administration',
'database administration': 'upravljanje s podatkovno bazo',
'Database Administration (appadmin)': 'Database Administration (appadmin)',
'Date and Time': 'Datum in čas',
'db': 'db',
-'DB Model': 'Podatkovni model',
'Debug': 'Debug',
'defines tables': 'definiraj tabele',
'Delete': 'Izbriši',
@@ -203,8 +175,6 @@
'Description': 'Opis',
'Description:': 'Description:',
'design': 'oblikuj',
-'DESIGN': 'Izgled',
-'Design for': 'Oblikuj za',
'Detailed traceback description': 'Natačen opis sledenja',
'details': 'podrobnosti',
'direction: ltr': 'smer: ltr',
@@ -221,7 +191,6 @@
'DO NOT use the "Pack compiled" feature.': 'DO NOT use the "Pack compiled" feature.',
'docs': 'docs',
'Docs': 'Docs',
-'documentation': 'dokumentacija',
'done!': 'Narejeno!',
'Downgrade': 'Downgrade',
'Download .w2p': 'Download .w2p',
@@ -231,20 +200,13 @@
'download plugins': 'prenesi vtičnik',
'Download plugins from repository': 'Download plugins from repository',
'E-mail': 'E-mail',
-'EDIT': 'UREDI',
'Edit': 'Uredi',
'edit all': 'edit all',
'Edit application': 'Uredi program',
-'edit controller': 'uredi krmilnik',
'edit controller:': 'edit controller:',
'Edit current record': 'Uredi trenutni zapis',
-'Edit Profile': 'Uredi profil',
-'edit profile': 'uredi profil',
-'Edit This App': 'Uredi ta program',
'edit views:': 'urejaj poglede:',
'Editing %s': 'Editing %s',
-'Editing file': 'Urejanje datoteke',
-'Editing file "%s"': 'Urejanje datoteke "%s"',
'Editing Language file': 'Uredi jezikovno datoteko',
'Editing Plural Forms File': 'Editing Plural Forms File',
'Editor': 'Editor',
@@ -255,18 +217,15 @@
'Enable': 'Enable',
'Enable Close-Tag': 'Enable Close-Tag',
'Enable Code Folding': 'Enable Code Folding',
-'Enterprise Web Framework': 'Enterprise Web Framework',
'Error': 'Napaka',
'Error logs for "%(app)s"': 'Dnevnik napak za "%(app)s"',
'Error snapshot': 'Posnetek napake',
'Error ticket': 'Listek napake',
'Errors': 'Napake',
-'escape': 'escape',
'Exception %(extype)s: %(exvalue)s': 'Exception %(extype)s: %(exvalue)s',
'Exception %s': 'Exception %s',
'Exception instance attributes': 'Lastnosti instance izjeme',
'Exit Fullscreen': 'Exit Fullscreen',
-'Expand Abbreviation': 'Razširi okrajšave',
'Expand Abbreviation (html files only)': 'Expand Abbreviation (html files only)',
'export as csv file': 'izvozi kot CSV',
'Exports:': 'Exports:',
@@ -274,13 +233,11 @@
'exposes:': 'exposes:',
'extends': 'razširja',
'failed to compile file because:': 'failed to compile file because:',
-'failed to reload module': 'nisem uspel ponovno naložiti modula',
'failed to reload module because:': 'failed to reload module because:',
'File': 'Datoteka',
'file "%(filename)s" created': 'datoteka "%(filename)s" ustvarjena',
'file "%(filename)s" deleted': 'datoteka "%(filename)s" izbrisana',
'file "%(filename)s" uploaded': 'datoteka "%(filename)s" prenešena',
-'file "%(filename)s" was not deleted': 'datoteka "%(filename)s" ni bila izbrisana',
'file "%s" of %s restored': 'datoteka "%s" od %s obnovljena',
'file changed on disk': 'datoteka je bila spremenjena',
'file does not exist': 'datoteka ne obstaja',
@@ -302,22 +259,19 @@
'GAE Output': 'GAE Output',
'GAE Password': 'GAE Password',
'Generate': 'Generate',
-'Get from URL:': 'Naloži iz URL:',
'Git Pull': 'Git Pull',
'Git Push': 'Git Push',
'Globals##debug': 'Globals##debug',
-'Go to Matching Pair': 'Pojdi k ujemalnemu paru',
'go!': 'go!',
'Google App Engine Deployment Interface': 'Google App Engine Deployment Interface',
'Google Application Id': 'Google Application Id',
'Goto': 'Goto',
-'graph model': 'graph model',
'Graph Model': 'Graph Model',
+'graph model': 'graph model',
'Group %(group_id)s created': 'Group %(group_id)s created',
'Group %(group_id)s deleted': 'Group %(group_id)s deleted',
'Group ID': 'ID skupine',
'Group uniquely assigned to user %(id)s': 'Group uniquely assigned to user %(id)s',
-'Hello World': 'Pozdravljen, Svet!',
'Help': 'Pomoč',
'here': 'here',
'Hide/Show Translated strings': 'Hide/Show Translated strings',
@@ -325,13 +279,10 @@
'Hits': 'Hits',
'Home': 'Home',
'honored only if the expression evaluates to true': 'honored only if the expression evaluates to true',
-'htmledit': 'htmledit',
'If start the downgrade, be patient, it may take a while to rollback': 'If start the downgrade, be patient, it may take a while to rollback',
'If start the upgrade, be patient, it may take a while to download': 'If start the upgrade, be patient, it may take a while to download',
'If the report above contains a ticket number it indicates a failure in executing the controller, before any attempt to execute the doctests. This is usually due to an indentation error or an error outside function code.\n\t\tA green title indicates that all tests (if defined) passed. In this case test results are not shown.': 'If the report above contains a ticket number it indicates a failure in executing the controller, before any attempt to execute the doctests. This is usually due to an indentation error or an error outside function code.\n\t\tA green title indicates that all tests (if defined) passed. In this case test results are not shown.',
'If the report above contains a ticket number it indicates a failure in executing the controller, before any attempt to execute the doctests. This is usually due to an indentation error or an error outside function code.\nA green title indicates that all tests (if defined) passed. In this case test results are not shown.': 'Če poročilo zgoraj vsebuje številko listka to pomeni napako pri izvajanju krmilnika, še preden so se izvedli doctesti. To ponavadi pomeni napako pri zamiku programske vrstice ali izven funkcije.\nZelen naslov označuje, da so vsi testi opravljeni. V tem primeru testi niso prikazani.',
-'If you answer "yes", be patient, it may take a while to download': 'Če odgovorite z "DA", potrpite. Prenos traja nekaj časa',
-'If you answer yes, be patient, it may take a while to download': 'Če odgovorite z "DA", potrpite. Prenos traja nekaj časa',
'if your application uses a database other than sqlite you will then have to configure its DAL in pythonanywhere.': 'if your application uses a database other than sqlite you will then have to configure its DAL in pythonanywhere.',
'import': 'import',
'Import/Export': 'Uvoz/Izvoz',
@@ -339,10 +290,6 @@
'includes': 'vključuje',
'Incorrect code. {0} more attempt(s) remaining.': 'Incorrect code. {0} more attempt(s) remaining.',
'Indent with tabs': 'Indent with tabs',
-'Index': 'Indeks',
-'index': 'indeks',
-'insert new': 'vstavi nov',
-'insert new %s': 'vstavi nov %s',
'inspect attributes': 'pregled lastnosti',
'Install': 'Namesti',
'Installation of %(plugin)s for %(app)s': 'Installation of %(plugin)s for %(app)s',
@@ -373,8 +320,6 @@
'Invalid username': 'Invalid username',
'Invitation to join %(site)s': 'Invitation to join %(site)s',
'Key': 'Key',
-'Key bindings': 'Povezave tipk',
-'Key bindings for ZenConding Plugin': 'Povezave tipk za ZenConding vtičnik',
'Key verified': 'Key verified',
'Keyboard shortcuts': 'Keyboard shortcuts',
'kill process': 'kill process',
@@ -382,11 +327,9 @@
'Language files (static strings) updated': 'Jezikovna datoteka (statično besedilo) posodobljeno',
'languages': 'jeziki',
'Languages': 'Jeziki',
-'languages updated': 'jeziki posodobljeni',
'Last name': 'Priimek',
'Last Revision': 'Last Revision',
'Last saved on:': 'Zadnjič shranjeno:',
-'Layout': 'Postavitev',
'License for': 'Licenca za',
'License:': 'License:',
'Line Nr': 'Line Nr',
@@ -394,24 +337,19 @@
'lists by exception': 'lists by exception',
'lists by ticket': 'lists by ticket',
'Loading...': 'Loading...',
-'loading...': 'nalaganje...',
'Local Apps': 'Local Apps',
'locals': 'locals',
'Locals##debug': 'Locals##debug',
-'located in the file': 'se nahaja v datoteki',
'Log In': 'Log In',
'Logged in': 'Logged in',
'Logged out': 'Logged out',
-'login': 'prijava',
'Login': 'Prijava',
'Login disabled by administrator': 'Login disabled by administrator',
'Login successful': 'Login successful',
'Login to the Administrative Interface': 'Prijava v skrbniški vmesnik',
'Login/Register': 'Login/Register',
'Logout': 'Odjava',
-'Lost Password': 'Izgubljeno geslo',
'lost password': 'lost password',
-'lost password?': 'Izgubljeno geslo?',
'Main Menu': 'Glavni meni',
'Manage': 'Manage',
'Manage %(action)s': 'Manage %(action)s',
@@ -419,11 +357,8 @@
'Manage Admin Users/Students': 'Manage Admin Users/Students',
'Manage Cache': 'Manage Cache',
'Manage Students': 'Manage Students',
-'Match Pair': 'Ujemalni par',
'Memberships': 'Memberships',
-'Menu Model': 'Model menija',
'merge': 'združi',
-'Merge Lines': 'Združi vrstice',
'Models': 'Modeli',
'models': 'modeli',
'Modified On': 'Modified On',
@@ -443,8 +378,6 @@
'New simple application': 'Nova enostavna aplikacija',
'next': 'next',
'next %s rows': 'next %s rows',
-'next 100 rows': 'naslednjih 100 zapisov',
-'Next Edit Point': 'Naslednja točka urejanja',
'NO': 'NE',
'no changes': 'no changes',
'No databases in this application': 'V tem programu ni podatkovnih baz',
@@ -465,8 +398,6 @@
'or alternatively': 'or alternatively',
'Or Get from URL:': 'Or Get from URL:',
'or import from csv file': 'ali uvozi iz CSV datoteke',
-'or provide app url:': 'ali vpišite URL programa:',
-'or provide application url:': 'ali vpišite URL programa:',
'Origin': 'Izvor',
'Original/Translation': 'Izvor/Prevod',
'Overview': 'Overview',
@@ -489,7 +420,6 @@
'Permissions': 'Permissions',
'Please': 'Please',
'please input your password again': 'please input your password again',
-'please wait!': 'Prosim počakajte!',
'Please wait, giving pythonanywhere a moment...': 'Please wait, giving pythonanywhere a moment...',
'plugin "%(plugin)s" deleted': 'plugin "%(plugin)s" deleted',
'Plugin "%s" in application': 'Vtičnik "%s" v aplikaciji',
@@ -503,8 +433,6 @@
'Preferences saved correctly': 'Preferences saved correctly',
'Preferences saved on session only': 'Preferences saved on session only',
'previous %s rows': 'previous %s rows',
-'previous 100 rows': 'prejšnjih 100 zapisov',
-'Previous Edit Point': 'Prejšnja točka urejanja',
'Private files': 'Private files',
'private files': 'private files',
'Profile updated': 'Profile updated',
@@ -523,7 +451,6 @@
'Ram Cleared': 'Ram Cleared',
'Rapid Search': 'Rapid Search',
'Record': 'Record',
-'record': 'zapis',
'Record %(id)s created': 'Record %(id)s created',
'Record %(id)s deleted': 'Record %(id)s deleted',
'Record %(id)s read': 'Record %(id)s read',
@@ -531,12 +458,10 @@
'Record Created': 'Record Created',
'Record Deleted': 'Record Deleted',
'record does not exist': 'zapis ne obstaja',
-'record id': 'id zapisa',
-'Record ID': 'ID zapisa',
'Record id': 'Record id',
+'Record ID': 'ID zapisa',
'Record Updated': 'Record Updated',
'refresh': 'refresh',
-'Register': 'Registracija',
'register': 'registracija',
'Registration identifier': 'Registration identifier',
'Registration is pending approval': 'Registration is pending approval',
@@ -567,7 +492,6 @@
'Revision:': 'Revision:',
'Role': 'Vloga',
'Roles': 'Roles',
-'Rows in table': 'Vrstic v tabeli',
'Rows in Table': 'Rows in Table',
'Rows selected': 'Izbranih vrstic',
'rules are not defined': 'rules are not defined',
@@ -576,7 +500,6 @@
"Run tests in this file (to run all files, you may also use the button labelled 'test')": "Poženi teste v tej datoteki (za vse teste uporabite gumb 'test')",
'Running on %s': 'Running on %s',
'Save': 'Save',
-'save': 'shrani',
'Save file:': 'Save file:',
'Save file: %s': 'Save file: %s',
'Save model as...': 'Save model as...',
@@ -585,7 +508,6 @@
'Screenshot %s': 'Screenshot %s',
'Search': 'Search',
'Select Files to Package': 'Select Files to Package',
-'selected': 'izbrano',
'session': 'seja',
'session expired': 'seja pretekla',
'Session saved correctly': 'Session saved correctly',
@@ -607,42 +529,29 @@
'Start searching': 'Start searching',
'Start wizard': 'Zaženi čarovnika',
'state': 'stanje',
-'Static': 'Static',
'static': 'statično',
+'Static': 'Static',
'Static files': 'Statične datoteke',
'Statistics': 'Statistics',
'Step': 'Step',
'step': 'step',
'stop': 'stop',
-'Stylesheet': 'CSS datoteka',
-'submit': 'pošlji',
'Submit': 'Submit',
+'submit': 'pošlji',
'successful': 'successful',
-'Sure you want to delete this object?': 'Ali res želite izbrisati ta predmet?',
'switch to : db': 'switch to : db',
'switch to : filesystem': 'switch to : filesystem',
'Tab width (# characters)': 'Tab width (# characters)',
-'table': 'tabela',
'Table': 'Table',
-'Table name': 'Ime tabele',
'Temporary': 'Temporary',
'test': 'test',
-'test_def': 'test_def',
-'test_for': 'test_for',
-'test_if': 'test_if',
-'test_try': 'test_try',
'Testing application': 'Testiranje programa',
-'Testing controller': 'Testiranje krmilnika',
'The "query" is a condition like "db.table1.field1==\'value\'". Something like "db.table1.field1==db.table2.field2" results in a SQL JOIN.': '"vprašanje" je pogoj kot npr. "db.table1.field1 == \'vrednost\'". Nekaj kot "db.table1.field1 == db.table2.field2" izvede SQL operacijo JOIN.',
'The app exists, was created by wizard, continue to overwrite!': 'The app exists, was created by wizard, continue to overwrite!',
'The app exists, was NOT created by wizard, continue to overwrite!': 'The app exists, was NOT created by wizard, continue to overwrite!',
-'the application logic, each URL path is mapped in one exposed function in the controller': 'krmilna logika, vsaka URL pot je preslikana v eno funkcijo v krmilniku',
'The application logic, each URL path is mapped in one exposed function in the controller': 'Logika delovanja aplikacije. Vsak URL je povezan z eno objavljeno funkcijo v krmilniku',
-'the data representation, define database tables and sets': 'podatkovna predstavitev, definirajte tabele in množice',
'The data representation, define database tables and sets': 'Predstavitev podatkov. Definirajte podatkovne tabele in množice',
-'The output of the file is a dictionary that was rendered by the view': 'Rezultat datoteke je slovar, ki ga predela pogled',
'The presentations layer, views are also known as templates': 'Predstavitveni nivo. Pogledi so znani tudi kot predloge',
-'the presentations layer, views are also known as templates': 'predstavitveni nivo, pogledi so tudi znani kot predloge',
'Theme': 'Theme',
'There are no controllers': 'Ni krmilnikov',
'There are no models': 'Ni modelov',
@@ -655,14 +564,11 @@
'There are no views': 'Ni pogledov',
'These files are not served, they are only available from within your app': 'These files are not served, they are only available from within your app',
'These files are served without processing, your images go here': 'Te datoteke so poslane brez obdelave. Vaše slike shranite tu.',
-'these files are served without processing, your images go here': 'te datoteke so poslane brez posredovanja in obdelave, svoje slike shranite tu',
'This code was emailed to you and is required for login.': 'This code was emailed to you and is required for login.',
"This debugger may not work properly if you don't have a threaded webserver or you're using multiple daemon processes.": "This debugger may not work properly if you don't have a threaded webserver or you're using multiple daemon processes.",
'This email already has an account': 'This email already has an account',
-'This is a copy of the scaffolding application': 'To je kopija okvirne aplikacije',
'This is an experimental feature and it needs more testing. If you decide to downgrade you do it at your own risk': 'This is an experimental feature and it needs more testing. If you decide to downgrade you do it at your own risk',
'This is an experimental feature and it needs more testing. If you decide to upgrade you do it at your own risk': 'This is an experimental feature and it needs more testing. If you decide to upgrade you do it at your own risk',
-'This is the %(filename)s template': 'To je predloga %(filename)s',
"This page can commit your changes to an openshift app repo and push them to your cloud instance. This assumes that you've already created the application instance using the web2py skeleton and have that repo somewhere on a filesystem that this web2py instance can access. This functionality requires GitPython installed and on the python path of the runtime that web2py is operating in.": "This page can commit your changes to an openshift app repo and push them to your cloud instance. This assumes that you've already created the application instance using the web2py skeleton and have that repo somewhere on a filesystem that this web2py instance can access. This functionality requires GitPython installed and on the python path of the runtime that web2py is operating in.",
'This page can upload your application to the Google App Engine computing cloud. Mind that you must first create indexes locally and this is done by installing the Google appserver and running the app locally with it once, or there will be errors when selecting records. Attention: deployment may take long time, depending on the network speed. Attention: it will overwrite your app.yaml. DO NOT SUBMIT TWICE.': 'This page can upload your application to the Google App Engine computing cloud. Mind that you must first create indexes locally and this is done by installing the Google appserver and running the app locally with it once, or there will be errors when selecting records. Attention: deployment may take long time, depending on the network speed. Attention: it will overwrite your app.yaml. DO NOT SUBMIT TWICE.',
'this page to see if a breakpoint was hit and debug interaction is required.': 'this page to see if a breakpoint was hit and debug interaction is required.',
@@ -673,7 +579,6 @@
'Ticket Missing': 'Ticket Missing',
'Time in Cache (h:m:s)': 'Time in Cache (h:m:s)',
'Timestamp': 'Časovni žig',
-'TM': 'TM',
'to previous version.': 'na prejšnjo različico.',
'To create a plugin, name a file/folder plugin_[name]': 'Če želite ustvariti vtičnik, poimenujte datoteko/mapo plugin_[ime]',
'To emulate a breakpoint programatically, write:': 'To emulate a breakpoint programatically, write:',
@@ -682,9 +587,7 @@
'Toggle comment': 'Toggle comment',
'Toggle Fullscreen': 'Toggle Fullscreen',
'Traceback': 'Sledljivost',
-'translation strings for the application': 'prevodna besedila za program',
'Translation strings for the application': 'Prevajalna besedila za aplikacijo',
-'try': 'poskusi',
'try something like': 'poskusite na primer',
'Try the mobile interface': 'Try the mobile interface',
'try view': 'try view',
@@ -696,8 +599,6 @@
'unable to delete file "%(filename)s"': 'ne morem izbrisati datoteke "%(filename)s"',
'unable to delete file plugin "%(plugin)s"': 'unable to delete file plugin "%(plugin)s"',
'Unable to determine the line number!': 'Unable to determine the line number!',
-'Unable to download': 'Ne morem prenesti datoteke',
-'Unable to download app': 'Ne morem prenesti programa',
'Unable to download app because:': 'Unable to download app because:',
'unable to download layout': 'unable to download layout',
'unable to download plugin: %s': 'unable to download plugin: %s',
@@ -715,19 +616,13 @@
'Update:': 'Posodobitev:',
'Upgrade': 'Upgrade',
'upgrade now to %s': 'upgrade now to %s',
-'upgrade web2py now': 'posodobi web2py',
'upload': 'naloži',
'Upload': 'Upload',
-'Upload & install packed application': 'Naloži in namesti pakirano aplikacijo',
'Upload a package:': 'Naloži paket:',
'Upload and install packed application': 'Naloži in namesti pakirano aplikacijo',
-'upload application:': 'naloži program:',
-'Upload existing application': 'Naloži obstoječo aplikacijo',
'upload file:': 'naloži datoteko:',
'upload plugin file:': 'naloži vtičnik:',
'Use (...)&(...) for AND, (...)|(...) for OR, and ~(...) for NOT to build more complex queries.': 'Uporabie (...)&(...) za AND, (...)|(...) za OR, in ~(...) za NOT pri gradnji kompleksnih povpraševanj.',
-'Use an url:': 'Uporabite URL:',
-'user': 'uporabnik',
'User': 'User',
'User %(id)s is impersonating %(other_id)s': 'User %(id)s is impersonating %(other_id)s',
'User %(id)s Logged-in': 'User %(id)s Logged-in',
@@ -750,9 +645,6 @@
'Verify Password': 'Verify Password',
'Version': 'Različica',
'Versioning': 'Versioning',
-'versioning': 'različice',
-'View': 'Pogled',
-'view': 'pogled',
'Views': 'Pogledi',
'views': 'pogledi',
'Warning!': 'Warning!',
@@ -765,28 +657,19 @@
'web2py downgrade': 'web2py downgrade',
'web2py is up to date': 'web2py je ažuren',
'web2py online debugger': 'web2py online debugger',
-'web2py Recent Tweets': 'zadnji tviti na web2py',
'web2py upgrade': 'web2py upgrade',
'web2py upgraded; please restart it': 'web2py upgraded; please restart it',
'Welcome %(username)s! Click on the link %(link)s to verify your email': 'Welcome %(username)s! Click on the link %(link)s to verify your email',
-'Welcome %s': 'Dobrodošli, %s',
-'Welcome to web2py': 'Dobrodošli v web2py',
-'Which called the function': 'Ki je klical funkcijo',
'Working...': 'Working...',
-'Wrap with Abbreviation': 'Ovij z okrajšavo',
'WSGI reference name': 'WSGI reference name',
-'xml': 'xml',
'YES': 'DA',
'Yes': 'Yes',
-'You are successfully running web2py': 'Uspešno ste pognali web2py',
'You can also set and remove breakpoint in the edit window, using the Toggle Breakpoint button': 'You can also set and remove breakpoint in the edit window, using the Toggle Breakpoint button',
'You can inspect variables using the console below': 'You can inspect variables using the console below',
-'You can modify this application and adapt it to your needs': 'Lahko spremenite to aplikacijo in jo prilagodite vašim potrebam',
'You have been invited to join %(site)s, click %(link)s to complete the process': 'You have been invited to join %(site)s, click %(link)s to complete the process',
'You have one more login attempt before you are locked out': 'You have one more login attempt before you are locked out',
'You need to set up and reach a': 'You need to set up and reach a',
'You only need these if you have already registered': 'You only need these if you have already registered',
-'You visited the url': 'Obiskali ste URL',
'Your application will be blocked until you click an action button (next, step, continue, etc.)': 'Your application will be blocked until you click an action button (next, step, continue, etc.)',
'Your password is: %(password)s': 'Your password is: %(password)s',
'Your temporary login code is {0}': 'Your temporary login code is {0}',
diff --git a/applications/admin/languages/sr-cr.py b/applications/admin/languages/sr-cr.py
old mode 100755
new mode 100644
index 0eab6f13..12fe9b32
--- a/applications/admin/languages/sr-cr.py
+++ b/applications/admin/languages/sr-cr.py
@@ -11,7 +11,6 @@
'%s students registered': '%s students registered',
'%Y-%m-%d': '%d-%m-%Y',
'%Y-%m-%d %H:%M:%S': '%d-%m-%Y %H:%M:%S',
-'(requires internet access)': '(захтијева приступ интернету)',
'(requires internet access, experimental)': '(захтијева приступ интернету, експериментално)',
'(something like "it-it")': '(на примјер "it-it")',
'(version %s)': '(version %s)',
@@ -137,7 +136,6 @@
'Count': 'Редни број',
'Create': 'Креирај',
'create file with filename:': 'Креирај датотеку под називом:',
-'Create rules': 'Креирај правила',
'Create/Upload': 'Креирај/Преузми',
'created by': 'израдио',
'Created by:': 'Created by:',
@@ -205,12 +203,10 @@
'Edit': 'Уреди',
'edit all': 'уреди све',
'Edit application': 'Уреди апликацију',
-'edit controller': 'уреди контролер',
'edit controller:': 'edit controller:',
'Edit current record': 'Edit current record',
'edit views:': 'уреди приказ:',
'Editing %s': 'Уређивање %s',
-'Editing file "%s"': 'Уређивање датотеке "%s"',
'Editing Language file': 'Уређивање језичке датотеке',
'Editing Plural Forms File': 'Editing Plural Forms File',
'Editor': 'Editor',
@@ -230,7 +226,6 @@
'Exception %s': 'Exception %s',
'Exception instance attributes': 'Exception instance attributes',
'Exit Fullscreen': 'Exit Fullscreen',
-'Expand Abbreviation': 'Expand Abbreviation',
'Expand Abbreviation (html files only)': 'Expand Abbreviation (html files only)',
'export as csv file': 'извези као csv датотеку',
'Exports:': 'Извози:',
@@ -264,17 +259,15 @@
'GAE Output': 'GAE Output',
'GAE Password': 'GAE Password',
'Generate': 'Generate',
-'Get from URL:': 'Преузми са странице:',
'Git Pull': 'Git Pull',
'Git Push': 'Git Push',
'Globals##debug': 'Globals##debug',
-'Go to Matching Pair': 'Go to Matching Pair',
'go!': 'крени!',
'Google App Engine Deployment Interface': 'Google App Engine Dинсталационо окружење',
'Google Application Id': 'Google Application Id',
'Goto': 'Goto',
-'graph model': 'graph model',
'Graph Model': 'Graph Model',
+'graph model': 'graph model',
'Group %(group_id)s created': 'Group %(group_id)s created',
'Group %(group_id)s deleted': 'Group %(group_id)s deleted',
'Group ID': 'Group ID',
@@ -327,8 +320,6 @@
'Invalid username': 'Invalid username',
'Invitation to join %(site)s': 'Invitation to join %(site)s',
'Key': 'Key',
-'Key bindings': 'Пречице',
-'Key bindings for ZenCoding Plugin': 'Пречице за ZenCoding Plugin',
'Key verified': 'Key verified',
'Keyboard shortcuts': 'Пречице на тастатури',
'kill process': 'kill process',
@@ -346,7 +337,6 @@
'lists by exception': 'прикажи грешке',
'lists by ticket': 'прикажи тикете',
'Loading...': 'Преузимам...',
-'loading...': 'преузимам...',
'Local Apps': 'Локалне апликације',
'locals': 'locals',
'Locals##debug': 'Locals##debug',
@@ -367,10 +357,8 @@
'Manage Admin Users/Students': 'Manage Admin Users/Students',
'Manage Cache': 'Manage Cache',
'Manage Students': 'Manage Students',
-'Match Pair': 'Match Pair',
'Memberships': 'Memberships',
'merge': 'споји',
-'Merge Lines': 'Споји линије',
'Models': 'Модели',
'models': 'Модели',
'Modified On': 'Modified On',
@@ -390,7 +378,6 @@
'New simple application': 'Нова једноставна апликација',
'next': 'следећи',
'next %s rows': 'next %s rows',
-'Next Edit Point': 'Next Edit Point',
'NO': 'НЕ',
'no changes': 'нема промјена',
'No databases in this application': 'Нема базе података у апликацији',
@@ -398,7 +385,6 @@
'no match': 'нема подударања',
'no package selected': 'пакет није одабран',
'no permission to uninstall "%s"': 'немате овлаштење да деинсталирате "%s"',
-'No ticket_storage.txt found under /private folder': 'No ticket_storage.txt found under /private folder',
'Node:': 'Node:',
'Not Authorized': 'Немате овлашћење',
'Not supported': 'Није подржано',
@@ -406,7 +392,6 @@
'Object or table name': 'Object or table name',
'Old password': 'Old password',
"On production, you'll have to configure your webserver to use one process and multiple threads to use this debugger.": "On production, you'll have to configure your webserver to use one process and multiple threads to use this debugger.",
-'online designer': 'онлајн дизајнер',
'Open new app in new window': 'Отвори нову апликацију у новом прозору',
'OpenShift Deployment Interface': 'OpenShift инсталационо окружење',
'OpenShift Output': 'OpenShift Output',
@@ -448,7 +433,6 @@
'Preferences saved correctly': 'Preferences saved correctly',
'Preferences saved on session only': 'Preferences saved on session only',
'previous %s rows': 'previous %s rows',
-'Previous Edit Point': 'Previous Edit Point',
'Private files': 'Приватне датотеке',
'private files': 'приватне датотеке',
'Profile updated': 'Profile updated',
@@ -511,7 +495,6 @@
'Rows in Table': 'Записи у табели',
'Rows selected': 'Rows selected',
'rules are not defined': 'правила нису дефинисана',
-'rules:': 'правила:',
'Run tests': 'Покрени тестове',
'Run tests in this file': 'Покрени тестове у датотеци',
"Run tests in this file (to run all files, you may also use the button labelled 'test')": "Run tests in this file (to run all files, you may also use the button labelled 'test')",
@@ -546,15 +529,15 @@
'Start searching': 'Покрени претрагу',
'Start wizard': 'Покрени чаробњака',
'state': 'state',
-'Static': 'Static',
'static': 'static',
+'Static': 'Static',
'Static files': 'Static files',
'Statistics': 'Statistics',
'Step': 'Корак',
'step': 'kорак',
'stop': 'stop',
-'submit': 'прихвати',
'Submit': 'Прихвати',
+'submit': 'прихвати',
'successful': 'успјешан',
'switch to : db': 'пређи на : db',
'switch to : filesystem': 'пређи на : filesystem',
@@ -661,7 +644,6 @@
'variables': 'variables',
'Verify Password': 'Verify Password',
'Version': 'Верзија',
-'Version %s.%s.%s (%s) %s': 'Верзија %s.%s.%s (%s) %s',
'Versioning': 'Креирање верзија',
'Views': 'Прикази',
'views': 'прикази',
@@ -675,12 +657,10 @@
'web2py downgrade': 'web2py downgrade',
'web2py is up to date': 'web2py је ажуран',
'web2py online debugger': 'web2py online debugger',
-'web2py Recent Tweets': 'web2py Recent Tweets',
'web2py upgrade': 'web2py надоградња',
'web2py upgraded; please restart it': 'web2py је ажуриран; молим да рестартујете',
'Welcome %(username)s! Click on the link %(link)s to verify your email': 'Welcome %(username)s! Click on the link %(link)s to verify your email',
'Working...': 'Извршавам...',
-'Wrap with Abbreviation': 'Wrap with Abbreviation',
'WSGI reference name': 'WSGI reference name',
'YES': 'ДА',
'Yes': 'Да',
diff --git a/applications/admin/languages/sr-lt.py b/applications/admin/languages/sr-lt.py
old mode 100755
new mode 100644
index 4acf2c2f..2cf77ae4
--- a/applications/admin/languages/sr-lt.py
+++ b/applications/admin/languages/sr-lt.py
@@ -11,7 +11,6 @@
'%s students registered': '%s students registered',
'%Y-%m-%d': '%d-%m-%Y',
'%Y-%m-%d %H:%M:%S': '%d-%m-%Y %H:%M:%S',
-'(requires internet access)': '(zahtijeva pristup internetu)',
'(requires internet access, experimental)': '(zahtijeva pristup internetu, eksperimentalno)',
'(something like "it-it")': '(na primjer "it-it")',
'(version %s)': '(version %s)',
@@ -100,8 +99,8 @@
'Cannot compile: there are errors in your app:': 'Ne mogu kompajlirati: greška u aplikaciji:',
'cannot create file': 'ne mogu kreirati datoteku',
'cannot upload file "%(filename)s"': 'ne mogu otpremiti datoteku "%(filename)s"',
-'Change admin password': 'Promijeni lozinku administratora',
'Change Admin Password': 'Promijeni lozinku administratora',
+'Change admin password': 'Promijeni lozinku administratora',
'change editor settings': 'change editor settings',
'Change password': 'Change password',
'Changelog': 'Changelog',
@@ -137,7 +136,6 @@
'Count': 'Redni broj',
'Create': 'Kreiraj',
'create file with filename:': 'Kreiraj datoteku pod nazivom:',
-'Create rules': 'Kreiraj pravila',
'Create/Upload': 'Kreiraj/Preuzmi',
'created by': 'izradio',
'Created by:': 'Created by:',
@@ -152,15 +150,15 @@
'data uploaded': 'data uploaded',
'Database': 'Baza podataka',
'Database %s select': 'Database %s select',
-'database administration': 'administracija baze podataka',
'Database administration': 'Administracija baze podataka',
+'database administration': 'administracija baze podataka',
'Database Administration (appadmin)': 'Administracija baze podataka (appadmin)',
'Date and Time': 'Datum i vrijeme',
'db': 'db',
'Debug': 'Otkloni grešku',
'defines tables': 'definiše tabele',
-'delete': 'Izbriši',
'Delete': 'Izbriši',
+'delete': 'Izbriši',
'delete all checked': 'izbriši sve označeno',
'delete plugin': 'izbriši pomoćni modul',
'Delete this file (you will be asked to confirm deletion)': 'Izbriši ovu datoteku (bićete upitani za potvrdu brisanja)',
@@ -191,8 +189,8 @@
'Disk Cleared': 'Disk Cleared',
'Display line numbers': 'Display line numbers',
'DO NOT use the "Pack compiled" feature.': 'DO NOT use the "Pack compiled" feature.',
-'Docs': 'Docs',
'docs': 'dokumentacija',
+'Docs': 'Docs',
'done!': 'done!',
'Downgrade': 'Downgrade',
'Download .w2p': 'Preuzmi kao .w2p',
@@ -205,12 +203,10 @@
'Edit': 'Uredi',
'edit all': 'uredi sve',
'Edit application': 'Uredi aplikaciju',
-'edit controller': 'uredi controller',
'edit controller:': 'edit controller:',
'Edit current record': 'Edit current record',
'edit views:': 'uredi prikaz:',
'Editing %s': 'Uređivanje %s',
-'Editing file "%s"': 'Uređivanje datoteke "%s"',
'Editing Language file': 'Uređivanje jezičke datoteke',
'Editing Plural Forms File': 'Editing Plural Forms File',
'Editor': 'Editor',
@@ -230,7 +226,6 @@
'Exception %s': 'Exception %s',
'Exception instance attributes': 'Exception instance attributes',
'Exit Fullscreen': 'Exit Fullscreen',
-'Expand Abbreviation': 'Expand Abbreviation',
'Expand Abbreviation (html files only)': 'Expand Abbreviation (html files only)',
'export as csv file': 'izvezi kao csv datoteku',
'Exports:': 'Izvozi:',
@@ -264,11 +259,9 @@
'GAE Output': 'GAE Output',
'GAE Password': 'GAE Password',
'Generate': 'Generate',
-'Get from URL:': 'Preuzmi sa stranice:',
'Git Pull': 'Git Pull',
'Git Push': 'Git Push',
'Globals##debug': 'Globals##debug',
-'Go to Matching Pair': 'Go to Matching Pair',
'go!': 'kreni!',
'Google App Engine Deployment Interface': 'Google App Engine instalaciono okruženje',
'Google Application Id': 'Google Application Id',
@@ -327,15 +320,13 @@
'Invalid username': 'Invalid username',
'Invitation to join %(site)s': 'Invitation to join %(site)s',
'Key': 'Key',
-'Key bindings': 'Prečice',
-'Key bindings for ZenCoding Plugin': 'Prečice za ZenCoding Plugin',
'Key verified': 'Key verified',
'Keyboard shortcuts': 'Prečice na tastaturi',
'kill process': 'kill process',
'language file "%(filename)s" created/updated': 'jezička datoteka "%(filename)s" je kreirana/ažurirana',
'Language files (static strings) updated': 'Jezičke datoteke su ažurirane',
-'Languages': 'Jezici',
'languages': 'jezici',
+'Languages': 'Jezici',
'Last name': 'Last name',
'Last Revision': 'Last Revision',
'Last saved on:': 'Posljednja izmjena:',
@@ -346,7 +337,6 @@
'lists by exception': 'prikaži greške',
'lists by ticket': 'prikaži tikete',
'Loading...': 'Preuzimam...',
-'loading...': 'preuzimam...',
'Local Apps': 'Lokalne aplikacije',
'locals': 'locals',
'Locals##debug': 'Locals##debug',
@@ -367,21 +357,19 @@
'Manage Admin Users/Students': 'Manage Admin Users/Students',
'Manage Cache': 'Manage Cache',
'Manage Students': 'Manage Students',
-'Match Pair': 'Match Pair',
'Memberships': 'Memberships',
'merge': 'spoji',
-'Merge Lines': 'Spoji linije',
'Models': 'Modeli',
'models': 'modeli',
'Modified On': 'Modified On',
-'modules': 'moduli',
'Modules': 'Moduli',
+'modules': 'moduli',
'Multi User Mode': 'Višekorisnički režim rada',
'Name': 'Name',
'new application "%s" created': 'nova aplikacija "%s" je kreirana',
'new application "%s" imported': 'nova aplikacija "%s" je uvežena',
-'New application wizard': 'Čarobnjak za nove aplikacije',
'New Application Wizard': 'Čarobnjak za nove aplikacije',
+'New application wizard': 'Čarobnjak za nove aplikacije',
'New password': 'New password',
'new plugin installed': 'novi pomoćni modul je instaliran',
'New plugin installed: %s': 'Instaliran novi pomoćni modul: %s',
@@ -390,7 +378,6 @@
'New simple application': 'Nova jednostavna aplikacija',
'next': 'sledeći',
'next %s rows': 'next %s rows',
-'Next Edit Point': 'Next Edit Point',
'NO': 'NE',
'no changes': 'nema promjena',
'No databases in this application': 'Nema baze podataka u aplikaciji',
@@ -398,7 +385,6 @@
'no match': 'nema podudaranja',
'no package selected': 'paket nije odabran',
'no permission to uninstall "%s"': 'nemate ovlaštenje da deinstalirate "%s"',
-'No ticket_storage.txt found under /private folder': 'No ticket_storage.txt found under /private folder',
'Node:': 'Node:',
'Not Authorized': 'Nemate ovlašćenje',
'Not supported': 'Nije podržano',
@@ -406,7 +392,6 @@
'Object or table name': 'Object or table name',
'Old password': 'Old password',
"On production, you'll have to configure your webserver to use one process and multiple threads to use this debugger.": "On production, you'll have to configure your webserver to use one process and multiple threads to use this debugger.",
-'online designer': 'onlajn dizajner',
'Open new app in new window': 'Otvori novu aplikaciju u novom prozoru',
'OpenShift Deployment Interface': 'OpenShift instalaciono okruženje',
'OpenShift Output': 'OpenShift Output',
@@ -440,17 +425,16 @@
'Plugin "%s" in application': 'Pomoćni modul "%s" u aplikaciji',
'plugin not specified': 'plugin not specified',
'Plugin page': 'Stranica pomoćnih modula',
-'Plugins': 'Pomoćni moduli',
'plugins': 'pomoćni moduli',
+'Plugins': 'Pomoćni moduli',
'Plural Form #%s': 'Plural Form #%s',
'Plural-Forms:': 'Plural-Forms:',
'Powered by': 'Omogućio',
'Preferences saved correctly': 'Preferences saved correctly',
'Preferences saved on session only': 'Preferences saved on session only',
'previous %s rows': 'previous %s rows',
-'Previous Edit Point': 'Previous Edit Point',
-'private files': 'privatne datoteke',
'Private files': 'Privatne datoteke',
+'private files': 'privatne datoteke',
'Profile updated': 'Profile updated',
'Project Progress': 'Napredak projekta',
'Pull': 'Pull',
@@ -511,7 +495,6 @@
'Rows in Table': 'Zapisi u tabeli',
'Rows selected': 'Rows selected',
'rules are not defined': 'pravila nisu definisana',
-'rules:': 'pravila:',
'Run tests': 'Pokreni testove',
'Run tests in this file': 'Pokreni testove u datoteci',
"Run tests in this file (to run all files, you may also use the button labelled 'test')": "Run tests in this file (to run all files, you may also use the button labelled 'test')",
@@ -661,10 +644,9 @@
'variables': 'promenljive',
'Verify Password': 'Verify Password',
'Version': 'Verzija',
-'Version %s.%s.%s (%s) %s': 'Verzija %s.%s.%s (%s) %s',
'Versioning': 'Kreiranje verzija',
-'views': 'prikazi',
'Views': 'Prikazi',
+'views': 'prikazi',
'Warning!': 'Upozorenje!',
'WARNING:': 'UPOZORENJE:',
'WARNING: The following views could not be compiled:': 'WARNING: Sledeći prikazi ne mogu biti kompajlirani:',
@@ -675,12 +657,10 @@
'web2py downgrade': 'web2py downgrade',
'web2py is up to date': 'web2py je ažuran',
'web2py online debugger': 'web2py online debugger',
-'web2py Recent Tweets': 'web2py Recent Tweets',
'web2py upgrade': 'web2py nadogradnja',
'web2py upgraded; please restart it': 'web2py je ažuriran; molim da restartujete',
'Welcome %(username)s! Click on the link %(link)s to verify your email': 'Welcome %(username)s! Click on the link %(link)s to verify your email',
'Working...': 'Izvršavam...',
-'Wrap with Abbreviation': 'Wrap with Abbreviation',
'WSGI reference name': 'WSGI referentni naziv',
'YES': 'DA',
'Yes': 'Da',
diff --git a/applications/admin/languages/tr.py b/applications/admin/languages/tr.py
old mode 100755
new mode 100644
index 128bb3d5..74ccd6f6
--- a/applications/admin/languages/tr.py
+++ b/applications/admin/languages/tr.py
@@ -11,11 +11,9 @@
'%s students registered': '%s students registered',
'%Y-%m-%d': '%d-%m-%Y',
'%Y-%m-%d %H:%M:%S': '%d-%m-%Y %H:%M:%S',
-'(requires internet access)': '(Internet erişimi gerekir)',
'(requires internet access, experimental)': '(internet erişimi gerekir, deneysel)',
'(something like "it-it")': '("it-it" şeklinde birşeyler) ',
'(version %s)': '(version %s)',
-'1: Setting Parameters': '1: Parametrelerin Yapılandırılması',
'?': '?',
'@markmin\x01(**%.0d MB**)': '(**%.0d MB**)',
'@markmin\x01(file **gluon/contrib/plural_rules/%s.py** is not found)': '(file **gluon/contrib/plural_rules/%s.py** is not found)',
@@ -34,14 +32,11 @@
'@markmin\x01Searching: **%s** %%{file}': '@markmin\x01Aranıyor: **%s** %%{file}',
'@markmin\x01You need to set up and reach a [[breakpoint %s]] to use the debugger!': 'You need to set up and reach a [[breakpoint %s]] to use the debugger!',
'A new password was emailed to you': 'A new password was emailed to you',
-'A new version of web2py is available: %s': "web2py'nin yeni sürümü mevcut: %s ",
-'A new version of web2py is available: Version 1.68.2 (2009-10-21 09:59:29)\n': "web2py'nin yeni sürümü mevcut: Sürüm 1.68.2 (2009-10-21 09:59:29)\r\n",
'Abort': 'Abort',
'About': 'Hakkında',
'About application': 'Uygulama hakkında',
'Accept Terms': 'Accept Terms',
'Add breakpoint': 'Kesme noktası ekle',
-'additional code for your application': 'uygulamanız için fazladan kod',
'Additional code for your application': 'Uygulamanız için fazladan kod',
'Admin design page': 'Yönetici tasarım sayfası',
'admin disabled because no admin password': 'yönetici parolası olmadığından admin etkinsiz',
@@ -53,14 +48,12 @@
'Admin versioning page': 'Yönetici sürümleme sayfası',
'administrative interface': 'yönetsel arayüz',
'Administrator Password:': 'Yönetici Parolası:',
-'and rename it (required):': 've yeniden adlandır (gerekli):',
'and rename it:': 'yeniden adlandır:',
'App does not exist or you are not authorized': 'App does not exist or you are not authorized',
'appadmin': 'appadmin',
'appadmin is disabled because insecure channel': 'güvenzis kanal olduğundan admin etkinsizleştirildi',
'Application': 'Uygulama',
'application "%s" uninstalled': '"%s" uygulaması kaldırıldı',
-'application %(appname)s installed with md5sum: %(digest)s': '%(appname)s uygulaması md5sum %(digest)s ile kuruldu',
'Application cannot be generated in demo mode': 'Application cannot be generated in demo mode',
'application compiled': 'uygulama derlendi',
'Application exists already': 'Application exists already',
@@ -74,7 +67,6 @@
'Are you sure you want to delete plugin "%s"?': '"%s" eklentisini kaldırmak istediğinizden emin misiniz?',
'Are you sure you want to delete this object?': 'Bu nesneyi silmek istediğinizden emin misiniz?',
'Are you sure you want to uninstall application "%s"?': '«%s» uygulamasını kaldırmak istediğinizden emin misiniz?',
-'Are you sure you want to upgrade web2py now?': "web2py'yi güncellemek istediğinizden emin misiniz?",
'Are you sure?': 'Are you sure?',
'arguments': 'argümanlar',
'at char %s': 'at char %s',
@@ -85,7 +77,6 @@
'ATTENTION: you cannot edit the running application!': 'UYARI: çalışan uygulamayı düzenleyemezsiniz!',
'Authentication code': 'Authentication code',
'Autocomplete Python Code': 'Python Kodlarını Otomatik Tamamla',
-'Available databases and tables': 'Kullanılabilir veritabanları ve tablolar',
'Available Databases and Tables': 'Available Databases and Tables',
'back': 'geri',
'Back to the plugins list': 'Back to the plugins list',
@@ -93,8 +84,8 @@
'Basics': 'Temeller',
'Begin': 'Başla',
'breakpoint': 'kesme noktası',
-'breakpoints': 'kesme noktaları',
'Breakpoints': 'Kesme Noktaları',
+'breakpoints': 'kesme noktaları',
'Bulk Register': 'Bulk Register',
'Bulk Student Registration': 'Bulk Student Registration',
'Cache': 'Cache',
@@ -105,7 +96,6 @@
'can be a git repo': 'git deposu olabilir',
'Cancel': 'Vazgeç',
'Cannot be empty': 'Boş olamaz',
-'Cannot compile: there are errors in your app. Debug it, correct errors and try again.': 'Derlenemiyor: uygulamanızda hata(lar) var. Hataları düzeltin ve tekrar deneyin.',
'Cannot compile: there are errors in your app:': 'Derlenemiyor: uygulamanızda hata(lar) var:',
'cannot create file': 'dosya oluşturulamıyor',
'cannot upload file "%(filename)s"': '"%(filename)s" dosyalarını yükleyemiyor',
@@ -126,7 +116,6 @@
'Click on the link %(link)s to reset your password': 'Click on the link %(link)s to reset your password',
'Click row to expand traceback': 'Takibi genişletmek için satır üzerine tıkla',
'Click row to view a ticket': 'Click row to view a ticket',
-'click to check for upgrades': 'güncellemeleri denetlemek için tıklayın',
'Client IP': 'Client IP',
'code': 'kod',
'Code listing': 'Code listing',
@@ -147,8 +136,6 @@
'Count': 'Sayı',
'Create': 'Oluştur',
'create file with filename:': 'dosya adı ile dosya oluştur:',
-'create new application:': 'yeni uygulama oluştur:',
-'Create new simple application': 'Yeni basit uygulama oluştur',
'Create/Upload': 'Oluştur/Yükle',
'created by': 'yazan:',
'Created by:': 'Created by:',
@@ -162,9 +149,7 @@
'currently saved or': 'şimdiki kaydedilen veya',
'data uploaded': 'veri yüklendi',
'Database': 'Database',
-'database': 'veritabı',
'Database %s select': 'Database %s select',
-'database %s select': '%s veritabanı seçildi',
'Database administration': 'Veritabanı yönetimi',
'database administration': 'veritabı yönetimi',
'Database Administration (appadmin)': 'Database Administration (appadmin)',
@@ -215,17 +200,13 @@
'download plugins': 'eklentileri indir',
'Download plugins from repository': 'Download plugins from repository',
'E-mail': 'E-mail',
-'EDIT': 'DÜZENLE',
'Edit': 'Düzenle',
'edit all': 'tümünü düzenle',
'Edit application': 'Uygulamayı düzenle',
-'edit controller': 'denetçiyi düzenle',
'edit controller:': 'denetçiyi düzenle:',
'Edit current record': 'Şimdiki kaydı düzenle',
'edit views:': 'görünümleri düzenle:',
'Editing %s': '%s Düzenleniyor',
-'Editing file': 'Dosya düzenleniyor',
-'Editing file "%s"': '"%s" dosyası düzenleniyor ',
'Editing Language file': 'Dil dosyası düzenleniyor',
'Editing Plural Forms File': 'Editing Plural Forms File',
'Editor': 'Editor',
@@ -236,10 +217,6 @@
'Enable': 'Etkinleştir',
'Enable Close-Tag': 'Enable Close-Tag',
'Enable Code Folding': 'Enable Code Folding',
-'enter a valid email address': 'geçerli e-posta adresi girin',
-'enter a value': 'bir değer girin',
-'enter only letters, numbers, and underscore': 'sadece harf, sayı ve alt çizgi giriniz',
-'Enterprise Web Framework': 'Enterprise Web Çatısı',
'Error': 'Hata',
'Error logs for "%(app)s"': '"%(app)s" uygulaması için hata kayıtları',
'Error snapshot': 'Hata resmi',
@@ -249,7 +226,6 @@
'Exception %s': 'Exception %s',
'Exception instance attributes': 'Hata durumu özellikleri',
'Exit Fullscreen': 'Tam Ekrandan Çık',
-'Expand Abbreviation': 'Kısıtlamayı Aç',
'Expand Abbreviation (html files only)': 'Expand Abbreviation (html files only)',
'export as csv file': 'CSV olarak dışa ver',
'Exports:': 'Exports:',
@@ -257,7 +233,6 @@
'exposes:': 'sergile:',
'extends': 'genişlet',
'failed to compile file because:': 'failed to compile file because:',
-'failed to reload module': 'modül yüklenemedi',
'failed to reload module because:': 'modü yüklenemedi çünkü:',
'File': 'Dosya',
'file "%(filename)s" created': '"%(filename)s" dosyaları oluşturuldu',
@@ -291,8 +266,8 @@
'Google App Engine Deployment Interface': 'Google App Motoru Yayınlama Arayüzü',
'Google Application Id': 'Google Uygulama Id',
'Goto': 'Git',
-'graph model': 'grafik modeli',
'Graph Model': 'Graph Model',
+'graph model': 'grafik modeli',
'Group %(group_id)s created': 'Group %(group_id)s created',
'Group %(group_id)s deleted': 'Group %(group_id)s deleted',
'Group ID': 'Group ID',
@@ -304,7 +279,6 @@
'Hits': 'Vuruşlar',
'Home': 'Anasayfa',
'honored only if the expression evaluates to true': 'sadece deyim doğru sonucunu verirse',
-'htmledit': 'html dğzenleyici',
'If start the downgrade, be patient, it may take a while to rollback': 'If start the downgrade, be patient, it may take a while to rollback',
'If start the upgrade, be patient, it may take a while to download': 'If start the upgrade, be patient, it may take a while to download',
'If the report above contains a ticket number it indicates a failure in executing the controller, before any attempt to execute the doctests. This is usually due to an indentation error or an error outside function code.\n\t\tA green title indicates that all tests (if defined) passed. In this case test results are not shown.': 'If the report above contains a ticket number it indicates a failure in executing the controller, before any attempt to execute the doctests. This is usually due to an indentation error or an error outside function code.\n\t\tA green title indicates that all tests (if defined) passed. In this case test results are not shown.',
@@ -316,9 +290,6 @@
'includes': 'içerir',
'Incorrect code. {0} more attempt(s) remaining.': 'Incorrect code. {0} more attempt(s) remaining.',
'Indent with tabs': 'Indent with tabs',
-'index': 'indeks',
-'insert new': 'yeni ekle',
-'insert new %s': '%s yeni ekle',
'inspect attributes': 'özellikleri denetleyin',
'Install': 'Kurucu',
'Installation of %(plugin)s for %(app)s': 'Installation of %(plugin)s for %(app)s',
@@ -333,7 +304,6 @@
'Invalid application name': 'Invalid application name',
'invalid circular reference': 'invalid circular reference',
'Invalid email': 'Invalid email',
-'invalid expression': 'geçersiz ifade',
'Invalid git repository specified.': 'Invalid git repository specified.',
'Invalid key': 'Invalid key',
'Invalid login': 'Invalid login',
@@ -350,8 +320,6 @@
'Invalid username': 'Invalid username',
'Invitation to join %(site)s': 'Invitation to join %(site)s',
'Key': 'Key',
-'Key bindings': 'Anahtarlar',
-'Key bindings for ZenCoding Plugin': 'ZenCoding Eklentisi için anahtarlar',
'Key verified': 'Key verified',
'Keyboard shortcuts': 'Keyboard shortcuts',
'kill process': 'kill process',
@@ -369,7 +337,6 @@
'lists by exception': 'istisnaya göre sırala',
'lists by ticket': 'bilete göre sırala',
'Loading...': 'Loading...',
-'loading...': 'yükleniyor ...',
'Local Apps': 'Local Apps',
'locals': 'yereller',
'Locals##debug': 'Yereller',
@@ -377,7 +344,6 @@
'Logged in': 'Logged in',
'Logged out': 'Logged out',
'Login': 'Giriş',
-'login': 'giriş',
'Login disabled by administrator': 'Login disabled by administrator',
'Login successful': 'Login successful',
'Login to the Administrative Interface': 'Yönetsel Arayüze Giriş\t',
@@ -412,7 +378,6 @@
'New simple application': 'Yeni basit uygulama',
'next': 'next',
'next %s rows': 'next %s rows',
-'next 100 rows': 'sonraki 100 satır',
'NO': 'HAYIR',
'no changes': 'no changes',
'No databases in this application': 'Bu uygulamada veritabanı yok',
@@ -420,7 +385,6 @@
'no match': 'eşlenen yok',
'no package selected': 'hiç paket seçilmemiş',
'no permission to uninstall "%s"': 'no permission to uninstall "%s"',
-'No ticket_storage.txt found under /private folder': '/private dizininde ticket_storage.txt dosyası bulunamadı',
'Node:': 'Node:',
'Not Authorized': 'Not Authorized',
'Not supported': 'Not supported',
@@ -428,15 +392,12 @@
'Object or table name': 'Object or table name',
'Old password': 'Old password',
"On production, you'll have to configure your webserver to use one process and multiple threads to use this debugger.": "On production, you'll have to configure your webserver to use one process and multiple threads to use this debugger.",
-'online designer': 'çevirimiçi tasarlayıcı',
'Open new app in new window': 'Yeni pencerede yeni uygualama aç',
'OpenShift Deployment Interface': 'OpenShift Yayınlama Arayüzü',
'OpenShift Output': 'OpenShift Output',
'or alternatively': 'veya seçenek olarak',
'Or Get from URL:': 'Veya şu URL den alın:',
'or import from csv file': 'veya CSV dsoyasından içerin',
-'or provide app url:': "veya uygulama URL'si verin:",
-'or provide application url:': "veya uygulama URL'si verin:",
'Origin': 'Origin',
'Original/Translation': 'Orjinal / Çeviri',
'Overview': 'Overview',
@@ -445,7 +406,6 @@
'Pack compiled': 'Derlenenleri paketle',
'Pack custom': 'Tercihli paketle',
'pack plugin': 'eklentiyi paketle',
-'PAM authenticated user, cannot change password here': 'PAM onaylı kullanıcı, parola buradan değiştirilemiyor',
'Password': 'Password',
'password changed': 'parola değiştirilidi',
'Password changed': 'Password changed',
@@ -473,7 +433,6 @@
'Preferences saved correctly': 'Preferences saved correctly',
'Preferences saved on session only': 'Preferences saved on session only',
'previous %s rows': 'previous %s rows',
-'previous 100 rows': 'önceki 100 satır',
'Private files': 'Özel dosyalar',
'private files': 'özel dosyalar',
'Profile updated': 'Profile updated',
@@ -492,7 +451,6 @@
'Ram Cleared': 'Ram Cleared',
'Rapid Search': 'Hızlı Arama',
'Record': 'Record',
-'record': 'kayıt',
'Record %(id)s created': 'Record %(id)s created',
'Record %(id)s deleted': 'Record %(id)s deleted',
'Record %(id)s read': 'Record %(id)s read',
@@ -500,7 +458,6 @@
'Record Created': 'Record Created',
'Record Deleted': 'Record Deleted',
'record does not exist': 'kayıt bulunamıyor',
-'record id': 'kayıt id',
'Record id': 'Record id',
'Record ID': 'Record ID',
'Record Updated': 'Record Updated',
@@ -536,7 +493,6 @@
'Role': 'Role',
'Roles': 'Roles',
'Rows in Table': 'Rows in Table',
-'Rows in table': 'Tablosundaki satırlar',
'Rows selected': 'Seçilen satırlar',
'rules are not defined': 'rules are not defined',
'Run tests': 'Run tests',
@@ -544,7 +500,6 @@
"Run tests in this file (to run all files, you may also use the button labelled 'test')": "Bu dosyadaki testleri çalıştırır (tüm dosyaları çalıştırmak için, 'test' etiketli düğmeyi kullanabilirsiniz)",
'Running on %s': '%s üzerinde çalışıyor',
'Save': 'Kaydet',
-'save': 'kaydet',
'Save file:': 'Dosyayı kaydet:',
'Save file: %s': 'Dosyayı farklı kaydet: %s',
'Save model as...': 'Save model as...',
@@ -553,7 +508,6 @@
'Screenshot %s': 'Screenshot %s',
'Search': 'Search',
'Select Files to Package': 'Paketlenecek Dosyaları Seç',
-'selected': 'seçildi',
'session': 'oturum',
'session expired': 'oturum zamanaşımına uğradı',
'Session saved correctly': 'Session saved correctly',
@@ -575,21 +529,19 @@
'Start searching': 'Aramaya başla',
'Start wizard': 'Başlatma sihirbazı',
'state': 'durum',
-'Static': 'Statik',
'static': 'statik',
+'Static': 'Statik',
'Static files': 'Statik dosyalar',
'Statistics': 'Statistics',
'Step': 'Basamak',
'step': 'step',
'stop': 'stop',
-'submit': 'gönder',
'Submit': 'Gönder',
+'submit': 'gönder',
'successful': 'başarılı',
-'Sure you want to delete this object?': 'Bu nesneyi silmek istediğinizden emin misiniz? ',
'switch to : db': 'geç : db',
'switch to : filesystem': 'switch to : filesystem',
'Tab width (# characters)': 'Tab width (# characters)',
-'table': 'tablo',
'Table': 'Table',
'Temporary': 'Geçici',
'test': 'test',
@@ -597,12 +549,9 @@
'The "query" is a condition like "db.table1.field1==\'value\'". Something like "db.table1.field1==db.table2.field2" results in a SQL JOIN.': '"sorgulama" "db.table1.field1==\'değer\'" şeklinde bir durumu ifade eder. SQL birleştirmede (JOIN) "db.table1.field1==db.table2.field2" şeklindedir.',
'The app exists, was created by wizard, continue to overwrite!': 'The app exists, was created by wizard, continue to overwrite!',
'The app exists, was NOT created by wizard, continue to overwrite!': 'The app exists, was NOT created by wizard, continue to overwrite!',
-'the application logic, each URL path is mapped in one exposed function in the controller': 'uygulama mantığı: her URL denetleyicideki bir işleve eşlenir',
'The application logic, each URL path is mapped in one exposed function in the controller': 'Uygulama mantığı: her URL denetleyicideki bir işleve eşlenir',
-'the data representation, define database tables and sets': 'veri gösterimi, veritabanı tablolarını ve setlerini tanımla',
'The data representation, define database tables and sets': 'Veri gösterimi, veritabanı tablolarını ve setlerini tanımla',
'The presentations layer, views are also known as templates': 'Sunum katmanı, görünümler şablon olarakda biliniyor.',
-'the presentations layer, views are also known as templates': 'sunum katmanı, görünümler şablon olarakda biliniyor.',
'Theme': 'Theme',
'There are no controllers': 'Denetçiler yok',
'There are no models': 'Modeller yok',
@@ -615,13 +564,11 @@
'There are no views': 'Görünümler yok',
'These files are not served, they are only available from within your app': 'Bu dosyalar servis yapılmıyor, bunlar sadece uygulamanız içerisinden erişilebilir.',
'These files are served without processing, your images go here': 'Bu dosyalarda işlem yapılmadan kaydedildi, resimler buraya gidiyor:',
-'these files are served without processing, your images go here': 'bu dosyalarda işlem yapılmadan kaydedildi, resimler buraya gidiyor:',
'This code was emailed to you and is required for login.': 'This code was emailed to you and is required for login.',
"This debugger may not work properly if you don't have a threaded webserver or you're using multiple daemon processes.": "This debugger may not work properly if you don't have a threaded webserver or you're using multiple daemon processes.",
'This email already has an account': 'This email already has an account',
'This is an experimental feature and it needs more testing. If you decide to downgrade you do it at your own risk': 'This is an experimental feature and it needs more testing. If you decide to downgrade you do it at your own risk',
'This is an experimental feature and it needs more testing. If you decide to upgrade you do it at your own risk': 'This is an experimental feature and it needs more testing. If you decide to upgrade you do it at your own risk',
-'This is the %(filename)s template': 'Bu şablonlar %(filename)s: ',
"This page can commit your changes to an openshift app repo and push them to your cloud instance. This assumes that you've already created the application instance using the web2py skeleton and have that repo somewhere on a filesystem that this web2py instance can access. This functionality requires GitPython installed and on the python path of the runtime that web2py is operating in.": "Bu sayfa uygulamanızı OpenShif uygulama reposuna koyar. Uygulamanızın web2py iskeleti ile oluşturulduğunuz ve web2py dosya sisteminizdeki ropoya erişilebileceği varsayılmıştır. Bu işlev web2py'nin çalıştığı ortamda GitPython'e ihtiyaç duyar.",
'This page can upload your application to the Google App Engine computing cloud. Mind that you must first create indexes locally and this is done by installing the Google appserver and running the app locally with it once, or there will be errors when selecting records. Attention: deployment may take long time, depending on the network speed. Attention: it will overwrite your app.yaml. DO NOT SUBMIT TWICE.': 'Bu sayfa uygulamanızı Google App Motoru bilişim bulutuna yükleyecektir. İndeksleri yerel olarak oluştırmanız gerektiğini aklınızda tutun, Google uygulama sunucusunu yerel olarak kurup çalıştırın, aksi halde bazı kayıtlarda hatalar olacaktır. Uyarı: yayınlama ağ hızınıza bağlı olarak uzun zaman alabilir. Uyarı: bu sizin app.yaml dosyasını yeniden yazar. LÜTFEN BİRDEN FAZLA GÖNDERMEYİN.',
'this page to see if a breakpoint was hit and debug interaction is required.': 'bu sayfayı, kesme noktasına geldiğini görmek için ve hata ayıklama etkileşmesi gerekiyor..',
@@ -632,7 +579,6 @@
'Ticket Missing': 'Ticket Missing',
'Time in Cache (h:m:s)': 'Time in Cache (h:m:s)',
'Timestamp': 'Timestamp',
-'TM': 'TM',
'to previous version.': 'önceki sürüme.',
'To create a plugin, name a file/folder plugin_[name]': 'Eklenti oluşturmak için dosyayı dosya/klasör plugin_[isim] şeklinde isimlendir. ',
'To emulate a breakpoint programatically, write:': 'Program ile kesme noktasını öykünmek için, yazın:',
@@ -641,9 +587,7 @@
'Toggle comment': 'Toggle comment',
'Toggle Fullscreen': 'Tam Ekrana Geç',
'Traceback': 'Nedenin bul',
-'translation strings for the application': 'uygulama için çeviri cümleleri',
'Translation strings for the application': 'Uygulama için çeviri cümleleri',
-'try': 'dene',
'try something like': 'gibi birşey dene',
'Try the mobile interface': 'Mobil arayüzü dene',
'try view': 'görünümü dene',
@@ -655,10 +599,7 @@
'unable to delete file "%(filename)s"': '"%(filename)s" dosylaları silinemiyor',
'unable to delete file plugin "%(plugin)s"': '"%(plugin)s" eklenti dosyasyaları silenemiyor',
'Unable to determine the line number!': 'Unable to determine the line number!',
-'Unable to download': 'İndirilemiyor',
-'Unable to download app': 'Uygulamanız indirilemiyor',
'Unable to download app because:': 'Uygulamanız indirilemiyor çünkü:',
-'Unable to download because': 'İndirilemiyor çünkü:',
'unable to download layout': 'unable to download layout',
'unable to download plugin: %s': 'unable to download plugin: %s',
'Unable to download the list of plugins': 'Unable to download the list of plugins',
@@ -674,21 +615,14 @@
'update all languages': 'tüm delleri yükle',
'Update:': 'Güncelle:',
'Upgrade': 'Upgrade',
-'upgrade now': 'şimdi güncelle',
'upgrade now to %s': 'upgrade now to %s',
-'upgrade web2py now': "web2py'yi güncelle",
'upload': 'yükle',
'Upload': 'Yükle',
-'Upload & install packed application': 'Paketlenmiş uygulamayı yükle ve kur',
'Upload a package:': 'Paket yükle:',
'Upload and install packed application': 'Paketlenmiş uygulamayı yükle ve kur',
-'upload application:': 'uygulamayı yükle:',
-'Upload existing application': 'Var olan uygulamayı yükle',
'upload file:': 'dosyayı yükle:',
'upload plugin file:': 'eklenti dosyasını yükle:',
'Use (...)&(...) for AND, (...)|(...) for OR, and ~(...) for NOT to build more complex queries.': 'Karmaşık sorgularda Ve (AND) için (...)&(...) kullanın, Veya (OR) için (...)|(...) kullanın ve DEĞİL (NOT) için ~(...) kullanın. ',
-'Use an url:': "Url'yi kullan:",
-'user': 'kullanıcı',
'User': 'User',
'User %(id)s is impersonating %(other_id)s': 'User %(id)s is impersonating %(other_id)s',
'User %(id)s Logged-in': 'User %(id)s Logged-in',
@@ -711,8 +645,6 @@
'Verify Password': 'Verify Password',
'Version': 'Sürüm',
'Versioning': 'Sürümleme',
-'versioning': 'sürümleme',
-'view': 'görüntü',
'Views': 'Görüntüler',
'views': 'görüntüler',
'Warning!': 'Warning!',
@@ -725,7 +657,6 @@
'web2py downgrade': 'web2py downgrade',
'web2py is up to date': 'web2py güncel',
'web2py online debugger': 'çevirimiçi web2py hata ayıklayıcı',
-'web2py Recent Tweets': 'web2py Son Twitler',
'web2py upgrade': 'web2py upgrade',
'web2py upgraded; please restart it': 'web2py güncellendi, lütfen yeniden başlatın',
'Welcome %(username)s! Click on the link %(link)s to verify your email': 'Welcome %(username)s! Click on the link %(link)s to verify your email',
diff --git a/applications/admin/languages/uk.py b/applications/admin/languages/uk.py
old mode 100755
new mode 100644
index ae6fdf76..3bed4697
--- a/applications/admin/languages/uk.py
+++ b/applications/admin/languages/uk.py
@@ -4,16 +4,13 @@
'!langname!': 'Українська',
'"update" is an optional expression like "field1=\'newvalue\'". You cannot update or delete the results of a JOIN': '"Оновити" це додатковий вираз, такий, як "field1=\'нове_значення\'". Ви не можете змінювати або вилучати дані об\'єднаних таблиць',
'"User Exception" debug mode. ': 'Режим ладнання "Сигнали від користувачів" ("User Exception" debug mode) ',
-'"User Exception" debug mode. An error ticket could be issued!': 'Режим ладнання "Сигнали від користувачів" ("User Exception" debug mode). Користувачі можуть залишати позначки про помилки!',
'%s': '%s',
'%s %%{row} deleted': 'Вилучено %s %%{рядок}',
'%s %%{row} updated': 'Вилучено %s %%{рядок}',
-'%s Recent Tweets': '%s %%{останній} %%{твіт}',
'%s selected': '%s selected',
'%s students registered': '%s студентів зареєстровано',
'%Y-%m-%d': '%Y/%m/%d',
'%Y-%m-%d %H:%M:%S': '%Y/%m/%d %H:%M:%S',
-'(requires internet access)': '(потрібно мати доступ в інтернет)',
'(requires internet access, experimental)': '(потрібно мати доступ в інтернет, експериментально)',
'(something like "it-it")': '(щось схоже на "uk-ua")',
'(version %s)': '(version %s)',
@@ -37,7 +34,6 @@
'A new password was emailed to you': 'A new password was emailed to you',
'Abort': 'Припинити',
'About': 'Про',
-'about': 'про',
'About application': 'Про додаток',
'Accept Terms': 'Accept Terms',
'Add breakpoint': 'Додати точку зупинки',
@@ -54,12 +50,10 @@
'Administrator Password:': 'Пароль адміністратора:',
'and rename it:': 'i змінити назву на:',
'App does not exist or you are not authorized': 'App does not exist or you are not authorized',
-'App does not exist or your are not authorized': 'Додаток не існує, або ви не авторизовані',
'appadmin': 'Aдм.панель',
'appadmin is disabled because insecure channel': "адмін.панель відключено через використання ненадійного каналу зв'язку",
'Application': 'Додаток (Application)',
'application "%s" uninstalled': 'додаток "%s" вилучено',
-'application %(appname)s installed with md5sum: %(digest)s': 'додаток %(appname)s встановлено з md5sum: %(digest)s',
'Application cannot be generated in demo mode': 'В демо-режимі генерувати додатки не можна',
'application compiled': 'додаток скомпільовано',
'Application exists already': 'Додаток вже існує',
@@ -83,12 +77,10 @@
'ATTENTION: you cannot edit the running application!': 'УВАГА: Ви не можете редагувати додаток, який зараз виконуєте!',
'Authentication code': 'Authentication code',
'Autocomplete Python Code': 'Автозавершення коду на Python',
-'Available databases and tables': 'Доступні бази даних та таблиці',
'Available Databases and Tables': 'Available Databases and Tables',
'back': '<< назад',
'Back to the plugins list': 'Back to the plugins list',
'Back to wizard': 'Back to wizard',
-'bad_resource': 'поганий_ресурс',
'Basics': 'Початок',
'Begin': 'Початок',
'breakpoint': 'точку зупинки',
@@ -138,16 +130,12 @@
'Compile (skip failed views)': 'Compile (skip failed views)',
'compiled application removed': 'скомпільований додаток вилучено',
'Condition': 'Умова',
-'contact_admin': "зв'язатись_з_адміністратором",
'continue': 'продовжити',
'Controllers': 'Контролери',
'controllers': 'контролери',
'Count': 'К-сть',
'Create': 'Створити',
-'create': 'створити',
'create file with filename:': 'створити файл з назвою:',
-'create plural-form': 'створити форму множини',
-'Create rules': 'Створити правила',
'Create/Upload': 'Створити/Завантажити',
'created by': 'Автор:',
'Created by:': 'Created by:',
@@ -161,9 +149,7 @@
'currently saved or': 'останній збережений, або',
'data uploaded': 'дані завантажено',
'Database': 'Database',
-'database': 'база даних',
'Database %s select': 'Database %s select',
-'database %s select': 'Вибірка з бази даних %s',
'Database administration': 'Database administration',
'database administration': 'адміністрування бази даних',
'Database Administration (appadmin)': 'Database Administration (appadmin)',
@@ -217,12 +203,10 @@
'Edit': 'Редагувати',
'edit all': 'редагувати всі',
'Edit application': 'Налаштування додатку',
-'edit controller': 'редагувати контролер',
'edit controller:': 'редагувати контролер:',
'Edit current record': 'Редагувати поточний запис',
'edit views:': 'редагувати відображення (views):',
'Editing %s': 'Редагується %s',
-'Editing file "%s"': 'Редагується файл "%s"',
'Editing Language file': 'Редагується файл перекладу',
'Editing Plural Forms File': 'Редагується файл форм множини',
'Editor': 'Editor',
@@ -233,18 +217,15 @@
'Enable': 'Увімкнути',
'Enable Close-Tag': 'Enable Close-Tag',
'Enable Code Folding': 'Enable Code Folding',
-'enter a value': 'введіть значення',
'Error': 'Помилка',
'Error logs for "%(app)s"': 'Список зареєстрованих помилок додатку "%(app)s"',
'Error snapshot': 'Розгорнутий знімок стану (Error snapshot)',
'Error ticket': 'Позначка (ticket) про помилку',
'Errors': 'Помилки',
-'Errors in form, please check it out.': 'Помилка у формі, будь-ласка перевірте її.',
'Exception %(extype)s: %(exvalue)s': 'Виключення %(extype)s: %(exvalue)s',
'Exception %s': 'Виключення %s',
'Exception instance attributes': 'Атрибути примірника класу Exception (виключення)',
'Exit Fullscreen': 'Вийти з повноекранного режиму',
-'Expand Abbreviation': 'Розгорнути абревіатуру',
'Expand Abbreviation (html files only)': 'Expand Abbreviation (html files only)',
'export as csv file': 'експортувати як файл csv',
'Exports:': 'Exports:',
@@ -253,7 +234,6 @@
'extends': 'розширює',
'failed to compile file because:': 'не вдалось скомпілювати файл через:',
'failed to reload module because:': 'не вдалось перевантажити модуль через:',
-'faq': 'ЧаПи (faq)',
'File': 'Файл',
'file "%(filename)s" created': 'файл "%(filename)s" створено',
'file "%(filename)s" deleted': 'файл "%(filename)s" вилучено',
@@ -279,17 +259,15 @@
'GAE Output': 'Відповідь GAE',
'GAE Password': 'Пароль GAE',
'Generate': 'Генерувати',
-'Get from URL:': 'Отримати з URL:',
'Git Pull': 'Git Pull',
'Git Push': 'Git Push',
'Globals##debug': 'Глобальні змінні',
-'Go to Matching Pair': 'Перейти до відповідної пари',
'go!': 'почали!',
'Google App Engine Deployment Interface': 'Інтерфейс розгортання Google App Engine',
'Google Application Id': 'Ідентифікатор Google Application',
'Goto': 'Перейти до',
-'graph model': 'графова модель',
'Graph Model': 'Graph Model',
+'graph model': 'графова модель',
'Group %(group_id)s created': 'Group %(group_id)s created',
'Group %(group_id)s deleted': 'Group %(group_id)s deleted',
'Group ID': 'Group ID',
@@ -312,9 +290,6 @@
'includes': 'включає',
'Incorrect code. {0} more attempt(s) remaining.': 'Incorrect code. {0} more attempt(s) remaining.',
'Indent with tabs': 'Indent with tabs',
-'index': 'індекс',
-'insert new': 'вставити новий',
-'insert new %s': 'вставити новий %s',
'inspect attributes': 'інспектувати атрибути',
'Install': 'Встановлення',
'Installation of %(plugin)s for %(app)s': 'Installation of %(plugin)s for %(app)s',
@@ -327,7 +302,6 @@
'Internal State': 'Внутрішній стан',
'Invalid action': 'Помилкова дія',
'Invalid application name': 'Invalid application name',
-'invalid circual reference': 'помилкове циклічне посилання',
'invalid circular reference': 'помилкове циклічне посилання',
'Invalid email': 'Invalid email',
'Invalid git repository specified.': 'Invalid git repository specified.',
@@ -339,7 +313,6 @@
'Invalid Query': 'Помилковий запит',
'invalid request': 'хибний запит',
'Invalid request': 'Invalid request',
-'invalid request ': 'Хибний запит',
'Invalid reset password': 'Invalid reset password',
'invalid table names (auth_* tables already defined)': 'хибна назва таблиці (таблиці auth_* вже оголошено)',
'invalid ticket': 'недійсна позначка про помилку (ticket)',
@@ -347,8 +320,6 @@
'Invalid username': 'Invalid username',
'Invitation to join %(site)s': 'Invitation to join %(site)s',
'Key': 'Ключ',
-'Key bindings': 'Клавіатурні скорочення:',
-'Key bindings for ZenCoding Plugin': 'Клавіатурні скорочення для втулки ZenCoding plugin',
'Key verified': 'Key verified',
'Keyboard shortcuts': 'Keyboard shortcuts',
'kill process': 'вбити процес',
@@ -363,11 +334,9 @@
'License:': 'License:',
'Line Nr': 'Line Nr',
'Line number': '№ рядка',
-'LineNo': '№ рядка',
'lists by exception': 'список виключень (exceptions)',
'lists by ticket': 'список позначок (tickets)',
'Loading...': 'Loading...',
-'loading...': 'завантаження...',
'Local Apps': 'Local Apps',
'locals': 'локальні',
'Locals##debug': 'Локальні змінні',
@@ -375,7 +344,6 @@
'Logged in': 'Logged in',
'Logged out': 'Logged out',
'Login': 'Вхід',
-'login': 'вхід',
'Login disabled by administrator': 'Login disabled by administrator',
'Login successful': 'Login successful',
'Login to the Administrative Interface': 'Вхід в адміністративний інтерфейс',
@@ -389,21 +357,14 @@
'Manage Admin Users/Students': 'Адміністратор керування користувачами/студентами',
'Manage Cache': 'Manage Cache',
'Manage Students': 'Керувати студентами',
-'Match Pair': 'Знайти пару',
'Memberships': 'Memberships',
'merge': "з'єднати",
-'Merge Lines': "З'єднати рядки",
-'Minimum length is %s': 'Мінімальна довжина становить %s',
'Models': 'Моделі',
'models': 'моделі',
'Modified On': 'Змінено в',
'Modules': 'Модулі',
'modules': 'модулі',
'Multi User Mode': 'Multi User Mode',
-'Must include at least %s %s': 'Має вміщувати щонайменше %s %s',
-'Must include at least %s lowercase': 'Повинен включати щонайменше %s малих букв',
-'Must include at least %s of the following : %s': 'Має включати не менше %s таких символів : %s',
-'Must include at least %s uppercase': 'Повинен включати щонайменше %s великих букв',
'Name': 'Name',
'new application "%s" created': 'новий додаток "%s" створено',
'new application "%s" imported': 'new application "%s" imported',
@@ -417,8 +378,6 @@
'New simple application': 'Новий простий додаток',
'next': 'наступний',
'next %s rows': 'next %s rows',
-'next 100 rows': 'наступні 100 рядків',
-'Next Edit Point': 'Наступне місце редагування',
'NO': 'НІ',
'no changes': 'no changes',
'No databases in this application': 'Даний додаток не використовує бази даних',
@@ -426,7 +385,6 @@
'no match': 'співпадань нема',
'no package selected': 'пакет не вибрано',
'no permission to uninstall "%s"': 'нема прав на вилучення (uninstall) "%s"',
-'No ticket_storage.txt found under /private folder': 'В каталозі /private відсутній файл ticket_storage.txt',
'Node:': 'Node:',
'Not Authorized': 'Не дозволено',
'Not supported': 'Not supported',
@@ -434,7 +392,6 @@
'Object or table name': 'Object or table name',
'Old password': 'Old password',
"On production, you'll have to configure your webserver to use one process and multiple threads to use this debugger.": 'У промисловій експлуатації, ви повинні налаштувати ваш веб-сервер на використання одного процесу та багатьох потоків, якщо бажаєте скористатись цим ладначем.',
-'online designer': 'дизайнер БД',
'Open new app in new window': 'Open new app in new window',
'OpenShift Deployment Interface': 'OpenShift: Інтерфейс розгортання',
'OpenShift Output': 'Вивід OpenShift',
@@ -449,7 +406,6 @@
'Pack compiled': 'Пакувати зкомпільоване',
'Pack custom': 'Пакувати вибране',
'pack plugin': 'запакувати втулку',
-'PAM authenticated user, cannot change password here': 'Ввімкнена система ідентифікації користувачів PAM. Для зміни паролю скористайтесь командами вашої ОС ',
'Password': 'Password',
'password changed': 'пароль змінено',
'Password changed': 'Password changed',
@@ -459,14 +415,12 @@
'Past revisions': 'Past revisions',
'Path to appcfg.py': 'Шлях до appcfg.py',
'Path to local openshift repo root.': 'Шлях до локального корня репозитарія openshift.',
-'peek': 'глянути',
'Peeking at file': 'Перегляд файлу',
'Permission': 'Permission',
'Permissions': 'Permissions',
'Please': 'Будь-ласка',
'please input your password again': 'please input your password again',
'Please wait, giving pythonanywhere a moment...': 'Please wait, giving pythonanywhere a moment...',
-'plugin': 'втулка',
'plugin "%(plugin)s" deleted': 'втулку "%(plugin)s" вилучено',
'Plugin "%s" in application': 'Втулка "%s" в додатку',
'plugin not specified': 'втулку не визначено',
@@ -479,8 +433,6 @@
'Preferences saved correctly': 'Preferences saved correctly',
'Preferences saved on session only': 'Preferences saved on session only',
'previous %s rows': 'previous %s rows',
-'previous 100 rows': 'попередні 100 рядків',
-'Previous Edit Point': 'Попереднє місце редагування',
'Private files': 'Приватні файли',
'private files': 'приватні файли',
'Profile updated': 'Profile updated',
@@ -499,7 +451,6 @@
'Ram Cleared': "Кеш в пам'яті очищено",
'Rapid Search': 'Миттєвий пошук',
'Record': 'Record',
-'record': 'запис',
'Record %(id)s created': 'Record %(id)s created',
'Record %(id)s deleted': 'Record %(id)s deleted',
'Record %(id)s read': 'Record %(id)s read',
@@ -507,7 +458,6 @@
'Record Created': 'Record Created',
'Record Deleted': 'Record Deleted',
'record does not exist': 'запису не існує',
-'record id': 'Ід.запису',
'Record id': 'Record id',
'Record ID': 'Record ID',
'Record Updated': 'Record Updated',
@@ -518,7 +468,6 @@
'Registration key': 'Registration key',
'Registration needs verification': 'Registration needs verification',
'Registration successful': 'Registration successful',
-'reload': 'перевантажити',
'Reload routes': 'Перезавантажити маршрути',
'Remember me (for 30 days)': 'Remember me (for 30 days)',
'Remove compiled': 'Вилуч.компл',
@@ -531,7 +480,6 @@
'requires distutils, but not installed': 'requires distutils, but not installed',
'requires python-git, but not installed': 'Для розгортання необхідний пакет python-git, але він не встановлений',
'Reset Password key': 'Reset Password key',
-'resolve': "розв'язати",
'Resolve Conflict file': "Файл розв'язування конфлікту",
'response': 'відповідь',
'restart': 'перезапустити майстра',
@@ -545,16 +493,12 @@
'Role': 'Role',
'Roles': 'Roles',
'Rows in Table': 'Rows in Table',
-'Rows in table': 'Рядків у таблиці',
'Rows selected': 'Рядків вибрано',
'rules are not defined': 'правила не визначені',
-'rules parsed with errors': 'в правилах є помилка',
-'rules:': 'правила:',
'Run tests': 'Запустити всі тести',
'Run tests in this file': 'Запустити тести у цьому файлі',
"Run tests in this file (to run all files, you may also use the button labelled 'test')": "Запустити тести з цього файлу (для тестування всіх файлів, вам необхідно натиснути кнопку з назвою 'тестувати всі')",
'Running on %s': 'Запущено на %s',
-'runonce': 'одноразово',
'Save': 'Зберегти',
'Save file:': 'Зберегти файл:',
'Save file: %s': 'Зберегти файл: %s',
@@ -562,10 +506,8 @@
'Save via Ajax': 'зберегти через Ajax',
'Saved file hash:': 'Хеш збереженого файлу:',
'Screenshot %s': 'Screenshot %s',
-'search': 'пошук',
'Search': 'Search',
'Select Files to Package': 'Select Files to Package',
-'selected': 'відмічено',
'session': 'сесія',
'session expired': 'час даної сесії вичерпано',
'Session saved correctly': 'Session saved correctly',
@@ -574,10 +516,7 @@
'shell': 'консоль',
'Showing %s to %s of %s %s found': 'Showing %s to %s of %s %s found',
'Sign Up': 'Sign Up',
-'signup': 'підписатись',
-'signup_requested': 'необхідна_реєстрація',
'Singular Form': 'Форма однини',
-'site': 'сайт',
'Site': 'Сайт',
'Size of cache:': 'Size of cache:',
'skip to generate': 'перейти до генерування результату',
@@ -590,22 +529,20 @@
'Start searching': 'Розпочати пошук',
'Start wizard': 'Активувати майстра',
'state': 'стан',
-'Static': 'Статичні',
'static': 'статичні',
+'Static': 'Статичні',
'Static files': 'Статичні файли',
'Statistics': 'Statistics',
'Step': 'Крок',
'step': 'крок',
'stop': 'зупинити',
-'submit': 'застосувати',
'Submit': 'Застосувати',
+'submit': 'застосувати',
'successful': 'успішно',
'switch to : db': 'перемкнути на : БД',
'switch to : filesystem': 'switch to : filesystem',
'Tab width (# characters)': 'Tab width (# characters)',
-'table': 'таблиця',
'Table': 'Table',
-'tags': 'мітки (tags)',
'Temporary': 'Тимчасово',
'test': 'тестувати всі',
'Testing application': 'Тестування додатку',
@@ -632,17 +569,14 @@
'This email already has an account': 'This email already has an account',
'This is an experimental feature and it needs more testing. If you decide to downgrade you do it at your own risk': 'Це експериментальна властивість, яка вимагає подальшого тестування. Якщо ви вирішили повернутись на попередню версію, ви це робити на ваш власний розсуд.',
'This is an experimental feature and it needs more testing. If you decide to upgrade you do it at your own risk': 'Це експериментальна властивість, яка вимагає подальшого тестування. Якщо ви вирішили розпочати оновлення, ви це робите на ваш власний розсуд',
-'This is the %(filename)s template': 'Це шаблон %(filename)s',
"This page can commit your changes to an openshift app repo and push them to your cloud instance. This assumes that you've already created the application instance using the web2py skeleton and have that repo somewhere on a filesystem that this web2py instance can access. This functionality requires GitPython installed and on the python path of the runtime that web2py is operating in.": 'На цій сторінці можна закомітити ваші зміни в репозитарій додатків openshift та проштовхнути їх у ваш примірник в хмарі. Це передбачає, що ви вже створили примірник додатку, використовуючи базовий додаток web2py, як скелет, і маєте репозитарій десь на вашій файловій системі, причому екземпляр web2py має до нього доступ. Ця властивість вимагає наявності встановленого модулю GitPython так, щоб web2py міг його викликати.',
'This page can upload your application to the Google App Engine computing cloud. Mind that you must first create indexes locally and this is done by installing the Google appserver and running the app locally with it once, or there will be errors when selecting records. Attention: deployment may take long time, depending on the network speed. Attention: it will overwrite your app.yaml. DO NOT SUBMIT TWICE.': 'На цій сторінці ви можете завантажити свій додаток в сервіс хмарних обчислень Google App Engine. Майте на увазі, що спочатку необхідно локально створити індекси, і це можна зробити встановивши сервер додатків Google appserver та запустивши в ньому додаток один раз, інакше при виборі записів виникатимуть помилки. Увага: розгортання може зайняти тривалий час, в залежності від швидкості мережі. Увага: це призведе до перезапису app.yaml. НЕ ПУБЛІКУЙТЕ ДВІЧІ.',
'this page to see if a breakpoint was hit and debug interaction is required.': 'цю сторінку, щоб побачити, чи була досягнута точка зупинки і процес ладнання розпочато.',
'This will pull changes from the remote repo for application "%s"?': '"Втягнути" (pull) зміни з віддаленого репозитарію для додатку "%s"?',
'This will push changes to the remote repo for application "%s".': 'Проштовхнути (push) зміни у віддалений репозитарій для додатку "%s"?',
-'ticket': 'позначка',
'Ticket': 'Позначка (Ticket)',
'Ticket ID': 'Ід.позначки (Ticket ID)',
'Ticket Missing': 'Позначка (ticket) відсутня',
-'tickets': 'позначки (tickets)',
'Time in Cache (h:m:s)': 'Час в кеші (г:хв:сек)',
'Timestamp': 'Timestamp',
'to previous version.': 'до попередньої версії.',
@@ -659,37 +593,29 @@
'try view': 'дивитись результат',
'Two-step Login Authentication Code': 'Two-step Login Authentication Code',
'Type PDB debugger command in here and hit Return (Enter) to execute it.': 'наберіть тут будь-які команди ладнача PDB і натисніть клавішу [Return] ([Enter]), щоб запустити їх на виконання.',
-'Type python statement in here and hit Return (Enter) to execute it.': 'Наберіть тут будь-які вирази Python і натисніть клавішу [Return] ([Enter]), щоб запустити їх на виконання.',
'Type some Python code in here and hit Return (Enter) to execute it.': 'Type some Python code in here and hit Return (Enter) to execute it.',
'Unable to check for upgrades': 'Неможливо перевірити оновлення',
'unable to create application "%s"': 'не можу створити додаток "%s"',
-'unable to create application "%s" (it may exist already)': 'не можу створити додаток "%s" (можливо його вже створено)',
'unable to delete file "%(filename)s"': 'не можу вилучити файл "%(filename)s"',
'unable to delete file plugin "%(plugin)s"': 'не можу вилучити файл втулки "%(plugin)s"',
'Unable to determine the line number!': 'Не можу визначити номер рядка!',
'Unable to download app because:': 'Не можу завантажити додаток через:',
-'Unable to download because:': 'Неможливо завантажити через:',
'unable to download layout': 'не вдається завантажити макет',
'unable to download plugin: %s': 'не вдається завантажити втулку: %s',
'Unable to download the list of plugins': 'Unable to download the list of plugins',
-'unable to install application "%(appname)s"': 'не вдається встановити додаток "%(appname)s"',
'unable to install plugin "%s"': 'unable to install plugin "%s"',
'unable to parse csv file': 'не вдається розібрати csv-файл',
'Unable to send email': 'Unable to send email',
'unable to uninstall "%s"': 'не вдається вилучити "%s"',
'unable to upgrade because "%s"': 'не вдається оновити, тому що "%s"',
-'unauthorized': 'неавторизовано',
'uncheck all': 'зняти відмітку з усіх',
-'uninstall': 'вилучити',
'Uninstall': 'Вилучити',
'Unsupported webserver working mode: %s': 'Веб-сервер знаходиться в режимі, який не підтримується: %s',
'update': 'оновити',
'update all languages': 'оновити всі переклади',
'Update:': 'Поновити:',
'Upgrade': 'Оновити',
-'upgrade now': 'оновитись зараз',
'upgrade now to %s': 'оновити зараз до %s',
-'upgrade_web2py': 'оновити web2py',
'upload': 'завантажити',
'Upload': 'Завантажити',
'Upload a package:': 'Завантажити пакет:',
@@ -697,7 +623,6 @@
'upload file:': 'завантажити файл:',
'upload plugin file:': 'завантажити файл втулки:',
'Use (...)&(...) for AND, (...)|(...) for OR, and ~(...) for NOT to build more complex queries.': 'Для створення складних запитів використовуйте (...)&(...) замість AND, (...)|(...) замість OR, та ~(...) замість NOT.',
-'user': 'користувач',
'User': 'User',
'User %(id)s is impersonating %(other_id)s': 'User %(id)s is impersonating %(other_id)s',
'User %(id)s Logged-in': 'User %(id)s Logged-in',
@@ -716,13 +641,10 @@
'Username retrieve': 'Username retrieve',
'Users': 'Users',
'Using the shell may lock the database to other users of this app.': 'Використання оболонки може заблокувати базу даних від сумісного використання іншими користувачами цього додатку.',
-'value not allowed': 'недопустиме значення',
'variables': 'змінні',
'Verify Password': 'Verify Password',
'Version': 'Версія',
-'Version %s.%s.%s (%s) %s': 'Версія %s.%s.%s (%s) %s',
'Versioning': 'Контроль версій',
-'view': 'перегляд',
'Views': 'Відображення (Views)',
'views': 'відображення',
'Warning!': 'Warning!',
@@ -735,21 +657,17 @@
'web2py downgrade': 'повернення на попередню версію web2py',
'web2py is up to date': 'web2py оновлено до актуальної версії',
'web2py online debugger': 'оперативний ладнач (online debugger) web2py',
-'web2py Recent Tweets': 'Останні твіти web2py',
'web2py upgrade': 'оновлення web2py',
'web2py upgraded; please restart it': 'web2py оновлено; будь-ласка перезапустіть його',
'Welcome %(username)s! Click on the link %(link)s to verify your email': 'Welcome %(username)s! Click on the link %(link)s to verify your email',
'Working...': 'Working...',
-'Wrap with Abbreviation': 'Загорнути з абревіатурою',
'WSGI reference name': "ім'я посилання WSGI",
'YES': 'ТАК',
'Yes': 'Yes',
'You can also set and remove breakpoint in the edit window, using the Toggle Breakpoint button': 'Ви також можете встановлювати/вилучати точки зупинок під час редагування першоджерел (sources), використовуючи кнопку "+/- точку зупинки"',
-'You can inspect variables using the console bellow': 'Ви можете досліджувати змінні, використовуючи інтерактивну консоль',
'You can inspect variables using the console below': 'You can inspect variables using the console below',
'You have been invited to join %(site)s, click %(link)s to complete the process': 'You have been invited to join %(site)s, click %(link)s to complete the process',
'You have one more login attempt before you are locked out': 'У вас є ще одна спроба перед тим, як вхід буде заблоковано',
-'you must specify a name for the uploaded application': "ви повинні вказати ім'я додатка, перед ти, як завантажити його",
'You need to set up and reach a': 'Треба встановити та досягнути',
'You only need these if you have already registered': 'You only need these if you have already registered',
'Your application will be blocked until you click an action button (next, step, continue, etc.)': 'Ваш додаток буде заблоковано, поки ви не клацнете по одній з кнопок керування ("наступний", "крок", "продовжити", та ін.)',
diff --git a/applications/admin/languages/zh-tw.py b/applications/admin/languages/zh-tw.py
old mode 100755
new mode 100644
index 1b15382f..1585e1ec
--- a/applications/admin/languages/zh-tw.py
+++ b/applications/admin/languages/zh-tw.py
@@ -32,14 +32,11 @@
'@markmin\x01Searching: **%s** %%{file}': 'Searching: **%s** files',
'@markmin\x01You need to set up and reach a [[breakpoint %s]] to use the debugger!': 'You need to set up and reach a [[breakpoint %s]] to use the debugger!',
'A new password was emailed to you': 'A new password was emailed to you',
-'A new version of web2py is available': '新版的 web2py 已發行',
-'A new version of web2py is available: %s': '新版的 web2py 已發行: %s',
'Abort': 'Abort',
'About': '關於',
'About application': '關於本應用程式',
'Accept Terms': 'Accept Terms',
'Add breakpoint': 'Add breakpoint',
-'additional code for your application': '應用程式額外的程式碼',
'Additional code for your application': 'Additional code for your application',
'Admin design page': 'Admin design page',
'admin disabled because no admin password': '管理介面關閉原因是沒有設定管理員密碼 ',
@@ -47,13 +44,10 @@
'admin disabled because too many invalid login attempts': 'admin disabled because too many invalid login attempts',
'admin disabled because unable to access password file': '管理介面關閉原因是無法存取密碼檔',
'Admin is disabled because insecure channel': '管理功能(Admin)在不安全連線環境下自動關閉',
-'Admin is disabled because unsecure channel': '管理功能(Admin)在不安全連線環境下自動關閉',
'Admin language': 'Admin language',
'Admin versioning page': 'Admin versioning page',
'administrative interface': 'administrative interface',
'Administrator Password:': '管理員密碼:',
-'amy_ajax': 'amy_ajax',
-'and rename it (required):': '同時更名為(必要的):',
'and rename it:': '同時更名為:',
'App does not exist or you are not authorized': 'App does not exist or you are not authorized',
'appadmin': '應用程式管理員',
@@ -72,9 +66,7 @@
'Are you sure you want to delete file "%s"?': '確定要刪除檔案"%s"?',
'Are you sure you want to delete plugin "%s"?': '確定要刪除插件 "%s"?',
'Are you sure you want to delete this object?': 'Are you sure you want to delete this object?',
-'Are you sure you want to uninstall application "%s"': '確定要移除應用程式 "%s"',
'Are you sure you want to uninstall application "%s"?': '確定要移除應用程式 "%s"',
-'Are you sure you want to upgrade web2py now?': '確定現在要升級 web2py?',
'Are you sure?': 'Are you sure?',
'arguments': 'arguments',
'at char %s': 'at char %s',
@@ -83,10 +75,8 @@
'ATTENTION: Login requires a secure (HTTPS) connection or running on localhost.': '注意: 登入管理帳號需要安全連線(HTTPS)或是在本機連線(localhost).',
'ATTENTION: TESTING IS NOT THREAD SAFE SO DO NOT PERFORM MULTIPLE TESTS CONCURRENTLY.': '注意: 因為在測試模式不保證多執行緒安全性,也就是說不可以同時執行多個測試案例',
'ATTENTION: you cannot edit the running application!': '注意:不可編輯正在執行的應用程式!',
-'Authentication': '驗證',
'Authentication code': 'Authentication code',
'Autocomplete Python Code': 'Autocomplete Python Code',
-'Available databases and tables': '可提供的資料庫和資料表',
'Available Databases and Tables': 'Available Databases and Tables',
'back': '回復(back)',
'Back to the plugins list': 'Back to the plugins list',
@@ -106,33 +96,26 @@
'can be a git repo': 'can be a git repo',
'Cancel': 'Cancel',
'Cannot be empty': '不可空白',
-'Cannot compile: there are errors in your app. Debug it, correct errors and try again.': '無法編譯:應用程式中含有錯誤,請除錯後再試一次.',
'Cannot compile: there are errors in your app:': '無法編譯: 在你的應用程式存在錯誤:',
'cannot create file': '無法創建檔案',
'cannot upload file "%(filename)s"': '無法上傳檔案 "%(filename)s"',
'Change Admin Password': 'Change Admin Password',
'Change admin password': 'change admin password',
'change editor settings': 'change editor settings',
-'Change Password': '變更密碼',
'Change password': 'Change password',
-'change_password': '變更密碼',
'Changelog': 'Changelog',
'check all': '全選',
'Check for upgrades': 'Check for upgrades',
'Check to delete': '打勾代表刪除',
-'Check to delete:': '打勾代表刪除:',
'Checking for upgrades...': '檢查新版本中...',
'Clean': '清除',
'Clear': 'Clear',
'Clear CACHE?': 'Clear CACHE?',
'Clear DISK': 'Clear DISK',
'Clear RAM': 'Clear RAM',
-'click here for online examples': '點此處進入線上範例',
-'click here for the administrative interface': '點此處進入管理介面',
'Click on the link %(link)s to reset your password': 'Click on the link %(link)s to reset your password',
'Click row to expand traceback': 'Click row to expand traceback',
'Click row to view a ticket': 'Click row to view a ticket',
-'click to check for upgrades': '點擊打勾以便升級',
'Client IP': '客戶端網址(IP)',
'code': 'code',
'Code listing': 'Code listing',
@@ -148,15 +131,11 @@
'compiled application removed': '已移除已編譯的應用程式',
'Condition': 'Condition',
'continue': 'continue',
-'Controller': '控件',
'Controllers': '控件',
'controllers': '控件',
-'Copyright': '版權所有',
'Count': 'Count',
'Create': '創建',
'create file with filename:': '創建檔案:',
-'create new application:': '創建新應用程式:',
-'Create new simple application': '創建應用程式',
'Create/Upload': 'Create/Upload',
'created by': '創建自',
'Created by:': 'Created by:',
@@ -168,18 +147,14 @@
'Current session': '目前網路連線資訊(session)',
'currently running': 'currently running',
'currently saved or': '現在存檔或',
-'customize me!': '請調整我!',
'data uploaded': '資料已上傳',
'Database': '資料庫',
-'database': '資料庫',
'Database %s select': 'Database %s select',
-'database %s select': '已選擇 %s 資料庫',
'Database administration': 'Database administration',
'database administration': '資料庫管理',
'Database Administration (appadmin)': 'Database Administration (appadmin)',
'Date and Time': '日期和時間',
'db': 'db',
-'DB Model': '資料庫模組',
'Debug': 'Debug',
'defines tables': '定義資料表',
'Delete': '刪除',
@@ -188,7 +163,6 @@
'delete plugin': '刪除插件',
'Delete this file (you will be asked to confirm deletion)': 'Delete this file (you will be asked to confirm deletion)',
'Delete:': '刪除:',
-'delete_plugin': '刪除插件',
'deleted after first hit': 'deleted after first hit',
'Demo': 'Demo',
'Deploy': 'Deploy',
@@ -201,8 +175,6 @@
'Description': '描述',
'Description:': 'Description:',
'design': '設計',
-'DESIGN': '設計',
-'Design for': '設計為了',
'Detailed traceback description': 'Detailed traceback description',
'details': 'details',
'direction: ltr': 'direction: ltr',
@@ -228,20 +200,13 @@
'download plugins': 'download plugins',
'Download plugins from repository': 'Download plugins from repository',
'E-mail': '電子郵件',
-'EDIT': '編輯',
'Edit': '編輯',
'edit all': 'edit all',
'Edit application': '編輯應用程式',
-'edit controller': '編輯控件',
'edit controller:': 'edit controller:',
'Edit current record': '編輯當前紀錄',
-'Edit Profile': '編輯設定檔',
-'Edit This App': '編輯本應用程式',
'edit views:': '編輯視圖',
-'edit_language': '編輯語言檔',
'Editing %s': 'Editing %s',
-'Editing file': '編輯檔案',
-'Editing file "%s"': '編輯檔案"%s"',
'Editing Language file': '編輯語言檔案',
'Editing Plural Forms File': 'Editing Plural Forms File',
'Editor': 'Editor',
@@ -252,7 +217,6 @@
'Enable': 'Enable',
'Enable Close-Tag': 'Enable Close-Tag',
'Enable Code Folding': 'Enable Code Folding',
-'Enterprise Web Framework': '企業網站平台',
'Error': 'Error',
'Error logs for "%(app)s"': '"%(app)s"的錯誤紀錄',
'Error snapshot': 'Error snapshot',
@@ -302,13 +266,12 @@
'Google App Engine Deployment Interface': 'Google App Engine Deployment Interface',
'Google Application Id': 'Google Application Id',
'Goto': 'Goto',
-'graph model': 'graph model',
'Graph Model': 'Graph Model',
+'graph model': 'graph model',
'Group %(group_id)s created': 'Group %(group_id)s created',
'Group %(group_id)s deleted': 'Group %(group_id)s deleted',
'Group ID': '群組編號',
'Group uniquely assigned to user %(id)s': 'Group uniquely assigned to user %(id)s',
-'Hello World': '嗨! 世界',
'Help': '說明檔',
'here': 'here',
'Hide/Show Translated strings': 'Hide/Show Translated strings',
@@ -316,7 +279,6 @@
'Hits': 'Hits',
'Home': 'Home',
'honored only if the expression evaluates to true': 'honored only if the expression evaluates to true',
-'htmledit': 'html編輯',
'If start the downgrade, be patient, it may take a while to rollback': 'If start the downgrade, be patient, it may take a while to rollback',
'If start the upgrade, be patient, it may take a while to download': 'If start the upgrade, be patient, it may take a while to download',
'If the report above contains a ticket number it indicates a failure in executing the controller, before any attempt to execute the doctests. This is usually due to an indentation error or an error outside function code.\n\t\tA green title indicates that all tests (if defined) passed. In this case test results are not shown.': 'If the report above contains a ticket number it indicates a failure in executing the controller, before any attempt to execute the doctests. This is usually due to an indentation error or an error outside function code.\n\t\tA green title indicates that all tests (if defined) passed. In this case test results are not shown.',
@@ -328,10 +290,6 @@
'includes': '包含',
'Incorrect code. {0} more attempt(s) remaining.': 'Incorrect code. {0} more attempt(s) remaining.',
'Indent with tabs': 'Indent with tabs',
-'Index': '索引',
-'index': '索引',
-'insert new': '插入新資料',
-'insert new %s': '插入新資料 %s',
'inspect attributes': 'inspect attributes',
'Install': '安裝',
'Installation of %(plugin)s for %(app)s': 'Installation of %(plugin)s for %(app)s',
@@ -372,7 +330,6 @@
'Last name': '姓',
'Last Revision': 'Last Revision',
'Last saved on:': '最後儲存時間:',
-'Layout': '網頁配置',
'License for': '許可證',
'License:': 'License:',
'Line Nr': 'Line Nr',
@@ -380,21 +337,18 @@
'lists by exception': 'lists by exception',
'lists by ticket': 'lists by ticket',
'Loading...': 'Loading...',
-'loading...': '載入中...',
'Local Apps': 'Local Apps',
'locals': 'locals',
'Locals##debug': 'Locals##debug',
'Log In': 'Log In',
'Logged in': 'Logged in',
'Logged out': 'Logged out',
-'login': '登入',
'Login': '登入',
'Login disabled by administrator': 'Login disabled by administrator',
'Login successful': 'Login successful',
'Login to the Administrative Interface': '登入到管理員介面',
'Login/Register': 'Login/Register',
'Logout': '登出',
-'Lost Password': '密碼遺忘',
'lost password': 'lost password',
'Main Menu': '主選單',
'Manage': 'Manage',
@@ -404,7 +358,6 @@
'Manage Cache': 'Manage Cache',
'Manage Students': 'Manage Students',
'Memberships': 'Memberships',
-'Menu Model': '選單模組(menu)',
'merge': '合併',
'Models': '資料模組',
'models': '資料庫模組',
@@ -425,7 +378,6 @@
'New simple application': 'New simple application',
'next': 'next',
'next %s rows': 'next %s rows',
-'next 100 rows': '往後 100 筆',
'NO': '否',
'no changes': 'no changes',
'No databases in this application': '這應用程式不含資料庫',
@@ -446,7 +398,6 @@
'or alternatively': 'or alternatively',
'Or Get from URL:': 'Or Get from URL:',
'or import from csv file': '或是從逗號分隔檔(CSV)匯入',
-'or provide app url:': '或是提供應用程式的安裝網址:',
'Origin': '原文',
'Original/Translation': '原文/翻譯',
'Overview': 'Overview',
@@ -455,7 +406,6 @@
'Pack compiled': '打包已編譯資料',
'Pack custom': 'Pack custom',
'pack plugin': '打包插件',
-'PAM authenticated user, cannot change password here': 'PAM 授權使用者, 無法在此變更密碼',
'Password': '密碼',
'password changed': '密碼已變更',
'Password changed': 'Password changed',
@@ -465,14 +415,12 @@
'Past revisions': 'Past revisions',
'Path to appcfg.py': 'Path to appcfg.py',
'Path to local openshift repo root.': 'Path to local openshift repo root.',
-'peek': '選取',
'Peeking at file': '選個文件',
'Permission': 'Permission',
'Permissions': 'Permissions',
'Please': 'Please',
'please input your password again': 'please input your password again',
'Please wait, giving pythonanywhere a moment...': 'Please wait, giving pythonanywhere a moment...',
-'plugin': '插件',
'plugin "%(plugin)s" deleted': '已刪除插件"%(plugin)s"',
'Plugin "%s" in application': '在應用程式的插件 "%s"',
'plugin not specified': 'plugin not specified',
@@ -485,7 +433,6 @@
'Preferences saved correctly': 'Preferences saved correctly',
'Preferences saved on session only': 'Preferences saved on session only',
'previous %s rows': 'previous %s rows',
-'previous 100 rows': '往前 100 筆',
'Private files': 'Private files',
'private files': 'private files',
'Profile updated': 'Profile updated',
@@ -504,7 +451,6 @@
'Ram Cleared': 'Ram Cleared',
'Rapid Search': 'Rapid Search',
'Record': 'Record',
-'record': '紀錄',
'Record %(id)s created': 'Record %(id)s created',
'Record %(id)s deleted': 'Record %(id)s deleted',
'Record %(id)s read': 'Record %(id)s read',
@@ -512,13 +458,11 @@
'Record Created': 'Record Created',
'Record Deleted': 'Record Deleted',
'record does not exist': '紀錄不存在',
-'record id': '紀錄編號',
-'Record ID': '紀錄編號',
'Record id': 'Record id',
+'Record ID': '紀錄編號',
'Record Updated': 'Record Updated',
'refresh': 'refresh',
'register': '註冊',
-'Register': '註冊',
'Registration identifier': 'Registration identifier',
'Registration is pending approval': 'Registration is pending approval',
'Registration key': '註冊金鑰',
@@ -536,7 +480,6 @@
'requires distutils, but not installed': 'requires distutils, but not installed',
'requires python-git, but not installed': 'requires python-git, but not installed',
'Reset Password key': '重設密碼',
-'resolve': '解決',
'Resolve Conflict file': '解決衝突檔案',
'response': 'response',
'restart': 'restart',
@@ -549,7 +492,6 @@
'Revision:': 'Revision:',
'Role': '角色',
'Roles': 'Roles',
-'Rows in table': '在資料表裏的資料',
'Rows in Table': 'Rows in Table',
'Rows selected': '筆資料被選擇',
'rules are not defined': 'rules are not defined',
@@ -558,7 +500,6 @@
"Run tests in this file (to run all files, you may also use the button labelled 'test')": "Run tests in this file (to run all files, you may also use the button labelled 'test')",
'Running on %s': 'Running on %s',
'Save': 'Save',
-'save': '儲存',
'Save file:': 'Save file:',
'Save file: %s': 'Save file: %s',
'Save model as...': 'Save model as...',
@@ -567,7 +508,6 @@
'Screenshot %s': 'Screenshot %s',
'Search': 'Search',
'Select Files to Package': 'Select Files to Package',
-'selected': '已選擇',
'session': 'session',
'session expired': '連線(session)已過時',
'Session saved correctly': 'Session saved correctly',
@@ -589,36 +529,29 @@
'Start searching': 'Start searching',
'Start wizard': 'Start wizard',
'state': '狀態',
-'Static': 'Static',
'static': '靜態檔案',
+'Static': 'Static',
'Static files': '靜態檔案',
'Statistics': 'Statistics',
'Step': 'Step',
'step': 'step',
'stop': 'stop',
-'Stylesheet': '網頁風格檔',
-'submit': '傳送',
'Submit': '傳送',
+'submit': '傳送',
'successful': 'successful',
-'Sure you want to delete this object?': '確定要刪除此物件?',
'switch to : db': 'switch to : db',
'switch to : filesystem': 'switch to : filesystem',
'Tab width (# characters)': 'Tab width (# characters)',
-'table': '資料表',
'Table': 'Table',
-'Table name': '資料表名稱',
'Temporary': 'Temporary',
'test': '測試',
'Testing application': '測試中的應用程式',
'The "query" is a condition like "db.table1.field1==\'value\'". Something like "db.table1.field1==db.table2.field2" results in a SQL JOIN.': '"查詢"是一個像 "db.表1.欄位1==\'值\'" 的條件式. 以"db.表1.欄位1==db.表2.欄位2"方式則相當於執行 JOIN SQL.',
'The app exists, was created by wizard, continue to overwrite!': 'The app exists, was created by wizard, continue to overwrite!',
'The app exists, was NOT created by wizard, continue to overwrite!': 'The app exists, was NOT created by wizard, continue to overwrite!',
-'the application logic, each URL path is mapped in one exposed function in the controller': '應用程式邏輯 - 每個網址路徑對應到一個控件的函式',
'The application logic, each URL path is mapped in one exposed function in the controller': 'The application logic, each URL path is mapped in one exposed function in the controller',
-'the data representation, define database tables and sets': '資料展現層 - 用來定義資料表和集合',
'The data representation, define database tables and sets': 'The data representation, define database tables and sets',
'The presentations layer, views are also known as templates': 'The presentations layer, views are also known as templates',
-'the presentations layer, views are also known as templates': '外觀展現層 - 視圖有時也被稱為樣板',
'Theme': 'Theme',
'There are no controllers': '沒有控件(controllers)',
'There are no models': '沒有資料庫模組(models)',
@@ -631,25 +564,21 @@
'There are no views': '沒有視圖',
'These files are not served, they are only available from within your app': 'These files are not served, they are only available from within your app',
'These files are served without processing, your images go here': 'These files are served without processing, your images go here',
-'these files are served without processing, your images go here': '這些檔案保留未經處理,你的影像檔在此',
'This code was emailed to you and is required for login.': 'This code was emailed to you and is required for login.',
"This debugger may not work properly if you don't have a threaded webserver or you're using multiple daemon processes.": "This debugger may not work properly if you don't have a threaded webserver or you're using multiple daemon processes.",
'This email already has an account': 'This email already has an account',
'This is an experimental feature and it needs more testing. If you decide to downgrade you do it at your own risk': 'This is an experimental feature and it needs more testing. If you decide to downgrade you do it at your own risk',
'This is an experimental feature and it needs more testing. If you decide to upgrade you do it at your own risk': 'This is an experimental feature and it needs more testing. If you decide to upgrade you do it at your own risk',
-'This is the %(filename)s template': '這是%(filename)s檔案的樣板(template)',
"This page can commit your changes to an openshift app repo and push them to your cloud instance. This assumes that you've already created the application instance using the web2py skeleton and have that repo somewhere on a filesystem that this web2py instance can access. This functionality requires GitPython installed and on the python path of the runtime that web2py is operating in.": "This page can commit your changes to an openshift app repo and push them to your cloud instance. This assumes that you've already created the application instance using the web2py skeleton and have that repo somewhere on a filesystem that this web2py instance can access. This functionality requires GitPython installed and on the python path of the runtime that web2py is operating in.",
'This page can upload your application to the Google App Engine computing cloud. Mind that you must first create indexes locally and this is done by installing the Google appserver and running the app locally with it once, or there will be errors when selecting records. Attention: deployment may take long time, depending on the network speed. Attention: it will overwrite your app.yaml. DO NOT SUBMIT TWICE.': 'This page can upload your application to the Google App Engine computing cloud. Mind that you must first create indexes locally and this is done by installing the Google appserver and running the app locally with it once, or there will be errors when selecting records. Attention: deployment may take long time, depending on the network speed. Attention: it will overwrite your app.yaml. DO NOT SUBMIT TWICE.',
'this page to see if a breakpoint was hit and debug interaction is required.': 'this page to see if a breakpoint was hit and debug interaction is required.',
'This will pull changes from the remote repo for application "%s"?': 'This will pull changes from the remote repo for application "%s"?',
'This will push changes to the remote repo for application "%s".': 'This will push changes to the remote repo for application "%s".',
-'ticket': '問題單',
'Ticket': '問題單',
'Ticket ID': 'Ticket ID',
'Ticket Missing': 'Ticket Missing',
'Time in Cache (h:m:s)': 'Time in Cache (h:m:s)',
'Timestamp': '時間標記',
-'TM': 'TM',
'to previous version.': '到前一個版本',
'To create a plugin, name a file/folder plugin_[name]': '檔案或目錄名稱以 plugin_開頭來創建插件',
'To emulate a breakpoint programatically, write:': 'To emulate a breakpoint programatically, write:',
@@ -658,9 +587,7 @@
'Toggle comment': 'Toggle comment',
'Toggle Fullscreen': 'Toggle Fullscreen',
'Traceback': 'Traceback',
-'translation strings for the application': '翻譯此應用程式的字串',
'Translation strings for the application': 'Translation strings for the application',
-'try': '嘗試',
'try something like': '嘗試如',
'Try the mobile interface': 'Try the mobile interface',
'try view': 'try view',
@@ -672,10 +599,7 @@
'unable to delete file "%(filename)s"': '無法刪除檔案 "%(filename)s"',
'unable to delete file plugin "%(plugin)s"': '無法刪查插件檔 "%(plugin)s"',
'Unable to determine the line number!': 'Unable to determine the line number!',
-'Unable to download': '無法下載',
-'Unable to download app': '無法下載應用程式',
'Unable to download app because:': '無法下載應用程式因為:',
-'Unable to download because': '因為下列原因無法下載:',
'unable to download layout': 'unable to download layout',
'unable to download plugin: %s': 'unable to download plugin: %s',
'Unable to download the list of plugins': 'Unable to download the list of plugins',
@@ -692,15 +616,10 @@
'Update:': '更新:',
'Upgrade': 'Upgrade',
'upgrade now to %s': 'upgrade now to %s',
-'upgrade web2py now': 'upgrade web2py now',
-'upgrade_web2py': '升級 web2py',
'upload': 'upload',
'Upload': 'Upload',
-'Upload & install packed application': '上傳並安裝已打包的應用程式',
'Upload a package:': 'Upload a package:',
'Upload and install packed application': 'Upload and install packed application',
-'upload application:': '上傳應用程式:',
-'Upload existing application': '更新存在的應用程式',
'upload file:': '上傳檔案:',
'upload plugin file:': '上傳插件檔:',
'Use (...)&(...) for AND, (...)|(...) for OR, and ~(...) for NOT to build more complex queries.': '使用下列方式來組合更複雜的條件式, (...)&(...) 代表同時存在的條件, (...)|(...) 代表擇一的條件, ~(...)則代表反向條件.',
@@ -726,9 +645,6 @@
'Verify Password': '驗證密碼',
'Version': '版本',
'Versioning': 'Versioning',
-'versioning': '版本管理',
-'View': '視圖',
-'view': '視圖',
'Views': '視圖',
'views': '視圖',
'Warning!': 'Warning!',
@@ -741,12 +657,9 @@
'web2py downgrade': 'web2py downgrade',
'web2py is up to date': 'web2py 已經是最新版',
'web2py online debugger': 'web2py online debugger',
-'web2py Recent Tweets': 'web2py 最近的 Tweets',
'web2py upgrade': 'web2py upgrade',
'web2py upgraded; please restart it': '已升級 web2py ; 請重新啟動',
'Welcome %(username)s! Click on the link %(link)s to verify your email': 'Welcome %(username)s! Click on the link %(link)s to verify your email',
-'Welcome %s': '歡迎 %s',
-'Welcome to web2py': '歡迎使用 web2py',
'Working...': 'Working...',
'WSGI reference name': 'WSGI reference name',
'YES': '是',
diff --git a/applications/admin/languages/zh.py b/applications/admin/languages/zh.py
old mode 100755
new mode 100644
index 70952c2c..5f46d2af
--- a/applications/admin/languages/zh.py
+++ b/applications/admin/languages/zh.py
@@ -2,9 +2,6 @@
{
'!langcode!': 'zh-cn',
'!langname!': '中文',
-'"browse"': '游览',
-'"save"': '"保存"',
-'"submit"': '"提交"',
'"update" is an optional expression like "field1=\'newvalue\'". You cannot update or delete the results of a JOIN': '"更新"是可配置项 如 "field1=\'newvalue\'",你无法在JOIN 中更新或删除',
'"User Exception" debug mode. ': '"User Exception" debug mode. ',
'%s': '%s',
@@ -14,7 +11,6 @@
'%s students registered': '%s students registered',
'%Y-%m-%d': '%Y-%m-%d',
'%Y-%m-%d %H:%M:%S': '%Y-%m-%d %H:%M:%S',
-'(requires internet access)': '(requires internet access)',
'(requires internet access, experimental)': '(requires internet access, experimental)',
'(something like "it-it")': '(就酱 "it-it")',
'(version %s)': '(version %s)',
@@ -36,14 +32,11 @@
'@markmin\x01Searching: **%s** %%{file}': 'Searching: **%s** files',
'@markmin\x01You need to set up and reach a [[breakpoint %s]] to use the debugger!': 'You need to set up and reach a [[breakpoint %s]] to use the debugger!',
'A new password was emailed to you': 'A new password was emailed to you',
-'A new version of web2py is available': '新版本web2py已经可用',
-'A new version of web2py is available: %s': '新版本web2py已经可用: %s',
'Abort': 'Abort',
'About': '关于',
'About application': '关于这个应用',
'Accept Terms': 'Accept Terms',
'Add breakpoint': 'Add breakpoint',
-'additional code for your application': '给你的应用附加代码',
'Additional code for your application': 'Additional code for your application',
'Admin design page': 'Admin design page',
'admin disabled because no admin password': '管理员需要设定密码,否则无法管理',
@@ -51,12 +44,10 @@
'admin disabled because too many invalid login attempts': 'admin disabled because too many invalid login attempts',
'admin disabled because unable to access password file': '需要可以操作密码文件,否则无法进行管理',
'Admin is disabled because insecure channel': '管理因不安全通道而关闭',
-'Admin is disabled because unsecure channel': '管理因不稳定通道而关闭',
'Admin language': 'Admin language',
'Admin versioning page': 'Admin versioning page',
'administrative interface': 'administrative interface',
'Administrator Password:': '管理员密码:',
-'and rename it (required):': '重命名为 (必须):',
'and rename it:': ' 重命名为:',
'App does not exist or you are not authorized': 'App does not exist or you are not authorized',
'appadmin': '应用管理',
@@ -75,9 +66,7 @@
'Are you sure you want to delete file "%s"?': '你真想删除文件"%s"?',
'Are you sure you want to delete plugin "%s"?': 'Are you sure you want to delete plugin "%s"?',
'Are you sure you want to delete this object?': 'Are you sure you want to delete this object?',
-'Are you sure you want to uninstall application "%s"': '你真确定要卸载应用 "%s"',
'Are you sure you want to uninstall application "%s"?': '你真确定要卸载应用 "%s" ?',
-'Are you sure you want to upgrade web2py now?': 'Are you sure you want to upgrade web2py now?',
'Are you sure?': 'Are you sure?',
'arguments': 'arguments',
'at char %s': 'at char %s',
@@ -88,7 +77,6 @@
'ATTENTION: you cannot edit the running application!': '注意: 不能修改正在运行中的应用!',
'Authentication code': 'Authentication code',
'Autocomplete Python Code': 'Autocomplete Python Code',
-'Available databases and tables': '可用数据库/表',
'Available Databases and Tables': 'Available Databases and Tables',
'back': 'back',
'Back to the plugins list': 'Back to the plugins list',
@@ -108,14 +96,12 @@
'can be a git repo': 'can be a git repo',
'Cancel': 'Cancel',
'Cannot be empty': '不能不填',
-'Cannot compile: there are errors in your app. \xa0 \xa0 \xa0 \xa0Debug it, correct errors and try again.': '无法编译: 应用中有错误,请修订后再试.',
'Cannot compile: there are errors in your app:': 'Cannot compile: there are errors in your app:',
'cannot create file': '无法创建文件',
'cannot upload file "%(filename)s"': '无法上传文件 "%(filename)s"',
'Change Admin Password': 'Change Admin Password',
'Change admin password': 'change admin password',
'change editor settings': 'change editor settings',
-'Change Password': '修改密码',
'Change password': 'Change password',
'Changelog': 'Changelog',
'check all': '检查所有',
@@ -127,12 +113,9 @@
'Clear CACHE?': 'Clear CACHE?',
'Clear DISK': 'Clear DISK',
'Clear RAM': 'Clear RAM',
-'click here for online examples': '猛击此处,查看在线实例',
-'click here for the administrative interface': '猛击此处,进入管理界面',
'Click on the link %(link)s to reset your password': 'Click on the link %(link)s to reset your password',
'Click row to expand traceback': 'Click row to expand traceback',
'Click row to view a ticket': 'Click row to view a ticket',
-'click to check for upgrades': '猛击查看是否有升级版本',
'Client IP': '客户端IP',
'code': 'code',
'Code listing': 'Code listing',
@@ -153,8 +136,6 @@
'Count': 'Count',
'Create': 'create',
'create file with filename:': '创建文件用这名:',
-'create new application:': '创建新应用:',
-'Create new simple application': '创建一个新应用',
'Create/Upload': 'Create/Upload',
'created by': '创建自',
'Created by:': 'Created by:',
@@ -166,12 +147,9 @@
'Current session': '当前会话',
'currently running': 'currently running',
'currently saved or': '保存当前的或',
-'customize me!': '定制俺!',
'data uploaded': '数据已上传',
'Database': 'Database',
-'database': '数据库',
'Database %s select': 'Database %s select',
-'database %s select': '数据库 %s 选择',
'Database administration': 'Database administration',
'database administration': '数据库管理',
'Database Administration (appadmin)': 'Database Administration (appadmin)',
@@ -197,8 +175,6 @@
'Description': '描述',
'Description:': 'Description:',
'design': '设计',
-'DESIGN': '设计',
-'Design for': '设计:',
'Detailed traceback description': 'Detailed traceback description',
'details': 'details',
'direction: ltr': 'direction: ltr',
@@ -224,18 +200,13 @@
'download plugins': 'download plugins',
'Download plugins from repository': 'Download plugins from repository',
'E-mail': '邮箱:',
-'EDIT': '编辑',
'Edit': '修改',
'edit all': 'edit all',
'Edit application': '修订应用',
-'edit controller': '修订控制器',
'edit controller:': 'edit controller:',
'Edit current record': '修订当前记录',
-'Edit Profile': '修订配置',
'edit views:': 'edit views:',
'Editing %s': 'Editing %s',
-'Editing file': '修订文件',
-'Editing file "%s"': '修订文件 %s',
'Editing Language file': '修订语言文件',
'Editing Plural Forms File': 'Editing Plural Forms File',
'Editor': 'Editor',
@@ -246,7 +217,6 @@
'Enable': 'Enable',
'Enable Close-Tag': 'Enable Close-Tag',
'Enable Code Folding': 'Enable Code Folding',
-'Enterprise Web Framework': '强悍的网络开发框架',
'Error': 'Error',
'Error logs for "%(app)s"': '"%(app)s" 的错误日志',
'Error snapshot': 'Error snapshot',
@@ -263,13 +233,11 @@
'exposes:': 'exposes:',
'extends': '扩展',
'failed to compile file because:': 'failed to compile file because:',
-'failed to reload module': '重新加载模块失败',
'failed to reload module because:': 'failed to reload module because:',
'File': 'File',
'file "%(filename)s" created': '文件 "%(filename)s" 已创建',
'file "%(filename)s" deleted': '文件 "%(filename)s" 已删除',
'file "%(filename)s" uploaded': '文件 "%(filename)s" 已上传',
-'file "%(filename)s" was not deleted': '文件 "%(filename)s" 没删除',
'file "%s" of %s restored': '文件"%s" 有关 %s 已重存',
'file changed on disk': '硬盘上的文件已经修改',
'file does not exist': '文件并不存在',
@@ -291,7 +259,6 @@
'GAE Output': 'GAE Output',
'GAE Password': 'GAE Password',
'Generate': 'Generate',
-'Get from URL:': 'Get from URL:',
'Git Pull': 'Git Pull',
'Git Push': 'Git Push',
'Globals##debug': 'Globals##debug',
@@ -299,13 +266,12 @@
'Google App Engine Deployment Interface': 'Google App Engine Deployment Interface',
'Google Application Id': 'Google Application Id',
'Goto': 'Goto',
-'graph model': 'graph model',
'Graph Model': 'Graph Model',
+'graph model': 'graph model',
'Group %(group_id)s created': 'Group %(group_id)s created',
'Group %(group_id)s deleted': 'Group %(group_id)s deleted',
'Group ID': '组ID',
'Group uniquely assigned to user %(id)s': 'Group uniquely assigned to user %(id)s',
-'Hello World': '道可道,非常道;名可名,非常名',
'Help': '帮助',
'here': 'here',
'Hide/Show Translated strings': 'Hide/Show Translated strings',
@@ -313,7 +279,6 @@
'Hits': 'Hits',
'Home': 'Home',
'honored only if the expression evaluates to true': 'honored only if the expression evaluates to true',
-'htmledit': 'html编辑',
'If start the downgrade, be patient, it may take a while to rollback': 'If start the downgrade, be patient, it may take a while to rollback',
'If start the upgrade, be patient, it may take a while to download': 'If start the upgrade, be patient, it may take a while to download',
'If the report above contains a ticket number it indicates a failure in executing the controller, before any attempt to execute the doctests. This is usually due to an indentation error or an error outside function code.\n\t\tA green title indicates that all tests (if defined) passed. In this case test results are not shown.': 'If the report above contains a ticket number it indicates a failure in executing the controller, before any attempt to execute the doctests. This is usually due to an indentation error or an error outside function code.\n\t\tA green title indicates that all tests (if defined) passed. In this case test results are not shown.',
@@ -325,8 +290,6 @@
'includes': '包含',
'Incorrect code. {0} more attempt(s) remaining.': 'Incorrect code. {0} more attempt(s) remaining.',
'Indent with tabs': 'Indent with tabs',
-'insert new': '新插入',
-'insert new %s': '新插入 %s',
'inspect attributes': 'inspect attributes',
'Install': 'install',
'Installation of %(plugin)s for %(app)s': 'Installation of %(plugin)s for %(app)s',
@@ -364,7 +327,6 @@
'Language files (static strings) updated': '语言文件(静态部分)已更新',
'languages': '语言',
'Languages': '语言',
-'languages updated': '语言已被刷新',
'Last name': '名',
'Last Revision': 'Last Revision',
'Last saved on:': '最后保存于:',
@@ -375,21 +337,18 @@
'lists by exception': 'lists by exception',
'lists by ticket': 'lists by ticket',
'Loading...': 'Loading...',
-'loading...': '载入中...',
'Local Apps': 'Local Apps',
'locals': 'locals',
'Locals##debug': 'Locals##debug',
'Log In': 'Log In',
'Logged in': 'Logged in',
'Logged out': 'Logged out',
-'login': '登录',
'Login': '登录',
'Login disabled by administrator': 'Login disabled by administrator',
'Login successful': 'Login successful',
'Login to the Administrative Interface': '登录到管理员界面',
'Login/Register': 'Login/Register',
'Logout': '注销',
-'Lost Password': '忘记密码',
'lost password': 'lost password',
'Main Menu': 'Main Menu',
'Manage': 'Manage',
@@ -419,7 +378,6 @@
'New simple application': 'New simple application',
'next': 'next',
'next %s rows': 'next %s rows',
-'next 100 rows': '后100行',
'NO': '不',
'no changes': 'no changes',
'No databases in this application': '这应用没有数据库',
@@ -440,8 +398,6 @@
'or alternatively': 'or alternatively',
'Or Get from URL:': 'Or Get from URL:',
'or import from csv file': '或者,从csv文件导入',
-'or provide app url:': 'or provide app url:',
-'or provide application url:': '或者,提供应用所在地址链接:',
'Origin': '起源',
'Original/Translation': '原始文件/翻译文件',
'Overview': 'Overview',
@@ -450,7 +406,6 @@
'Pack compiled': '包编译完',
'Pack custom': 'Pack custom',
'pack plugin': 'pack plugin',
-'PAM authenticated user, cannot change password here': 'PAM authenticated user, cannot change password here',
'Password': '密码',
'password changed': 'password changed',
'Password changed': 'Password changed',
@@ -478,7 +433,6 @@
'Preferences saved correctly': 'Preferences saved correctly',
'Preferences saved on session only': 'Preferences saved on session only',
'previous %s rows': 'previous %s rows',
-'previous 100 rows': '前100行',
'Private files': 'Private files',
'private files': 'private files',
'Profile updated': 'Profile updated',
@@ -497,7 +451,6 @@
'Ram Cleared': 'Ram Cleared',
'Rapid Search': 'Rapid Search',
'Record': 'Record',
-'record': 'record',
'Record %(id)s created': 'Record %(id)s created',
'Record %(id)s deleted': 'Record %(id)s deleted',
'Record %(id)s read': 'Record %(id)s read',
@@ -505,13 +458,11 @@
'Record Created': 'Record Created',
'Record Deleted': 'Record Deleted',
'record does not exist': '记录并不存在',
-'record id': '记录ID',
-'Record ID': '记录ID',
'Record id': 'Record id',
+'Record ID': '记录ID',
'Record Updated': 'Record Updated',
'refresh': 'refresh',
'register': 'register',
-'Register': '注册',
'Registration identifier': 'Registration identifier',
'Registration is pending approval': 'Registration is pending approval',
'Registration key': '注册密匙',
@@ -541,7 +492,6 @@
'Revision:': 'Revision:',
'Role': '角色',
'Roles': 'Roles',
-'Rows in table': '表行',
'Rows in Table': 'Rows in Table',
'Rows selected': '行选择',
'rules are not defined': 'rules are not defined',
@@ -550,7 +500,6 @@
"Run tests in this file (to run all files, you may also use the button labelled 'test')": "Run tests in this file (to run all files, you may also use the button labelled 'test')",
'Running on %s': 'Running on %s',
'Save': 'Save',
-'save': '保存',
'Save file:': 'Save file:',
'Save file: %s': 'Save file: %s',
'Save model as...': 'Save model as...',
@@ -559,7 +508,6 @@
'Screenshot %s': 'Screenshot %s',
'Search': 'Search',
'Select Files to Package': 'Select Files to Package',
-'selected': '已选',
'session': 'session',
'session expired': '会话过期',
'Session saved correctly': 'Session saved correctly',
@@ -581,35 +529,29 @@
'Start searching': 'Start searching',
'Start wizard': 'start wizard',
'state': '状态',
-'Static': 'Static',
'static': '静态文件',
+'Static': 'Static',
'Static files': '静态文件',
'Statistics': 'Statistics',
'Step': 'Step',
'step': 'step',
'stop': 'stop',
-'submit': '提交',
'Submit': 'Submit',
+'submit': '提交',
'successful': 'successful',
-'Sure you want to delete this object?': '真的要删除这个对象?',
'switch to : db': 'switch to : db',
'switch to : filesystem': 'switch to : filesystem',
'Tab width (# characters)': 'Tab width (# characters)',
-'table': '表',
'Table': 'Table',
-'Table name': '表名',
'Temporary': 'Temporary',
'test': '测试',
'Testing application': '应用测试',
'The "query" is a condition like "db.table1.field1==\'value\'". Something like "db.table1.field1==db.table2.field2" results in a SQL JOIN.': '',
'The app exists, was created by wizard, continue to overwrite!': 'The app exists, was created by wizard, continue to overwrite!',
'The app exists, was NOT created by wizard, continue to overwrite!': 'The app exists, was NOT created by wizard, continue to overwrite!',
-'the application logic, each URL path is mapped in one exposed function in the controller': '应用逻辑:每个URL由控制器暴露的函式完成映射',
'The application logic, each URL path is mapped in one exposed function in the controller': 'The application logic, each URL path is mapped in one exposed function in the controller',
-'the data representation, define database tables and sets': '数据表达式,定义数据库/表',
'The data representation, define database tables and sets': 'The data representation, define database tables and sets',
'The presentations layer, views are also known as templates': 'The presentations layer, views are also known as templates',
-'the presentations layer, views are also known as templates': '提交层/视图都在模板中可知',
'Theme': 'Theme',
'There are no controllers': '冇控制器',
'There are no models': '冇模型s',
@@ -622,13 +564,11 @@
'There are no views': '冇视图',
'These files are not served, they are only available from within your app': 'These files are not served, they are only available from within your app',
'These files are served without processing, your images go here': 'These files are served without processing, your images go here',
-'these files are served without processing, your images go here': '',
'This code was emailed to you and is required for login.': 'This code was emailed to you and is required for login.',
"This debugger may not work properly if you don't have a threaded webserver or you're using multiple daemon processes.": "This debugger may not work properly if you don't have a threaded webserver or you're using multiple daemon processes.",
'This email already has an account': 'This email already has an account',
'This is an experimental feature and it needs more testing. If you decide to downgrade you do it at your own risk': 'This is an experimental feature and it needs more testing. If you decide to downgrade you do it at your own risk',
'This is an experimental feature and it needs more testing. If you decide to upgrade you do it at your own risk': 'This is an experimental feature and it needs more testing. If you decide to upgrade you do it at your own risk',
-'This is the %(filename)s template': '这是 %(filename)s 模板',
"This page can commit your changes to an openshift app repo and push them to your cloud instance. This assumes that you've already created the application instance using the web2py skeleton and have that repo somewhere on a filesystem that this web2py instance can access. This functionality requires GitPython installed and on the python path of the runtime that web2py is operating in.": "This page can commit your changes to an openshift app repo and push them to your cloud instance. This assumes that you've already created the application instance using the web2py skeleton and have that repo somewhere on a filesystem that this web2py instance can access. This functionality requires GitPython installed and on the python path of the runtime that web2py is operating in.",
'This page can upload your application to the Google App Engine computing cloud. Mind that you must first create indexes locally and this is done by installing the Google appserver and running the app locally with it once, or there will be errors when selecting records. Attention: deployment may take long time, depending on the network speed. Attention: it will overwrite your app.yaml. DO NOT SUBMIT TWICE.': 'This page can upload your application to the Google App Engine computing cloud. Mind that you must first create indexes locally and this is done by installing the Google appserver and running the app locally with it once, or there will be errors when selecting records. Attention: deployment may take long time, depending on the network speed. Attention: it will overwrite your app.yaml. DO NOT SUBMIT TWICE.',
'this page to see if a breakpoint was hit and debug interaction is required.': 'this page to see if a breakpoint was hit and debug interaction is required.',
@@ -639,19 +579,15 @@
'Ticket Missing': 'Ticket Missing',
'Time in Cache (h:m:s)': 'Time in Cache (h:m:s)',
'Timestamp': '时间戳',
-'TM': '',
'to previous version.': 'to previous version.',
'To create a plugin, name a file/folder plugin_[name]': 'To create a plugin, name a file/folder plugin_[name]',
'To emulate a breakpoint programatically, write:': 'To emulate a breakpoint programatically, write:',
'to use the debugger!': 'to use the debugger!',
-'to \xa0previous version.': '退回前一版本',
'toggle breakpoint': 'toggle breakpoint',
'Toggle comment': 'Toggle comment',
'Toggle Fullscreen': 'Toggle Fullscreen',
'Traceback': 'Traceback',
-'translation strings for the application': '应用的翻译字串',
'Translation strings for the application': 'Translation strings for the application',
-'try': '尝试',
'try something like': '尝试',
'Try the mobile interface': 'Try the mobile interface',
'try view': 'try view',
@@ -663,10 +599,7 @@
'unable to delete file "%(filename)s"': '无法删除文件 "%(filename)s"',
'unable to delete file plugin "%(plugin)s"': 'unable to delete file plugin "%(plugin)s"',
'Unable to determine the line number!': 'Unable to determine the line number!',
-'Unable to download': '无法下载',
-'Unable to download app': '无法下载应用',
'Unable to download app because:': 'Unable to download app because:',
-'Unable to download because': 'Unable to download because',
'unable to download layout': 'unable to download layout',
'unable to download plugin: %s': 'unable to download plugin: %s',
'Unable to download the list of plugins': 'Unable to download the list of plugins',
@@ -683,19 +616,13 @@
'Update:': '更新:',
'Upgrade': 'Upgrade',
'upgrade now to %s': 'upgrade now to %s',
-'upgrade web2py now': 'upgrade web2py now',
'upload': 'upload',
'Upload': 'Upload',
-'Upload & install packed application': 'Upload & install packed application',
'Upload a package:': 'Upload a package:',
'Upload and install packed application': 'Upload and install packed application',
-'upload application:': '提交已有的应用:',
-'Upload existing application': '上传已有应用',
'upload file:': '提交文件:',
'upload plugin file:': 'upload plugin file:',
'Use (...)&(...) for AND, (...)|(...) for OR, and ~(...) for NOT to build more complex queries.': 'Use (...)&(...) for AND, (...)|(...) for OR, and ~(...) for NOT to build more complex queries.',
-'Use (...)&(...) for AND, (...)|(...) for OR, and ~(...) \xa0for NOT to build more complex queries.': '',
-'Use an url:': 'Use an url:',
'User': 'User',
'User %(id)s is impersonating %(other_id)s': 'User %(id)s is impersonating %(other_id)s',
'User %(id)s Logged-in': 'User %(id)s Logged-in',
@@ -718,8 +645,6 @@
'Verify Password': 'Verify Password',
'Version': '版本',
'Versioning': 'Versioning',
-'versioning': '版本',
-'view': '视图',
'Views': '视图',
'views': '视图s',
'Warning!': 'Warning!',
@@ -732,11 +657,9 @@
'web2py downgrade': 'web2py downgrade',
'web2py is up to date': 'web2py现在已经是最新的版本了',
'web2py online debugger': 'web2py online debugger',
-'web2py Recent Tweets': 'twitter上的web2py进展实播',
'web2py upgrade': 'web2py upgrade',
'web2py upgraded; please restart it': 'web2py upgraded; please restart it',
'Welcome %(username)s! Click on the link %(link)s to verify your email': 'Welcome %(username)s! Click on the link %(link)s to verify your email',
-'Welcome to web2py': '欢迎使用web2py',
'Working...': 'Working...',
'WSGI reference name': 'WSGI reference name',
'YES': '是',
diff --git a/applications/admin/models/access.py b/applications/admin/models/access.py
index ded471c4..56bbd6d6 100644
--- a/applications/admin/models/access.py
+++ b/applications/admin/models/access.py
@@ -6,7 +6,10 @@ from gluon.fileutils import read_file
from gluon.utils import web2py_uuid
from pydal.contrib import portalocker
# ###########################################################
-# ## make sure administrator is on localhost or https
+# ## make sure administrator is on localhost or https,
+# ## or from
+# ## gluon.settings.global_settings.trusted_lan_prefix
+# ## subnet
# ###########################################################
@@ -22,6 +25,9 @@ else:
if request.is_https:
session.secure()
+elif request.env.trusted_lan_prefix and \
+ request.client.startswith(request.env.trusted_lan_prefix):
+ request.is_local = True
elif not request.is_local and not DEMO_MODE:
raise HTTP(200, T('Admin is disabled because insecure channel'))
diff --git a/applications/admin/settings.cfg b/applications/admin/settings.cfg
index 4127b27c..12505206 100644
--- a/applications/admin/settings.cfg
+++ b/applications/admin/settings.cfg
@@ -1,9 +1,12 @@
-[DEFAULT]
-
[editor]
-theme = web2py
-editor = default
+theme = twilight
+editor = sublime
closetag = true
+tabwidth = 4
+highlightline = true
+linenumbers = true
+codefolding = false
+indentwithtabs = false
[editor_sessions]
welcome = welcome/models/db.py,welcome/controllers/default.py,welcome/views/default/index.html
diff --git a/applications/admin/static/css/jqueryMultiSelect.css b/applications/admin/static/css/jqueryMultiSelect.css
old mode 100755
new mode 100644
diff --git a/applications/admin/static/js/jqueryMultiSelect.js b/applications/admin/static/js/jqueryMultiSelect.js
old mode 100755
new mode 100644
diff --git a/applications/admin/static/js/web2py.js b/applications/admin/static/js/web2py.js
index 22b9f253..b4c0a5d3 100644
--- a/applications/admin/static/js/web2py.js
+++ b/applications/admin/static/js/web2py.js
@@ -284,6 +284,7 @@
var redirect = xhr.getResponseHeader('web2py-redirect-location');
if (redirect !== null) {
window.location = redirect;
+ window.location.reload(); // Force reload even with anchors
}
/* run this here only if this Ajax request is NOT for a web2py component. */
if (xhr.getResponseHeader('web2py-component-content') === null) {
diff --git a/applications/admin/static/plugin_jqmobile/images/ajax-loader.png b/applications/admin/static/plugin_jqmobile/images/ajax-loader.png
old mode 100755
new mode 100644
diff --git a/applications/admin/static/plugin_jqmobile/images/icons-18-black.png b/applications/admin/static/plugin_jqmobile/images/icons-18-black.png
old mode 100755
new mode 100644
diff --git a/applications/admin/static/plugin_jqmobile/images/icons-18-white.png b/applications/admin/static/plugin_jqmobile/images/icons-18-white.png
old mode 100755
new mode 100644
diff --git a/applications/admin/static/plugin_jqmobile/images/icons-36-black.png b/applications/admin/static/plugin_jqmobile/images/icons-36-black.png
old mode 100755
new mode 100644
diff --git a/applications/admin/static/plugin_jqmobile/images/icons-36-white.png b/applications/admin/static/plugin_jqmobile/images/icons-36-white.png
old mode 100755
new mode 100644
diff --git a/applications/admin/static/plugin_multiselect/jquery.multi-select.js b/applications/admin/static/plugin_multiselect/jquery.multi-select.js
old mode 100755
new mode 100644
diff --git a/applications/admin/static/plugin_multiselect/multi-select.css b/applications/admin/static/plugin_multiselect/multi-select.css
old mode 100755
new mode 100644
diff --git a/applications/admin/static/plugin_multiselect/switch.png b/applications/admin/static/plugin_multiselect/switch.png
old mode 100755
new mode 100644
diff --git a/applications/admin/views/appadmin.html b/applications/admin/views/appadmin.html
index 2ce42621..906bb271 100644
--- a/applications/admin/views/appadmin.html
+++ b/applications/admin/views/appadmin.html
@@ -82,7 +82,7 @@