mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-01-20 06:29:53 +01:00
Use camel case
This commit is contained in:
parent
2307c6fbda
commit
018821e98c
4 changed files with 5 additions and 5 deletions
|
@ -24,7 +24,7 @@
|
||||||
"pad.colorpicker.cancel": "Cancel",
|
"pad.colorpicker.cancel": "Cancel",
|
||||||
|
|
||||||
"pad.loading": "Loading...",
|
"pad.loading": "Loading...",
|
||||||
"pad.nocookie": "Cookie could not be found. Please allow cookies in your browser!",
|
"pad.noCookie": "Cookie could not be found. Please allow cookies in your browser!",
|
||||||
"pad.passwordRequired": "You need a password to access this pad",
|
"pad.passwordRequired": "You need a password to access this pad",
|
||||||
"pad.permissionDenied": "You do not have permission to access this pad",
|
"pad.permissionDenied": "You do not have permission to access this pad",
|
||||||
"pad.wrongPassword": "Your password was wrong",
|
"pad.wrongPassword": "Your password was wrong",
|
||||||
|
|
|
@ -1086,7 +1086,7 @@ input[type=checkbox] {
|
||||||
display:none;
|
display:none;
|
||||||
}
|
}
|
||||||
|
|
||||||
#nocookie{
|
#noCookie{
|
||||||
display:none;
|
display:none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -450,7 +450,7 @@ var pad = {
|
||||||
if (!readCookie("test"))
|
if (!readCookie("test"))
|
||||||
{
|
{
|
||||||
$('#loading').hide();
|
$('#loading').hide();
|
||||||
$('#nocookie').show();
|
$('#noCookie').show();
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|
|
@ -114,8 +114,8 @@
|
||||||
<div id="wrongPassword">
|
<div id="wrongPassword">
|
||||||
<p data-l10n-id="pad.wrongPassword">Your password was wrong</p>
|
<p data-l10n-id="pad.wrongPassword">Your password was wrong</p>
|
||||||
</div>
|
</div>
|
||||||
<div id="nocookie">
|
<div id="noCookie">
|
||||||
<p data-l10n-id="pad.nocookie">Cookie could not be found. Please allow cookies in your browser!</p>
|
<p data-l10n-id="pad.noCookie">Cookie could not be found. Please allow cookies in your browser!</p>
|
||||||
</div>
|
</div>
|
||||||
<% e.begin_block("loading"); %>
|
<% e.begin_block("loading"); %>
|
||||||
<p data-l10n-id="pad.loading" id="loading">Loading...</p>
|
<p data-l10n-id="pad.loading" id="loading">Loading...</p>
|
||||||
|
|
Loading…
Reference in a new issue