aboutsummaryrefslogtreecommitdiffstats
path: root/src/core.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/core.js')
-rw-r--r--src/core.js23
1 files changed, 19 insertions, 4 deletions
diff --git a/src/core.js b/src/core.js
index cae3a90e3..e37627459 100644
--- a/src/core.js
+++ b/src/core.js
@@ -515,10 +515,25 @@ jQuery.extend({
noop: function() {},
// Evaluates a script in a global context
- globalEval: function( data ) {
- var indirect = eval;
- if ( jQuery.trim( data ) ) {
- indirect( data + ";" );
+ globalEval: function( code ) {
+ var script,
+ indirect = eval;
+
+ code = jQuery.trim( code ) + ";";
+
+ if ( code ) {
+ // If the code includes a valid, prologue position
+ // strict mode pragma, execute code by injecting a
+ // script tag into the document.
+ if ( code.indexOf("use strict") === 1 ) {
+ script = document.createElement("script");
+ script.text = code;
+ document.head.appendChild( script ).parentNode.removeChild( script );
+ } else {
+ // Otherwise, avoid the DOM node creation, insertion
+ // and removal by using an indirect global eval
+ indirect( code );
+ }
}
},
-fix-npm-audit'>automated/noid/stable27-fix-npm-audit Nextcloud server, a safe home for all your data: https://github.com/nextcloud/serverwww-data
summaryrefslogtreecommitdiffstats
path: root/settings/l10n/ug.js
blob: 616f5e51816e7d29c3aeb2f4581036fe176a76dd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
OC.L10N.register(
    "settings",
    {
    "Authentication error" : "سالاھىيەت دەلىللەش خاتالىقى",
    "Email saved" : "تورخەت ساقلاندى",
    "Sharing" : "ھەمبەھىر",
    "Log" : "خاتىرە",
    "Language changed" : "تىل ئۆزگەردى",
    "Invalid request" : "ئىناۋەتسىز ئىلتىماس",
    "Admins can't remove themself from the admin group" : "باشقۇرغۇچى ئۆزىنى باشقۇرۇش گۇرۇپپىسىدىن چىقىرىۋېتەلمەيدۇ",
    "Unable to add user to group %s" : "ئىشلەتكۈچىنى %s گۇرۇپپىغا قوشالمايدۇ",
    "Unable to remove user from group %s" : "ئىشلەتكۈچىنى %s گۇرۇپپىدىن چىقىرىۋېتەلمەيدۇ",
    "Couldn't update app." : "ئەپنى يېڭىلىيالمايدۇ.",
    "All" : "ھەممىسى",
    "Please wait...." : "سەل كۈتۈڭ…",
    "Disable" : "چەكلە",
    "Enable" : "قوزغات",
    "Updating...." : "يېڭىلاۋاتىدۇ…",
    "Error while updating app" : "ئەپنى يېڭىلاۋاتقاندا خاتالىق كۆرۈلدى",
    "Updated" : "يېڭىلاندى",
    "Delete" : "ئۆچۈر",
    "Groups" : "گۇرۇپپا",
    "undo" : "يېنىۋال",
    "never" : "ھەرگىز",
    "add group" : "گۇرۇپپا قوش",
    "A valid username must be provided" : "چوقۇم ئىناۋەتلىك ئىشلەتكۈچى ئىسمىدىن بىرنى تەمىنلەش كېرەك",
    "A valid password must be provided" : "چوقۇم ئىناۋەتلىك ئىم تەمىنلەش كېرەك",
    "__language_name__" : "ئۇيغۇرچە",
    "Unlimited" : "چەكسىز",
    "None" : "يوق",
    "Login" : "تىزىمغا كىرىڭ",
    "Encryption" : "شىفىرلاش",
    "Server address" : "مۇلازىمېتىر ئادرىسى",
    "Port" : "ئېغىز",
    "More" : "تېخىمۇ كۆپ",
    "Less" : "ئاز",
    "Version" : "نەشرى",
    "Forum" : "مۇنبەر",
    "Cancel" : "ۋاز كەچ",
    "Email" : "تورخەت",
    "Your email address" : "تورخەت ئادرېسىڭىز",
    "Password" : "ئىم",
    "Unable to change your password" : "ئىمنى ئۆزگەرتكىلى بولمايدۇ.",
    "Current password" : "نۆۋەتتىكى ئىم",
    "New password" : "يېڭى ئىم",
    "Change password" : "ئىم ئۆزگەرت",
    "Name" : "ئاتى",
    "Language" : "تىل",
    "Help translate" : "تەرجىمىگە ياردەم",
    "Username" : "ئىشلەتكۈچى ئاتى",
    "Create" : "قۇر",
    "Other" : "باشقا",
    "set new password" : "يېڭى ئىم تەڭشە",
    "Default" : "كۆڭۈلدىكى"
},
"nplurals=1; plural=0;");