From 82af43f598f9444f118e7381f370a14e8e6eba02 Mon Sep 17 00:00:00 2001 From: Florian Klink Date: Tue, 7 Jun 2016 21:46:27 +0200 Subject: [PATCH] lng/english: unify upper/lowercase string in $lng['panel'] Some where lowercase, some uppercase. Especially in the Cancel/save case this looked weird. This patch changes all button labels to their uppercase form. --- lng/english.lng.php | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/lng/english.lng.php b/lng/english.lng.php index c06d1e03..98b58f1a 100644 --- a/lng/english.lng.php +++ b/lng/english.lng.php @@ -22,17 +22,17 @@ */ $lng['translator'] = ''; -$lng['panel']['edit'] = 'edit'; -$lng['panel']['delete'] = 'delete'; -$lng['panel']['create'] = 'create'; -$lng['panel']['save'] = 'save'; -$lng['panel']['yes'] = 'yes'; -$lng['panel']['no'] = 'no'; +$lng['panel']['edit'] = 'Edit'; +$lng['panel']['delete'] = 'Delete'; +$lng['panel']['create'] = 'Create'; +$lng['panel']['save'] = 'Save'; +$lng['panel']['yes'] = 'Yes'; +$lng['panel']['no'] = 'No'; $lng['panel']['emptyfornochanges'] = 'empty for no changes'; $lng['panel']['emptyfordefault'] = 'empty for defaults'; $lng['panel']['path'] = 'Path'; $lng['panel']['toggle'] = 'Toggle'; -$lng['panel']['next'] = 'next'; +$lng['panel']['next'] = 'Next'; $lng['panel']['dirsmissing'] = 'Can not find or read the directory!'; /** @@ -477,7 +477,7 @@ $lng['serversettings']['deactivateddocroot']['description'] = 'When a user is de // ADDED IN 1.2.16-svn4 -$lng['panel']['reset'] = 'discard changes'; +$lng['panel']['reset'] = 'Discard changes'; $lng['admin']['accountsettings'] = 'Account settings'; $lng['admin']['panelsettings'] = 'Panel settings'; $lng['admin']['systemsettings'] = 'System settings'; @@ -1273,7 +1273,7 @@ $lng['admin']['ipsandports']['ssl_cert_chainfile']['description'] = 'Mostly CA_B $lng['admin']['ipsandports']['docroot']['title'] = 'Custom docroot (empty = point to Froxlor)'; $lng['admin']['ipsandports']['docroot']['description'] = 'You can define a custom document-root (the destination for a request) for this ip/port combination here.
ATTENTION: Please be careful with what you enter here!'; $lng['serversettings']['login_domain_login'] = 'Allow login with domains'; -$lng['panel']['unlock'] = 'unlock'; +$lng['panel']['unlock'] = 'Unlock'; $lng['question']['customer_reallyunlock'] = 'Do you really want to unlock customer %s?'; // ADDED IN FROXLOR 0.9.15 @@ -1733,8 +1733,8 @@ $lng['serversettings']['ssl']['ssl_cipher_list']['description'] = 'This is a lis // Added in Froxlor 0.9.31 $lng['panel']['dashboard'] = 'Dashboard'; -$lng['panel']['assigned'] = 'assigned'; -$lng['panel']['available'] = 'available'; +$lng['panel']['assigned'] = 'Assigned'; +$lng['panel']['available'] = 'Available'; $lng['customer']['services'] = 'Services'; $lng['serversettings']['phpfpm_settings']['ipcdir']['title'] = 'FastCGI IPC directory'; $lng['serversettings']['phpfpm_settings']['ipcdir']['description'] = 'The directory where the php-fpm sockets will be stored by the webserver.
This directory has to be readable for the webserver';