The GDPR Framework By Data443 - Version 1.0.43

Version Description

(8/2/2021) = * FRAM-196 Change ClassiDocs Tab * FRAM-202 Add Missing Tables

Download this release

Release Info

Developer data443
Plugin Icon 128x128 The GDPR Framework By Data443
Version 1.0.43
Comparing to
See all releases

Code changes from version 1.0.42 to 1.0.43

assets/ajax-cookieconsent.js CHANGED
@@ -1,87 +1,87 @@
1
- window.addEventListener("load", function () {
2
- if (gdpr_policy_page.gdpr_url) {
3
- if (gdpr_policy_page.gdpr_popup) {
4
- var layoutcheck = "gdpr-cool-layout";
5
- } else {
6
- var layoutcheck = "gdpr-cool-layout-wlink";
7
- }
8
- } else {
9
- var layoutcheck = "gdpr-cool-layout-wlink";
10
- }
11
- window.cookieconsent.initialise({
12
- layout: layoutcheck,
13
- layouts: {
14
- "gdpr-cool-layout":
15
- '{{header}}{{message}}{{link}}{{compliance}}<span aria-label="dismiss cookie message" role="button" tabindex="0" class="gdpr-close"><span class="emoji gdpr-close-popup cc-close">&#10005;</span></span>',
16
- "gdpr-cool-layout-wlink":
17
- '{{header}}{{message}}{{compliance}}<span aria-label="dismiss cookie message" role="button" tabindex="0" class="gdpr-close"><span class="emoji gdpr-close-popup cc-close">&#10005;</span></span>',
18
- },
19
- palette: {
20
- popup: {
21
- background: gdpr_policy_page.gdpr_popup_background,
22
- text: gdpr_policy_page.gdpr_popup_text,
23
- },
24
- button: {
25
- background: gdpr_policy_page.gdpr_button_background,
26
- text: gdpr_policy_page.gdpr_button_text,
27
- border: gdpr_policy_page.gdpr_button_border,
28
- },
29
- },
30
- position: gdpr_policy_page.gdpr_popup_position,
31
- static: gdpr_policy_page.gdpr_popup_static,
32
- theme: gdpr_policy_page.gdpr_popup_theme,
33
- type: gdpr_policy_page.gdpr_popup_type,
34
- content: {
35
- header: gdpr_policy_page.gdpr_header, //"Cookies used on the website!"
36
- message: gdpr_policy_page.gdpr_message,
37
- href: gdpr_policy_page.gdpr_url,
38
- link: gdpr_policy_page.gdpr_link,
39
- deny: gdpr_policy_page.gdpr_dismiss,
40
- allow: gdpr_policy_page.gdpr_allow,
41
- policy: gdpr_policy_page.policy,
42
- target: gdpr_policy_page.gdpr_link_target,
43
- },
44
- onStatusChange: function (status, chosenBefore) {
45
- if (chosenBefore == "false" || status == "allow") {
46
- jQuery(document).ready(function ($) {
47
- $.getJSON("https://api.ipify.org?format=json", function (data) {
48
- $.ajax({
49
- url: gdpr_policy_page.ajaxurl,
50
- type: "POST",
51
- data: {
52
- action: "add_consent_accept_cookies",
53
- userip: data.ip,
54
- },
55
- success: function (data) {
56
- $(".cc-close").click();
57
- if (gdpr_policy_page.gdpr_hide) {
58
- $(".cc-revoke").hide();
59
- }
60
- },
61
- });
62
- });
63
- });
64
- } else if (chosenBefore == "false" || status == "deny") {
65
- jQuery(document).ready(function ($) {
66
- $.getJSON("https://api.ipify.org?format=json", function (data) {
67
- $.ajax({
68
- url: gdpr_policy_page.ajaxurl,
69
- type: "POST",
70
- data: {
71
- action: "add_consent_deny_cookies",
72
- userip: data.ip,
73
- },
74
- success: function (data) {
75
- console.log(data);
76
- $(".cc-close").click();
77
- if (gdpr_policy_page.gdpr_hide) {
78
- $(".cc-revoke").hide();
79
- }
80
- },
81
- });
82
- });
83
- });
84
- }
85
- },
86
- });
87
- });
1
+ window.addEventListener("load", function () {
2
+ if (gdpr_policy_page.gdpr_url) {
3
+ if (gdpr_policy_page.gdpr_popup) {
4
+ var layoutcheck = "gdpr-cool-layout";
5
+ } else {
6
+ var layoutcheck = "gdpr-cool-layout-wlink";
7
+ }
8
+ } else {
9
+ var layoutcheck = "gdpr-cool-layout-wlink";
10
+ }
11
+ window.cookieconsent.initialise({
12
+ layout: layoutcheck,
13
+ layouts: {
14
+ "gdpr-cool-layout":
15
+ '{{header}}{{message}}{{link}}{{compliance}}<span aria-label="dismiss cookie message" role="button" tabindex="0" class="gdpr-close"><span class="emoji gdpr-close-popup cc-close">&#10005;</span></span>',
16
+ "gdpr-cool-layout-wlink":
17
+ '{{header}}{{message}}{{compliance}}<span aria-label="dismiss cookie message" role="button" tabindex="0" class="gdpr-close"><span class="emoji gdpr-close-popup cc-close">&#10005;</span></span>',
18
+ },
19
+ palette: {
20
+ popup: {
21
+ background: gdpr_policy_page.gdpr_popup_background,
22
+ text: gdpr_policy_page.gdpr_popup_text,
23
+ },
24
+ button: {
25
+ background: gdpr_policy_page.gdpr_button_background,
26
+ text: gdpr_policy_page.gdpr_button_text,
27
+ border: gdpr_policy_page.gdpr_button_border,
28
+ },
29
+ },
30
+ position: gdpr_policy_page.gdpr_popup_position,
31
+ static: gdpr_policy_page.gdpr_popup_static,
32
+ theme: gdpr_policy_page.gdpr_popup_theme,
33
+ type: gdpr_policy_page.gdpr_popup_type,
34
+ content: {
35
+ header: gdpr_policy_page.gdpr_header, //"Cookies used on the website!"
36
+ message: gdpr_policy_page.gdpr_message,
37
+ href: gdpr_policy_page.gdpr_url,
38
+ link: gdpr_policy_page.gdpr_link,
39
+ deny: gdpr_policy_page.gdpr_dismiss,
40
+ allow: gdpr_policy_page.gdpr_allow,
41
+ policy: gdpr_policy_page.policy,
42
+ target: gdpr_policy_page.gdpr_link_target,
43
+ },
44
+ onStatusChange: function (status, chosenBefore) {
45
+ if (chosenBefore == "false" || status == "allow") {
46
+ jQuery(document).ready(function ($) {
47
+ $.getJSON("https://api.ipify.org?format=json", function (data) {
48
+ $.ajax({
49
+ url: gdpr_policy_page.ajaxurl,
50
+ type: "POST",
51
+ data: {
52
+ action: "add_consent_accept_cookies",
53
+ userip: data.ip,
54
+ },
55
+ success: function (data) {
56
+ $(".cc-close").click();
57
+ if (gdpr_policy_page.gdpr_hide) {
58
+ $(".cc-revoke").hide();
59
+ }
60
+ },
61
+ });
62
+ });
63
+ });
64
+ } else if (chosenBefore == "false" || status == "deny") {
65
+ jQuery(document).ready(function ($) {
66
+ $.getJSON("https://api.ipify.org?format=json", function (data) {
67
+ $.ajax({
68
+ url: gdpr_policy_page.ajaxurl,
69
+ type: "POST",
70
+ data: {
71
+ action: "add_consent_deny_cookies",
72
+ userip: data.ip,
73
+ },
74
+ success: function (data) {
75
+ console.log(data);
76
+ $(".cc-close").click();
77
+ if (gdpr_policy_page.gdpr_hide) {
78
+ $(".cc-revoke").hide();
79
+ }
80
+ },
81
+ });
82
+ });
83
+ });
84
+ }
85
+ },
86
+ });
87
+ });
assets/conditional-show.js CHANGED
@@ -1,102 +1,102 @@
1
- jQuery(function ($) {
2
-
3
- var trigger = function () {
4
- $('.js-gdpr-conditional').each(function () {
5
- conditionalShow($(this));
6
- });
7
- };
8
-
9
- var conditionalShow = function ($el) {
10
- var type = $el.prop('tagName');
11
- if ('SELECT' === type) {
12
- conditionalShowSelect($el);
13
- } else if ('INPUT' === type) {
14
- if ('checkbox' === $el.attr('type')) {
15
- conditionalShowCheckbox($el);
16
- } else if ('radio' === $el.attr('type')) {
17
- conditionalShowRadio($el);
18
- } else {
19
- console.log('Unknown element type: ' + type);
20
- }
21
- } else {
22
- console.log('Unknown element type: ' + type);
23
- }
24
- };
25
-
26
- var conditionalShowSelect = function ($el) {
27
- $targets = [];
28
- $el.find('option').each(function () {
29
- if ($(this).data('show')) {
30
- $targets.push($(this).data('show'));
31
- }
32
- });
33
-
34
- $.each($targets, function (i, e) {
35
- $(e).hide();
36
- });
37
-
38
- if ($el.is(':visible')) {
39
- $el.find('option:selected').each(function () {
40
- if ($(this).data('show')) {
41
- $($(this).data('show')).show();
42
- }
43
- });
44
- }
45
- }
46
-
47
- var conditionalShowCheckbox = function ($el) {
48
- if ($el.is(':checked') && $el.is(':visible')) {
49
- if ($el.data('show')) {
50
- if (isChange) {
51
- $($el.data('show')).addClass('slidePadding').slideDown();
52
- } else {
53
- $($el.data('show')).show();
54
- }
55
- }
56
- } else {
57
- if ($el.data('show')) {
58
- if (isChange) {
59
- $($el.data('show')).addClass('slidePadding').slideUp();
60
- } else {
61
- $($el.data('show')).hide();
62
- }
63
- }
64
- }
65
- };
66
-
67
- var conditionalShowRadio = function ($el) {
68
- $el.closest('fieldset').find('input[type=radio]').each(function (i, el) {
69
- if ($(el).is(':checked') && $el.is(':visible')) {
70
- if ($(el).data('show')) {
71
- if (isChange) {
72
- $($(el).data('show')).addClass('slidePadding').slideDown();
73
- } else {
74
- $($(el).data('show')).show();
75
- }
76
- }
77
- } else {
78
- if ($(el).data('show')) {
79
- if (isChange) {
80
- $($(el).data('show')).addClass('slidePadding').slideUp();
81
- } else {
82
- $($(el).data('show')).hide();
83
- }
84
- }
85
- }
86
- });
87
- };
88
-
89
- var isChange = false;
90
-
91
- $('.js-gdpr-conditional').each(function () {
92
- $(this).on('change', function () {
93
- isChange = true;
94
- conditionalShow($(this));
95
-
96
- // Hacky solution for 2nd layer of nested items
97
- trigger();
98
- });
99
- conditionalShow($(this));
100
- });
101
-
102
- });
1
+ jQuery(function ($) {
2
+
3
+ var trigger = function () {
4
+ $('.js-gdpr-conditional').each(function () {
5
+ conditionalShow($(this));
6
+ });
7
+ };
8
+
9
+ var conditionalShow = function ($el) {
10
+ var type = $el.prop('tagName');
11
+ if ('SELECT' === type) {
12
+ conditionalShowSelect($el);
13
+ } else if ('INPUT' === type) {
14
+ if ('checkbox' === $el.attr('type')) {
15
+ conditionalShowCheckbox($el);
16
+ } else if ('radio' === $el.attr('type')) {
17
+ conditionalShowRadio($el);
18
+ } else {
19
+ console.log('Unknown element type: ' + type);
20
+ }
21
+ } else {
22
+ console.log('Unknown element type: ' + type);
23
+ }
24
+ };
25
+
26
+ var conditionalShowSelect = function ($el) {
27
+ $targets = [];
28
+ $el.find('option').each(function () {
29
+ if ($(this).data('show')) {
30
+ $targets.push($(this).data('show'));
31
+ }
32
+ });
33
+
34
+ $.each($targets, function (i, e) {
35
+ $(e).hide();
36
+ });
37
+
38
+ if ($el.is(':visible')) {
39
+ $el.find('option:selected').each(function () {
40
+ if ($(this).data('show')) {
41
+ $($(this).data('show')).show();
42
+ }
43
+ });
44
+ }
45
+ }
46
+
47
+ var conditionalShowCheckbox = function ($el) {
48
+ if ($el.is(':checked') && $el.is(':visible')) {
49
+ if ($el.data('show')) {
50
+ if (isChange) {
51
+ $($el.data('show')).addClass('slidePadding').slideDown();
52
+ } else {
53
+ $($el.data('show')).show();
54
+ }
55
+ }
56
+ } else {
57
+ if ($el.data('show')) {
58
+ if (isChange) {
59
+ $($el.data('show')).addClass('slidePadding').slideUp();
60
+ } else {
61
+ $($el.data('show')).hide();
62
+ }
63
+ }
64
+ }
65
+ };
66
+
67
+ var conditionalShowRadio = function ($el) {
68
+ $el.closest('fieldset').find('input[type=radio]').each(function (i, el) {
69
+ if ($(el).is(':checked') && $el.is(':visible')) {
70
+ if ($(el).data('show')) {
71
+ if (isChange) {
72
+ $($(el).data('show')).addClass('slidePadding').slideDown();
73
+ } else {
74
+ $($(el).data('show')).show();
75
+ }
76
+ }
77
+ } else {
78
+ if ($(el).data('show')) {
79
+ if (isChange) {
80
+ $($(el).data('show')).addClass('slidePadding').slideUp();
81
+ } else {
82
+ $($(el).data('show')).hide();
83
+ }
84
+ }
85
+ }
86
+ });
87
+ };
88
+
89
+ var isChange = false;
90
+
91
+ $('.js-gdpr-conditional').each(function () {
92
+ $(this).on('change', function () {
93
+ isChange = true;
94
+ conditionalShow($(this));
95
+
96
+ // Hacky solution for 2nd layer of nested items
97
+ trigger();
98
+ });
99
+ conditionalShow($(this));
100
+ });
101
+
102
+ });
assets/cookieconsent.js CHANGED
@@ -1,87 +1,87 @@
1
- window.addEventListener("load", function () {
2
- if(gdpr_policy_page.gdpr_url){
3
- if(gdpr_policy_page.gdpr_popup){
4
- var layoutcheck = 'gdpr-cool-layout';
5
- }else{
6
- var layoutcheck = 'gdpr-cool-layout-wlink';
7
- }
8
- }else{
9
- var layoutcheck = 'gdpr-cool-layout-wlink';
10
- }
11
- window.cookieconsent.initialise({
12
- layout:layoutcheck,
13
- layouts: {
14
- 'gdpr-cool-layout': '{{header}}{{message}}{{link}}{{compliance}}<span aria-label="dismiss cookie message" role="button" tabindex="0" class="gdpr-close"><span class="emoji gdpr-close-popup cc-close">&#10005;</span></span>',
15
- 'gdpr-cool-layout-wlink': '{{header}}{{message}}{{compliance}}<span aria-label="dismiss cookie message" role="button" tabindex="0" class="gdpr-close"><span class="emoji gdpr-close-popup cc-close">&#10005;</span></span>',
16
- },
17
- "palette": {
18
- "popup": {
19
- "background": gdpr_policy_page.gdpr_popup_background,
20
- "text": gdpr_policy_page.gdpr_popup_text
21
- },
22
- "button": {
23
- "background": gdpr_policy_page.gdpr_button_background,
24
- "text": gdpr_policy_page.gdpr_button_text,
25
- "border": gdpr_policy_page.gdpr_button_border
26
- }
27
- },
28
- "position": gdpr_policy_page.gdpr_popup_position,
29
- "static": gdpr_policy_page.gdpr_popup_static,
30
- "theme": gdpr_policy_page.gdpr_popup_theme,
31
- "type": gdpr_policy_page.gdpr_popup_type,
32
- "content": {
33
- "header": gdpr_policy_page.gdpr_header, //"Cookies used on the website!"
34
- "message": gdpr_policy_page.gdpr_message,
35
- "href": gdpr_policy_page.gdpr_url,
36
- "link": gdpr_policy_page.gdpr_link,
37
- "deny": gdpr_policy_page.gdpr_dismiss,
38
- "allow": gdpr_policy_page.gdpr_allow,
39
- "policy": gdpr_policy_page.policy,
40
- "target": gdpr_policy_page.gdpr_link_target,
41
- },
42
- onStatusChange: function (status, chosenBefore) {
43
- if(chosenBefore == 'false' || status=="allow")
44
- {
45
- jQuery(document).ready( function($){
46
- $.getJSON('https://api.ipify.org?format=json', function(data){
47
- $.ajax({
48
- url: gdpr_policy_page.ajaxurl,
49
- type: 'POST',
50
- data:{
51
- action: 'add_consent_accept_cookies',
52
- userip: data.ip
53
- },
54
- success: function( data ){
55
- $('.cc-close').click();
56
- if(gdpr_policy_page.gdpr_hide)
57
- {
58
- $(".cc-revoke").hide();
59
- }
60
- }
61
- });
62
- });
63
- });
64
- }else if(chosenBefore == 'false' || status=="deny")
65
- {
66
- jQuery(document).ready( function($){
67
- $.getJSON('https://api.ipify.org?format=json', function(data){
68
- $.ajax({
69
- url: gdpr_policy_page.ajaxurl,
70
- type: 'POST',
71
- data:{
72
- action: 'add_consent_deny_cookies',
73
- userip: data.ip
74
- },
75
- success: function( data ){
76
- $('.cc-close').click();
77
- if(gdpr_policy_page.gdpr_hide){
78
- $(".cc-revoke").hide();
79
- }
80
- }
81
- });
82
- });
83
- });
84
- }
85
- }
86
- })
87
- });
1
+ window.addEventListener("load", function () {
2
+ if(gdpr_policy_page.gdpr_url){
3
+ if(gdpr_policy_page.gdpr_popup){
4
+ var layoutcheck = 'gdpr-cool-layout';
5
+ }else{
6
+ var layoutcheck = 'gdpr-cool-layout-wlink';
7
+ }
8
+ }else{
9
+ var layoutcheck = 'gdpr-cool-layout-wlink';
10
+ }
11
+ window.cookieconsent.initialise({
12
+ layout:layoutcheck,
13
+ layouts: {
14
+ 'gdpr-cool-layout': '{{header}}{{message}}{{link}}{{compliance}}<span aria-label="dismiss cookie message" role="button" tabindex="0" class="gdpr-close"><span class="emoji gdpr-close-popup cc-close">&#10005;</span></span>',
15
+ 'gdpr-cool-layout-wlink': '{{header}}{{message}}{{compliance}}<span aria-label="dismiss cookie message" role="button" tabindex="0" class="gdpr-close"><span class="emoji gdpr-close-popup cc-close">&#10005;</span></span>',
16
+ },
17
+ "palette": {
18
+ "popup": {
19
+ "background": gdpr_policy_page.gdpr_popup_background,
20
+ "text": gdpr_policy_page.gdpr_popup_text
21
+ },
22
+ "button": {
23
+ "background": gdpr_policy_page.gdpr_button_background,
24
+ "text": gdpr_policy_page.gdpr_button_text,
25
+ "border": gdpr_policy_page.gdpr_button_border
26
+ }
27
+ },
28
+ "position": gdpr_policy_page.gdpr_popup_position,
29
+ "static": gdpr_policy_page.gdpr_popup_static,
30
+ "theme": gdpr_policy_page.gdpr_popup_theme,
31
+ "type": gdpr_policy_page.gdpr_popup_type,
32
+ "content": {
33
+ "header": gdpr_policy_page.gdpr_header, //"Cookies used on the website!"
34
+ "message": gdpr_policy_page.gdpr_message,
35
+ "href": gdpr_policy_page.gdpr_url,
36
+ "link": gdpr_policy_page.gdpr_link,
37
+ "deny": gdpr_policy_page.gdpr_dismiss,
38
+ "allow": gdpr_policy_page.gdpr_allow,
39
+ "policy": gdpr_policy_page.policy,
40
+ "target": gdpr_policy_page.gdpr_link_target,
41
+ },
42
+ onStatusChange: function (status, chosenBefore) {
43
+ if(chosenBefore == 'false' || status=="allow")
44
+ {
45
+ jQuery(document).ready( function($){
46
+ $.getJSON('https://api.ipify.org?format=json', function(data){
47
+ $.ajax({
48
+ url: gdpr_policy_page.ajaxurl,
49
+ type: 'POST',
50
+ data:{
51
+ action: 'add_consent_accept_cookies',
52
+ userip: data.ip
53
+ },
54
+ success: function( data ){
55
+ $('.cc-close').click();
56
+ if(gdpr_policy_page.gdpr_hide)
57
+ {
58
+ $(".cc-revoke").hide();
59
+ }
60
+ }
61
+ });
62
+ });
63
+ });
64
+ }else if(chosenBefore == 'false' || status=="deny")
65
+ {
66
+ jQuery(document).ready( function($){
67
+ $.getJSON('https://api.ipify.org?format=json', function(data){
68
+ $.ajax({
69
+ url: gdpr_policy_page.ajaxurl,
70
+ type: 'POST',
71
+ data:{
72
+ action: 'add_consent_deny_cookies',
73
+ userip: data.ip
74
+ },
75
+ success: function( data ){
76
+ $('.cc-close').click();
77
+ if(gdpr_policy_page.gdpr_hide){
78
+ $(".cc-revoke").hide();
79
+ }
80
+ }
81
+ });
82
+ });
83
+ });
84
+ }
85
+ }
86
+ })
87
+ });
assets/css/consentuntil.css CHANGED
@@ -1,59 +1,59 @@
1
- .gdpr-consent-until{
2
- opacity: 0;
3
- position: absolute;
4
- margin: 0px 15px;
5
- transition: opacity 0.4s;
6
- max-width: 125px;
7
- -webkit-transition: opacity 0.4s;
8
- -moz-transition: opacity 0.4s;
9
- -ms-transition: opacity 0.4s;
10
- -o-transition: opacity 0.4s;
11
- }
12
- .gdpr-consent-until-cal{
13
- cursor: pointer;
14
- width: auto;
15
- padding: 5px;
16
- }
17
-
18
- /* Tooltip container */
19
- .gdpr-consent-until-cal {
20
- position: relative;
21
- display: inline-block;
22
- }
23
-
24
- /* Tooltip text */
25
- .gdpr-consent-until-cal .tooltiptext {
26
- transition: opacity 0.4s;
27
- font-family: sans-serif;
28
- font-size: 0.6em;
29
- line-height: 1.5em;
30
- opacity: 0;
31
- visibility: hidden;
32
- width: 150px;
33
- background-color: #eee;
34
- color: rgb(100, 100, 100);
35
- text-align: center;
36
- padding: 10px;
37
- border-radius: 6px;
38
- top: 30px;
39
- left: -30px;
40
- /*Positionthetooltiptext-seeexamplesbelow!*/position: absolute;
41
- z-index: 1;
42
- -webkit-transition: opacity 0.4s;
43
- -moz-transition: opacity 0.4s;
44
- -ms-transition: opacity 0.4s;
45
- -o-transition: opacity 0.4s;
46
- -webkit-border-radius: 6px;
47
- -moz-border-radius: 6px;
48
- -ms-border-radius: 6px;
49
- -o-border-radius: 6px;
50
- }
51
-
52
- /* Show the tooltip text when you mouse over the tooltip container */
53
- .dashicons-calendar-alt:hover .tooltiptext {
54
- visibility: visible;
55
- opacity: 1;
56
- }
57
- .tooltiptext:after {
58
-
59
- }
1
+ .gdpr-consent-until{
2
+ opacity: 0;
3
+ position: absolute;
4
+ margin: 0px 15px;
5
+ transition: opacity 0.4s;
6
+ max-width: 125px;
7
+ -webkit-transition: opacity 0.4s;
8
+ -moz-transition: opacity 0.4s;
9
+ -ms-transition: opacity 0.4s;
10
+ -o-transition: opacity 0.4s;
11
+ }
12
+ .gdpr-consent-until-cal{
13
+ cursor: pointer;
14
+ width: auto;
15
+ padding: 5px;
16
+ }
17
+
18
+ /* Tooltip container */
19
+ .gdpr-consent-until-cal {
20
+ position: relative;
21
+ display: inline-block;
22
+ }
23
+
24
+ /* Tooltip text */
25
+ .gdpr-consent-until-cal .tooltiptext {
26
+ transition: opacity 0.4s;
27
+ font-family: sans-serif;
28
+ font-size: 0.6em;
29
+ line-height: 1.5em;
30
+ opacity: 0;
31
+ visibility: hidden;
32
+ width: 150px;
33
+ background-color: #eee;
34
+ color: rgb(100, 100, 100);
35
+ text-align: center;
36
+ padding: 10px;
37
+ border-radius: 6px;
38
+ top: 30px;
39
+ left: -30px;
40
+ /*Positionthetooltiptext-seeexamplesbelow!*/position: absolute;
41
+ z-index: 1;
42
+ -webkit-transition: opacity 0.4s;
43
+ -moz-transition: opacity 0.4s;
44
+ -ms-transition: opacity 0.4s;
45
+ -o-transition: opacity 0.4s;
46
+ -webkit-border-radius: 6px;
47
+ -moz-border-radius: 6px;
48
+ -ms-border-radius: 6px;
49
+ -o-border-radius: 6px;
50
+ }
51
+
52
+ /* Show the tooltip text when you mouse over the tooltip container */
53
+ .dashicons-calendar-alt:hover .tooltiptext {
54
+ visibility: visible;
55
+ opacity: 1;
56
+ }
57
+ .tooltiptext:after {
58
+
59
+ }
assets/css/jquery.dataTables.min.css CHANGED
@@ -1,542 +1 @@
1
- table.dataTable {
2
- width: 100%;
3
- margin: 0 auto;
4
- clear: both;
5
- border-collapse: separate;
6
- border-spacing: 0
7
- }
8
-
9
- table.dataTable thead th,
10
- table.dataTable tfoot th {
11
- font-weight: bold
12
- }
13
-
14
- table.dataTable thead th,
15
- table.dataTable thead td {
16
- padding: 10px 18px;
17
- border-bottom: 1px solid #111
18
- }
19
-
20
- table.dataTable thead th:active,
21
- table.dataTable thead td:active {
22
- outline: none
23
- }
24
-
25
- table.dataTable tfoot th,
26
- table.dataTable tfoot td {
27
- padding: 10px 18px 6px 18px;
28
- border-top: 1px solid #111
29
- }
30
-
31
- table.dataTable thead .sorting,
32
- table.dataTable thead .sorting_asc,
33
- table.dataTable thead .sorting_desc,
34
- table.dataTable thead .sorting_asc_disabled,
35
- table.dataTable thead .sorting_desc_disabled {
36
- cursor: pointer;
37
- *cursor: hand;
38
- background-repeat: no-repeat;
39
- background-position: center right
40
- }
41
-
42
- table.dataTable thead .sorting {
43
- background-image: url("../images/sort_both.png")
44
- }
45
-
46
- table.dataTable thead .sorting_asc {
47
- background-image: url("../images/sort_asc.png")
48
- }
49
-
50
- table.dataTable thead .sorting_desc {
51
- background-image: url("../images/sort_desc.png")
52
- }
53
-
54
- table.dataTable thead .sorting_asc_disabled {
55
- background-image: url("../images/sort_asc_disabled.png")
56
- }
57
-
58
- table.dataTable thead .sorting_desc_disabled {
59
- background-image: url("../images/sort_desc_disabled.png")
60
- }
61
-
62
- table.dataTable tbody tr {
63
- background-color: #ffffff
64
- }
65
-
66
- table.dataTable tbody tr.selected {
67
- background-color: #B0BED9
68
- }
69
-
70
- table.dataTable tbody th,
71
- table.dataTable tbody td {
72
- padding: 8px 10px
73
- }
74
-
75
- table.dataTable.row-border tbody th,
76
- table.dataTable.row-border tbody td,
77
- table.dataTable.display tbody th,
78
- table.dataTable.display tbody td {
79
- border-top: 1px solid #ddd
80
- }
81
-
82
- table.dataTable.row-border tbody tr:first-child th,
83
- table.dataTable.row-border tbody tr:first-child td,
84
- table.dataTable.display tbody tr:first-child th,
85
- table.dataTable.display tbody tr:first-child td {
86
- border-top: none
87
- }
88
-
89
- table.dataTable.cell-border tbody th,
90
- table.dataTable.cell-border tbody td {
91
- border-top: 1px solid #ddd;
92
- border-right: 1px solid #ddd
93
- }
94
-
95
- table.dataTable.cell-border tbody tr th:first-child,
96
- table.dataTable.cell-border tbody tr td:first-child {
97
- border-left: 1px solid #ddd
98
- }
99
-
100
- table.dataTable.cell-border tbody tr:first-child th,
101
- table.dataTable.cell-border tbody tr:first-child td {
102
- border-top: none
103
- }
104
-
105
- table.dataTable.stripe tbody tr.odd,
106
- table.dataTable.display tbody tr.odd {
107
- background-color: #f9f9f9
108
- }
109
-
110
- table.dataTable.stripe tbody tr.odd.selected,
111
- table.dataTable.display tbody tr.odd.selected {
112
- background-color: #acbad4
113
- }
114
-
115
- table.dataTable.hover tbody tr:hover,
116
- table.dataTable.display tbody tr:hover {
117
- background-color: #f6f6f6
118
- }
119
-
120
- table.dataTable.hover tbody tr:hover.selected,
121
- table.dataTable.display tbody tr:hover.selected {
122
- background-color: #aab7d1
123
- }
124
-
125
- table.dataTable.order-column tbody tr>.sorting_1,
126
- table.dataTable.order-column tbody tr>.sorting_2,
127
- table.dataTable.order-column tbody tr>.sorting_3,
128
- table.dataTable.display tbody tr>.sorting_1,
129
- table.dataTable.display tbody tr>.sorting_2,
130
- table.dataTable.display tbody tr>.sorting_3 {
131
- background-color: #fafafa
132
- }
133
-
134
- table.dataTable.order-column tbody tr.selected>.sorting_1,
135
- table.dataTable.order-column tbody tr.selected>.sorting_2,
136
- table.dataTable.order-column tbody tr.selected>.sorting_3,
137
- table.dataTable.display tbody tr.selected>.sorting_1,
138
- table.dataTable.display tbody tr.selected>.sorting_2,
139
- table.dataTable.display tbody tr.selected>.sorting_3 {
140
- background-color: #acbad5
141
- }
142
-
143
- table.dataTable.display tbody tr.odd>.sorting_1,
144
- table.dataTable.order-column.stripe tbody tr.odd>.sorting_1 {
145
- background-color: #f1f1f1
146
- }
147
-
148
- table.dataTable.display tbody tr.odd>.sorting_2,
149
- table.dataTable.order-column.stripe tbody tr.odd>.sorting_2 {
150
- background-color: #f3f3f3
151
- }
152
-
153
- table.dataTable.display tbody tr.odd>.sorting_3,
154
- table.dataTable.order-column.stripe tbody tr.odd>.sorting_3 {
155
- background-color: whitesmoke
156
- }
157
-
158
- table.dataTable.display tbody tr.odd.selected>.sorting_1,
159
- table.dataTable.order-column.stripe tbody tr.odd.selected>.sorting_1 {
160
- background-color: #a6b4cd
161
- }
162
-
163
- table.dataTable.display tbody tr.odd.selected>.sorting_2,
164
- table.dataTable.order-column.stripe tbody tr.odd.selected>.sorting_2 {
165
- background-color: #a8b5cf
166
- }
167
-
168
- table.dataTable.display tbody tr.odd.selected>.sorting_3,
169
- table.dataTable.order-column.stripe tbody tr.odd.selected>.sorting_3 {
170
- background-color: #a9b7d1
171
- }
172
-
173
- table.dataTable.display tbody tr.even>.sorting_1,
174
- table.dataTable.order-column.stripe tbody tr.even>.sorting_1 {
175
- background-color: #fafafa
176
- }
177
-
178
- table.dataTable.display tbody tr.even>.sorting_2,
179
- table.dataTable.order-column.stripe tbody tr.even>.sorting_2 {
180
- background-color: #fcfcfc
181
- }
182
-
183
- table.dataTable.display tbody tr.even>.sorting_3,
184
- table.dataTable.order-column.stripe tbody tr.even>.sorting_3 {
185
- background-color: #fefefe
186
- }
187
-
188
- table.dataTable.display tbody tr.even.selected>.sorting_1,
189
- table.dataTable.order-column.stripe tbody tr.even.selected>.sorting_1 {
190
- background-color: #acbad5
191
- }
192
-
193
- table.dataTable.display tbody tr.even.selected>.sorting_2,
194
- table.dataTable.order-column.stripe tbody tr.even.selected>.sorting_2 {
195
- background-color: #aebcd6
196
- }
197
-
198
- table.dataTable.display tbody tr.even.selected>.sorting_3,
199
- table.dataTable.order-column.stripe tbody tr.even.selected>.sorting_3 {
200
- background-color: #afbdd8
201
- }
202
-
203
- table.dataTable.display tbody tr:hover>.sorting_1,
204
- table.dataTable.order-column.hover tbody tr:hover>.sorting_1 {
205
- background-color: #eaeaea
206
- }
207
-
208
- table.dataTable.display tbody tr:hover>.sorting_2,
209
- table.dataTable.order-column.hover tbody tr:hover>.sorting_2 {
210
- background-color: #ececec
211
- }
212
-
213
- table.dataTable.display tbody tr:hover>.sorting_3,
214
- table.dataTable.order-column.hover tbody tr:hover>.sorting_3 {
215
- background-color: #efefef
216
- }
217
-
218
- table.dataTable.display tbody tr:hover.selected>.sorting_1,
219
- table.dataTable.order-column.hover tbody tr:hover.selected>.sorting_1 {
220
- background-color: #a2aec7
221
- }
222
-
223
- table.dataTable.display tbody tr:hover.selected>.sorting_2,
224
- table.dataTable.order-column.hover tbody tr:hover.selected>.sorting_2 {
225
- background-color: #a3b0c9
226
- }
227
-
228
- table.dataTable.display tbody tr:hover.selected>.sorting_3,
229
- table.dataTable.order-column.hover tbody tr:hover.selected>.sorting_3 {
230
- background-color: #a5b2cb
231
- }
232
-
233
- table.dataTable.no-footer {
234
- border-bottom: 1px solid #111
235
- }
236
-
237
- table.dataTable.nowrap th,
238
- table.dataTable.nowrap td {
239
- white-space: nowrap
240
- }
241
-
242
- table.dataTable.compact thead th,
243
- table.dataTable.compact thead td {
244
- padding: 4px 17px 4px 4px
245
- }
246
-
247
- table.dataTable.compact tfoot th,
248
- table.dataTable.compact tfoot td {
249
- padding: 4px
250
- }
251
-
252
- table.dataTable.compact tbody th,
253
- table.dataTable.compact tbody td {
254
- padding: 4px
255
- }
256
-
257
- table.dataTable th.dt-left,
258
- table.dataTable td.dt-left {
259
- text-align: left
260
- }
261
-
262
- table.dataTable th.dt-center,
263
- table.dataTable td.dt-center,
264
- table.dataTable td.dataTables_empty {
265
- text-align: center
266
- }
267
-
268
- table.dataTable th.dt-right,
269
- table.dataTable td.dt-right {
270
- text-align: right
271
- }
272
-
273
- table.dataTable th.dt-justify,
274
- table.dataTable td.dt-justify {
275
- text-align: justify
276
- }
277
-
278
- table.dataTable th.dt-nowrap,
279
- table.dataTable td.dt-nowrap {
280
- white-space: nowrap
281
- }
282
-
283
- table.dataTable thead th.dt-head-left,
284
- table.dataTable thead td.dt-head-left,
285
- table.dataTable tfoot th.dt-head-left,
286
- table.dataTable tfoot td.dt-head-left {
287
- text-align: left
288
- }
289
-
290
- table.dataTable thead th.dt-head-center,
291
- table.dataTable thead td.dt-head-center,
292
- table.dataTable tfoot th.dt-head-center,
293
- table.dataTable tfoot td.dt-head-center {
294
- text-align: center
295
- }
296
-
297
- table.dataTable thead th.dt-head-right,
298
- table.dataTable thead td.dt-head-right,
299
- table.dataTable tfoot th.dt-head-right,
300
- table.dataTable tfoot td.dt-head-right {
301
- text-align: right
302
- }
303
-
304
- table.dataTable thead th.dt-head-justify,
305
- table.dataTable thead td.dt-head-justify,
306
- table.dataTable tfoot th.dt-head-justify,
307
- table.dataTable tfoot td.dt-head-justify {
308
- text-align: justify
309
- }
310
-
311
- table.dataTable thead th.dt-head-nowrap,
312
- table.dataTable thead td.dt-head-nowrap,
313
- table.dataTable tfoot th.dt-head-nowrap,
314
- table.dataTable tfoot td.dt-head-nowrap {
315
- white-space: nowrap
316
- }
317
-
318
- table.dataTable tbody th.dt-body-left,
319
- table.dataTable tbody td.dt-body-left {
320
- text-align: left
321
- }
322
-
323
- table.dataTable tbody th.dt-body-center,
324
- table.dataTable tbody td.dt-body-center {
325
- text-align: center
326
- }
327
-
328
- table.dataTable tbody th.dt-body-right,
329
- table.dataTable tbody td.dt-body-right {
330
- text-align: right
331
- }
332
-
333
- table.dataTable tbody th.dt-body-justify,
334
- table.dataTable tbody td.dt-body-justify {
335
- text-align: justify
336
- }
337
-
338
- table.dataTable tbody th.dt-body-nowrap,
339
- table.dataTable tbody td.dt-body-nowrap {
340
- white-space: nowrap
341
- }
342
-
343
- table.dataTable,
344
- table.dataTable th,
345
- table.dataTable td {
346
- box-sizing: content-box
347
- }
348
-
349
- .dataTables_wrapper {
350
- position: relative;
351
- clear: both;
352
- *zoom: 1;
353
- zoom: 1
354
- }
355
-
356
- .dataTables_wrapper .dataTables_length {
357
- float: left
358
- }
359
-
360
- .dataTables_wrapper .dataTables_filter {
361
- float: right;
362
- text-align: right
363
- }
364
-
365
- .dataTables_wrapper .dataTables_filter input {
366
- margin-left: 0.5em
367
- }
368
-
369
- .dataTables_wrapper .dataTables_info {
370
- clear: both;
371
- float: left;
372
- padding-top: 0.755em
373
- }
374
-
375
- .dataTables_wrapper .dataTables_paginate {
376
- float: right;
377
- text-align: right;
378
- padding-top: 0.25em
379
- }
380
-
381
- .dataTables_wrapper .dataTables_paginate .paginate_button {
382
- box-sizing: border-box;
383
- display: inline-block;
384
- min-width: 1.5em;
385
- padding: 0.5em 1em;
386
- margin-left: 2px;
387
- text-align: center;
388
- text-decoration: none !important;
389
- cursor: pointer;
390
- *cursor: hand;
391
- color: #333 !important;
392
- border: 1px solid transparent;
393
- border-radius: 2px
394
- }
395
-
396
- .dataTables_wrapper .dataTables_paginate .paginate_button.current,
397
- .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
398
- color: #333 !important;
399
- border: 1px solid #979797;
400
- background-color: white;
401
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fff), color-stop(100%, #dcdcdc));
402
- background: -webkit-linear-gradient(top, #fff 0%, #dcdcdc 100%);
403
- background: -moz-linear-gradient(top, #fff 0%, #dcdcdc 100%);
404
- background: -ms-linear-gradient(top, #fff 0%, #dcdcdc 100%);
405
- background: -o-linear-gradient(top, #fff 0%, #dcdcdc 100%);
406
- background: linear-gradient(to bottom, #fff 0%, #dcdcdc 100%)
407
- }
408
-
409
- .dataTables_wrapper .dataTables_paginate .paginate_button.disabled,
410
- .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover,
411
- .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active {
412
- cursor: default;
413
- color: #666 !important;
414
- border: 1px solid transparent;
415
- background: transparent;
416
- box-shadow: none
417
- }
418
-
419
- .dataTables_wrapper .dataTables_paginate .paginate_button:hover {
420
- color: white !important;
421
- border: 1px solid #111;
422
- background-color: #585858;
423
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #585858), color-stop(100%, #111));
424
- background: -webkit-linear-gradient(top, #585858 0%, #111 100%);
425
- background: -moz-linear-gradient(top, #585858 0%, #111 100%);
426
- background: -ms-linear-gradient(top, #585858 0%, #111 100%);
427
- background: -o-linear-gradient(top, #585858 0%, #111 100%);
428
- background: linear-gradient(to bottom, #585858 0%, #111 100%)
429
- }
430
-
431
- .dataTables_wrapper .dataTables_paginate .paginate_button:active {
432
- outline: none;
433
- background-color: #2b2b2b;
434
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #2b2b2b), color-stop(100%, #0c0c0c));
435
- background: -webkit-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);
436
- background: -moz-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);
437
- background: -ms-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);
438
- background: -o-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);
439
- background: linear-gradient(to bottom, #2b2b2b 0%, #0c0c0c 100%);
440
- box-shadow: inset 0 0 3px #111
441
- }
442
-
443
- .dataTables_wrapper .dataTables_paginate .ellipsis {
444
- padding: 0 1em
445
- }
446
-
447
- .dataTables_wrapper .dataTables_processing {
448
- position: absolute;
449
- top: 50%;
450
- left: 50%;
451
- width: 100%;
452
- height: 40px;
453
- margin-left: -50%;
454
- margin-top: -25px;
455
- padding-top: 20px;
456
- text-align: center;
457
- font-size: 1.2em;
458
- background-color: white;
459
- background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(25%, rgba(255, 255, 255, 0.9)), color-stop(75%, rgba(255, 255, 255, 0.9)), color-stop(100%, rgba(255, 255, 255, 0)));
460
- background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.9) 75%, rgba(255, 255, 255, 0) 100%);
461
- background: -moz-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.9) 75%, rgba(255, 255, 255, 0) 100%);
462
- background: -ms-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.9) 75%, rgba(255, 255, 255, 0) 100%);
463
- background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.9) 75%, rgba(255, 255, 255, 0) 100%);
464
- background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.9) 75%, rgba(255, 255, 255, 0) 100%)
465
- }
466
-
467
- .dataTables_wrapper .dataTables_length,
468
- .dataTables_wrapper .dataTables_filter,
469
- .dataTables_wrapper .dataTables_info,
470
- .dataTables_wrapper .dataTables_processing,
471
- .dataTables_wrapper .dataTables_paginate {
472
- color: #333
473
- }
474
-
475
- .dataTables_wrapper .dataTables_scroll {
476
- clear: both
477
- }
478
-
479
- .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody {
480
- *margin-top: -1px;
481
- -webkit-overflow-scrolling: touch
482
- }
483
-
484
- .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>thead>tr>th,
485
- .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>thead>tr>td,
486
- .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>tbody>tr>th,
487
- .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>tbody>tr>td {
488
- vertical-align: middle
489
- }
490
-
491
- .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>thead>tr>th>div.dataTables_sizing,
492
- .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>thead>tr>td>div.dataTables_sizing,
493
- .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>tbody>tr>th>div.dataTables_sizing,
494
- .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>tbody>tr>td>div.dataTables_sizing {
495
- height: 0;
496
- overflow: hidden;
497
- margin: 0 !important;
498
- padding: 0 !important
499
- }
500
-
501
- .dataTables_wrapper.no-footer .dataTables_scrollBody {
502
- border-bottom: 1px solid #111
503
- }
504
-
505
- .dataTables_wrapper.no-footer div.dataTables_scrollHead table.dataTable,
506
- .dataTables_wrapper.no-footer div.dataTables_scrollBody>table {
507
- border-bottom: none
508
- }
509
-
510
- .dataTables_wrapper:after {
511
- visibility: hidden;
512
- display: block;
513
- content: "";
514
- clear: both;
515
- height: 0
516
- }
517
-
518
- @media screen and (max-width: 767px) {
519
-
520
- .dataTables_wrapper .dataTables_info,
521
- .dataTables_wrapper .dataTables_paginate {
522
- float: none;
523
- text-align: center
524
- }
525
-
526
- .dataTables_wrapper .dataTables_paginate {
527
- margin-top: 0.5em
528
- }
529
- }
530
-
531
- @media screen and (max-width: 640px) {
532
-
533
- .dataTables_wrapper .dataTables_length,
534
- .dataTables_wrapper .dataTables_filter {
535
- float: none;
536
- text-align: center
537
- }
538
-
539
- .dataTables_wrapper .dataTables_filter {
540
- margin-top: 0.5em
541
- }
542
- }
1
+ table.dataTable{width:100%;margin:0 auto;clear:both;border-collapse:separate;border-spacing:0}table.dataTable thead th,table.dataTable tfoot th{font-weight:bold}table.dataTable thead th,table.dataTable thead td{padding:10px 18px;border-bottom:1px solid #111}table.dataTable thead th:active,table.dataTable thead td:active{outline:none}table.dataTable tfoot th,table.dataTable tfoot td{padding:10px 18px 6px 18px;border-top:1px solid #111}table.dataTable thead .sorting,table.dataTable thead .sorting_asc,table.dataTable thead .sorting_desc,table.dataTable thead .sorting_asc_disabled,table.dataTable thead .sorting_desc_disabled{cursor:pointer;*cursor:hand;background-repeat:no-repeat;background-position:center right}table.dataTable thead .sorting{background-image:url("../images/sort_both.png")}table.dataTable thead .sorting_asc{background-image:url("../images/sort_asc.png")}table.dataTable thead .sorting_desc{background-image:url("../images/sort_desc.png")}table.dataTable thead .sorting_asc_disabled{background-image:url("../images/sort_asc_disabled.png")}table.dataTable thead .sorting_desc_disabled{background-image:url("../images/sort_desc_disabled.png")}table.dataTable tbody tr{background-color:#ffffff}table.dataTable tbody tr.selected{background-color:#B0BED9}table.dataTable tbody th,table.dataTable tbody td{padding:8px 10px}table.dataTable.row-border tbody th,table.dataTable.row-border tbody td,table.dataTable.display tbody th,table.dataTable.display tbody td{border-top:1px solid #ddd}table.dataTable.row-border tbody tr:first-child th,table.dataTable.row-border tbody tr:first-child td,table.dataTable.display tbody tr:first-child th,table.dataTable.display tbody tr:first-child td{border-top:none}table.dataTable.cell-border tbody th,table.dataTable.cell-border tbody td{border-top:1px solid #ddd;border-right:1px solid #ddd}table.dataTable.cell-border tbody tr th:first-child,table.dataTable.cell-border tbody tr td:first-child{border-left:1px solid #ddd}table.dataTable.cell-border tbody tr:first-child th,table.dataTable.cell-border tbody tr:first-child td{border-top:none}table.dataTable.stripe tbody tr.odd,table.dataTable.display tbody tr.odd{background-color:#f9f9f9}table.dataTable.stripe tbody tr.odd.selected,table.dataTable.display tbody tr.odd.selected{background-color:#acbad4}table.dataTable.hover tbody tr:hover,table.dataTable.display tbody tr:hover{background-color:#f6f6f6}table.dataTable.hover tbody tr:hover.selected,table.dataTable.display tbody tr:hover.selected{background-color:#aab7d1}table.dataTable.order-column tbody tr>.sorting_1,table.dataTable.order-column tbody tr>.sorting_2,table.dataTable.order-column tbody tr>.sorting_3,table.dataTable.display tbody tr>.sorting_1,table.dataTable.display tbody tr>.sorting_2,table.dataTable.display tbody tr>.sorting_3{background-color:#fafafa}table.dataTable.order-column tbody tr.selected>.sorting_1,table.dataTable.order-column tbody tr.selected>.sorting_2,table.dataTable.order-column tbody tr.selected>.sorting_3,table.dataTable.display tbody tr.selected>.sorting_1,table.dataTable.display tbody tr.selected>.sorting_2,table.dataTable.display tbody tr.selected>.sorting_3{background-color:#acbad5}table.dataTable.display tbody tr.odd>.sorting_1,table.dataTable.order-column.stripe tbody tr.odd>.sorting_1{background-color:#f1f1f1}table.dataTable.display tbody tr.odd>.sorting_2,table.dataTable.order-column.stripe tbody tr.odd>.sorting_2{background-color:#f3f3f3}table.dataTable.display tbody tr.odd>.sorting_3,table.dataTable.order-column.stripe tbody tr.odd>.sorting_3{background-color:whitesmoke}table.dataTable.display tbody tr.odd.selected>.sorting_1,table.dataTable.order-column.stripe tbody tr.odd.selected>.sorting_1{background-color:#a6b4cd}table.dataTable.display tbody tr.odd.selected>.sorting_2,table.dataTable.order-column.stripe tbody tr.odd.selected>.sorting_2{background-color:#a8b5cf}table.dataTable.display tbody tr.odd.selected>.sorting_3,table.dataTable.order-column.stripe tbody tr.odd.selected>.sorting_3{background-color:#a9b7d1}table.dataTable.display tbody tr.even>.sorting_1,table.dataTable.order-column.stripe tbody tr.even>.sorting_1{background-color:#fafafa}table.dataTable.display tbody tr.even>.sorting_2,table.dataTable.order-column.stripe tbody tr.even>.sorting_2{background-color:#fcfcfc}table.dataTable.display tbody tr.even>.sorting_3,table.dataTable.order-column.stripe tbody tr.even>.sorting_3{background-color:#fefefe}table.dataTable.display tbody tr.even.selected>.sorting_1,table.dataTable.order-column.stripe tbody tr.even.selected>.sorting_1{background-color:#acbad5}table.dataTable.display tbody tr.even.selected>.sorting_2,table.dataTable.order-column.stripe tbody tr.even.selected>.sorting_2{background-color:#aebcd6}table.dataTable.display tbody tr.even.selected>.sorting_3,table.dataTable.order-column.stripe tbody tr.even.selected>.sorting_3{background-color:#afbdd8}table.dataTable.display tbody tr:hover>.sorting_1,table.dataTable.order-column.hover tbody tr:hover>.sorting_1{background-color:#eaeaea}table.dataTable.display tbody tr:hover>.sorting_2,table.dataTable.order-column.hover tbody tr:hover>.sorting_2{background-color:#ececec}table.dataTable.display tbody tr:hover>.sorting_3,table.dataTable.order-column.hover tbody tr:hover>.sorting_3{background-color:#efefef}table.dataTable.display tbody tr:hover.selected>.sorting_1,table.dataTable.order-column.hover tbody tr:hover.selected>.sorting_1{background-color:#a2aec7}table.dataTable.display tbody tr:hover.selected>.sorting_2,table.dataTable.order-column.hover tbody tr:hover.selected>.sorting_2{background-color:#a3b0c9}table.dataTable.display tbody tr:hover.selected>.sorting_3,table.dataTable.order-column.hover tbody tr:hover.selected>.sorting_3{background-color:#a5b2cb}table.dataTable.no-footer{border-bottom:1px solid #111}table.dataTable.nowrap th,table.dataTable.nowrap td{white-space:nowrap}table.dataTable.compact thead th,table.dataTable.compact thead td{padding:4px 17px}table.dataTable.compact tfoot th,table.dataTable.compact tfoot td{padding:4px}table.dataTable.compact tbody th,table.dataTable.compact tbody td{padding:4px}table.dataTable th.dt-left,table.dataTable td.dt-left{text-align:left}table.dataTable th.dt-center,table.dataTable td.dt-center,table.dataTable td.dataTables_empty{text-align:center}table.dataTable th.dt-right,table.dataTable td.dt-right{text-align:right}table.dataTable th.dt-justify,table.dataTable td.dt-justify{text-align:justify}table.dataTable th.dt-nowrap,table.dataTable td.dt-nowrap{white-space:nowrap}table.dataTable thead th.dt-head-left,table.dataTable thead td.dt-head-left,table.dataTable tfoot th.dt-head-left,table.dataTable tfoot td.dt-head-left{text-align:left}table.dataTable thead th.dt-head-center,table.dataTable thead td.dt-head-center,table.dataTable tfoot th.dt-head-center,table.dataTable tfoot td.dt-head-center{text-align:center}table.dataTable thead th.dt-head-right,table.dataTable thead td.dt-head-right,table.dataTable tfoot th.dt-head-right,table.dataTable tfoot td.dt-head-right{text-align:right}table.dataTable thead th.dt-head-justify,table.dataTable thead td.dt-head-justify,table.dataTable tfoot th.dt-head-justify,table.dataTable tfoot td.dt-head-justify{text-align:justify}table.dataTable thead th.dt-head-nowrap,table.dataTable thead td.dt-head-nowrap,table.dataTable tfoot th.dt-head-nowrap,table.dataTable tfoot td.dt-head-nowrap{white-space:nowrap}table.dataTable tbody th.dt-body-left,table.dataTable tbody td.dt-body-left{text-align:left}table.dataTable tbody th.dt-body-center,table.dataTable tbody td.dt-body-center{text-align:center}table.dataTable tbody th.dt-body-right,table.dataTable tbody td.dt-body-right{text-align:right}table.dataTable tbody th.dt-body-justify,table.dataTable tbody td.dt-body-justify{text-align:justify}table.dataTable tbody th.dt-body-nowrap,table.dataTable tbody td.dt-body-nowrap{white-space:nowrap}table.dataTable,table.dataTable th,table.dataTable td{box-sizing:content-box}.dataTables_wrapper{position:relative;clear:both;*zoom:1;zoom:1}.dataTables_wrapper .dataTables_length{float:left}.dataTables_wrapper .dataTables_filter{float:right;text-align:right}.dataTables_wrapper .dataTables_filter input{margin-left:0.5em}.dataTables_wrapper .dataTables_info{clear:both;float:left;padding-top:0.755em}.dataTables_wrapper .dataTables_paginate{float:right;text-align:right;padding-top:0.25em}.dataTables_wrapper .dataTables_paginate .paginate_button{box-sizing:border-box;display:inline-block;min-width:1.5em;padding:0.5em 1em;margin-left:2px;text-align:center;text-decoration:none !important;cursor:pointer;*cursor:hand;color:#333 !important;border:1px solid transparent;border-radius:2px}.dataTables_wrapper .dataTables_paginate .paginate_button.current,.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover{color:#333 !important;border:1px solid #979797;background-color:white;background:-webkit-gradient(linear, left top, left bottom, color-stop(0%, #fff), color-stop(100%, #dcdcdc));background:-webkit-linear-gradient(top, #fff 0%, #dcdcdc 100%);background:-moz-linear-gradient(top, #fff 0%, #dcdcdc 100%);background:-ms-linear-gradient(top, #fff 0%, #dcdcdc 100%);background:-o-linear-gradient(top, #fff 0%, #dcdcdc 100%);background:linear-gradient(to bottom, #fff 0%, #dcdcdc 100%)}.dataTables_wrapper .dataTables_paginate .paginate_button.disabled,.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover,.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active{cursor:default;color:#666 !important;border:1px solid transparent;background:transparent;box-shadow:none}.dataTables_wrapper .dataTables_paginate .paginate_button:hover{color:white !important;border:1px solid #111;background-color:#585858;background:-webkit-gradient(linear, left top, left bottom, color-stop(0%, #585858), color-stop(100%, #111));background:-webkit-linear-gradient(top, #585858 0%, #111 100%);background:-moz-linear-gradient(top, #585858 0%, #111 100%);background:-ms-linear-gradient(top, #585858 0%, #111 100%);background:-o-linear-gradient(top, #585858 0%, #111 100%);background:linear-gradient(to bottom, #585858 0%, #111 100%)}.dataTables_wrapper .dataTables_paginate .paginate_button:active{outline:none;background-color:#2b2b2b;background:-webkit-gradient(linear, left top, left bottom, color-stop(0%, #2b2b2b), color-stop(100%, #0c0c0c));background:-webkit-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);background:-moz-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);background:-ms-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);background:-o-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);background:linear-gradient(to bottom, #2b2b2b 0%, #0c0c0c 100%);box-shadow:inset 0 0 3px #111}.dataTables_wrapper .dataTables_paginate .ellipsis{padding:0 1em}.dataTables_wrapper .dataTables_processing{position:absolute;top:50%;left:50%;width:100%;height:40px;margin-left:-50%;margin-top:-25px;padding-top:20px;text-align:center;font-size:1.2em;background-color:white;background:-webkit-gradient(linear, left top, right top, color-stop(0%, rgba(255,255,255,0)), color-stop(25%, rgba(255,255,255,0.9)), color-stop(75%, rgba(255,255,255,0.9)), color-stop(100%, rgba(255,255,255,0)));background:-webkit-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 25%, rgba(255,255,255,0.9) 75%, rgba(255,255,255,0) 100%);background:-moz-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 25%, rgba(255,255,255,0.9) 75%, rgba(255,255,255,0) 100%);background:-ms-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 25%, rgba(255,255,255,0.9) 75%, rgba(255,255,255,0) 100%);background:-o-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 25%, rgba(255,255,255,0.9) 75%, rgba(255,255,255,0) 100%);background:linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 25%, rgba(255,255,255,0.9) 75%, rgba(255,255,255,0) 100%)}.dataTables_wrapper .dataTables_length,.dataTables_wrapper .dataTables_filter,.dataTables_wrapper .dataTables_info,.dataTables_wrapper .dataTables_processing,.dataTables_wrapper .dataTables_paginate{color:#333}.dataTables_wrapper .dataTables_scroll{clear:both}.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody{*margin-top:-1px;-webkit-overflow-scrolling:touch}.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>thead>tr>th,.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>thead>tr>td,.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>tbody>tr>th,.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>tbody>tr>td{vertical-align:middle}.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>thead>tr>th>div.dataTables_sizing,.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>thead>tr>td>div.dataTables_sizing,.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>tbody>tr>th>div.dataTables_sizing,.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>tbody>tr>td>div.dataTables_sizing{height:0;overflow:hidden;margin:0 !important;padding:0 !important}.dataTables_wrapper.no-footer .dataTables_scrollBody{border-bottom:1px solid #111}.dataTables_wrapper.no-footer div.dataTables_scrollHead table.dataTable,.dataTables_wrapper.no-footer div.dataTables_scrollBody>table{border-bottom:none}.dataTables_wrapper:after{visibility:hidden;display:block;content:"";clear:both;height:0}@media screen and (max-width: 767px){.dataTables_wrapper .dataTables_info,.dataTables_wrapper .dataTables_paginate{float:none;text-align:center}.dataTables_wrapper .dataTables_paginate{margin-top:0.5em}}@media screen and (max-width: 640px){.dataTables_wrapper .dataTables_length,.dataTables_wrapper .dataTables_filter{float:none;text-align:center}.dataTables_wrapper .dataTables_filter{margin-top:0.5em}}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
assets/data-protection-authorities.php CHANGED
@@ -1,178 +1,178 @@
1
- <?php return [
2
- 'AT' => [
3
- 'phone' => '+43 1 531 15 202525',
4
- 'email' => 'dsb@dsb.gv.at',
5
- 'website' => 'http://www.dsb.gv.at/',
6
- ],
7
- 'BE' => [
8
- 'phone' => '+32 2 274 48 00',
9
- 'email' => 'commission@privacycommission.be',
10
- 'website' => 'http://www.privacycommission.be/',
11
- ],
12
- 'BG' => [
13
- 'phone' => '+359 2 915 3580',
14
- 'email' => 'kzld@cpdp.bg',
15
- 'website' => 'http://www.cpdp.bg/',
16
- ],
17
- 'HR' => [
18
- 'phone' => '+385 1 4609 000',
19
- 'email' => 'info@azop.hr',
20
- 'website' => 'http://www.azop.hr/',
21
- ],
22
- 'CY' => [
23
- 'phone' => '+357 22 818 456',
24
- 'email' => 'commissioner@dataprotection.gov.cy',
25
- 'website' => 'http://www.dataprotection.gov.cy/',
26
- ],
27
- 'CZ' => [
28
- 'phone' => '+420 234 665 111',
29
- 'email' => 'posta@uoou.cz',
30
- 'website' => 'http://www.uoou.cz/',
31
- ],
32
- 'DK' => [
33
- 'phone' => '+45 33 1932 00',
34
- 'email' => 'dt@datatilsynet.dk',
35
- 'website' => 'http://www.datatilsynet.dk/',
36
- ],
37
- 'EE' => [
38
- 'phone' => '+372 6274 135',
39
- 'email' => 'info@aki.ee',
40
- 'website' => 'http://www.aki.ee/en',
41
- ],
42
- 'FI' => [
43
- 'phone' => '+358 10 3666 700',
44
- 'email' => 'tietosuoja@om.fi',
45
- 'website' => 'http://www.tietosuoja.fi/en/',
46
- ],
47
- 'FR' => [
48
- 'phone' => ' +33 1 53 73 22 22',
49
- 'email' => '',
50
- 'website' => 'http://www.cnil.fr/',
51
- ],
52
- 'DE' => [
53
- 'phone' => '+49 228 997799 0',
54
- 'email' => 'poststelle@bfdi.bund.de',
55
- 'website' => 'http://www.bfdi.bund.de/',
56
- ],
57
- 'GR' => [
58
- 'phone' => '+30 210 6475 600',
59
- 'email' => 'contact@dpa.gr',
60
- 'website' => 'http://www.dpa.gr/',
61
- ],
62
- 'HU' => [
63
- 'phone' => '+36 1 3911 400',
64
- 'email' => 'peterfalvi.attila@naih.hu',
65
- 'website' => 'http://www.naih.hu/',
66
- ],
67
- 'IE' => [
68
- 'phone' => '+353 57 868 4800',
69
- 'email' => 'info@dataprotection.ie',
70
- 'website' => 'https://www.dataprotection.ie/',
71
- ],
72
- 'IT' => [
73
- 'phone' => '+39 06 69677 1',
74
- 'email' => 'garante@garanteprivacy.it',
75
- 'website' => 'http://www.garanteprivacy.it/',
76
- ],
77
- 'LV' => [
78
- 'phone' => '+371 6722 3131',
79
- 'email' => 'info@dvi.gov.lv',
80
- 'website' => 'http://www.dvi.gov.lv/',
81
- ],
82
- 'LT' => [
83
- 'phone' => '+370 5 279 14 45 ',
84
- 'email' => 'ada@ada.lt',
85
- 'website' => 'http://www.ada.lt/',
86
- ],
87
- 'LU' => [
88
- 'phone' => '+352 2610 60 1',
89
- 'email' => 'info@cnpd.lu',
90
- 'website' => 'http://www.cnpd.lu/',
91
- ],
92
- 'MT' => [
93
- 'phone' => '+356 2328 7100',
94
- 'email' => 'commissioner.dataprotection@gov.mt',
95
- 'website' => 'http://www.dataprotection.gov.mt/',
96
- ],
97
- 'NL' => [
98
- 'phone' => '+31 70 888 8500',
99
- 'email' => 'info@autoriteitpersoonsgegevens.nl',
100
- 'website' => 'https://autoriteitpersoonsgegevens.nl/nl',
101
- ],
102
- 'PL' => [
103
- 'phone' => '+48 22 53 10 440',
104
- 'email' => 'kancelaria@giodo.gov.pl',
105
- 'website' => 'http://www.giodo.gov.pl/',
106
- ],
107
- 'PT' => [
108
- 'phone' => '+351 21 392 84 00',
109
- 'email' => 'geral@cnpd.pt',
110
- 'website' => 'http://www.cnpd.pt/',
111
- ],
112
- 'RO' => [
113
- 'phone' => '+40 21 252 5599',
114
- 'email' => 'anspdcp@dataprotection.ro',
115
- 'website' => 'http://www.dataprotection.ro/',
116
- ],
117
- 'SK' => [
118
- 'phone' => '+421 2 32 31 32 14',
119
- 'email' => 'statny.dozor@pdp.gov.sk',
120
- 'website' => 'http://www.dataprotection.gov.sk/',
121
- ],
122
- 'SI' => [
123
- 'phone' => '+386 1 230 9730',
124
- 'email' => 'gp.ip@ip-rs.si',
125
- 'website' => 'https://www.ip-rs.si/',
126
- ],
127
- 'ES' => [
128
- 'phone' => '+34 91399 6200',
129
- 'email' => 'internacional@agpd.es',
130
- 'website' => 'https://www.agpd.es/',
131
- ],
132
- 'SE' => [
133
- 'phone' => '+46 8 657 6100',
134
- 'email' => 'datainspektionen@datainspektionen.se',
135
- 'website' => 'http://www.datainspektionen.se/',
136
- ],
137
- 'UK' => [
138
- 'phone' => '+44 1625 545 745 ',
139
- 'email' => 'international.team@ico.org.uk ',
140
- 'website' => 'https://ico.org.uk',
141
- ],
142
-
143
- /* EFTA countries */
144
-
145
- 'IS' => [
146
- 'phone' => '+354 510 9600',
147
- 'email' => 'postur@personuvernd.is',
148
- 'website' => 'http://personuvernd.is/',
149
- ],
150
- 'LI' => [
151
- 'phone' => '+423 236 6090',
152
- 'email' => 'info.dss@llv.li',
153
- 'website' => 'http://www.dss.llv.li/',
154
- ],
155
- 'NO' => [
156
- 'phone' => '+47 22 39 69 00',
157
- 'email' => 'postkasse@datatilsynet.no',
158
- 'website' => 'http://www.datatilsynet.no/',
159
- ],
160
- 'CH' => [
161
- 'phone' => '+41 31 322 4395',
162
- 'email' => 'contact20@edoeb.admin.ch',
163
- 'website' => 'http://www.edoeb.admin.ch/',
164
- ],
165
-
166
- /* Others - default to Ireland */
167
-
168
- 'US' => [
169
- 'phone' => '+353 57 868 4800',
170
- 'email' => 'info@dataprotection.ie',
171
- 'website' => 'https://www.dataprotection.ie/',
172
- ],
173
- 'other' => [
174
- 'phone' => '+353 57 868 4800',
175
- 'email' => 'info@dataprotection.ie',
176
- 'website' => 'https://www.dataprotection.ie/',
177
- ],
178
- ];
1
+ <?php return [
2
+ 'AT' => [
3
+ 'phone' => '+43 1 531 15 202525',
4
+ 'email' => 'dsb@dsb.gv.at',
5
+ 'website' => 'http://www.dsb.gv.at/',
6
+ ],
7
+ 'BE' => [
8
+ 'phone' => '+32 2 274 48 00',
9
+ 'email' => 'commission@privacycommission.be',
10
+ 'website' => 'http://www.privacycommission.be/',
11
+ ],
12
+ 'BG' => [
13
+ 'phone' => '+359 2 915 3580',
14
+ 'email' => 'kzld@cpdp.bg',
15
+ 'website' => 'http://www.cpdp.bg/',
16
+ ],
17
+ 'HR' => [
18
+ 'phone' => '+385 1 4609 000',
19
+ 'email' => 'info@azop.hr',
20
+ 'website' => 'http://www.azop.hr/',
21
+ ],
22
+ 'CY' => [
23
+ 'phone' => '+357 22 818 456',
24
+ 'email' => 'commissioner@dataprotection.gov.cy',
25
+ 'website' => 'http://www.dataprotection.gov.cy/',
26
+ ],
27
+ 'CZ' => [
28
+ 'phone' => '+420 234 665 111',
29
+ 'email' => 'posta@uoou.cz',
30
+ 'website' => 'http://www.uoou.cz/',
31
+ ],
32
+ 'DK' => [
33
+ 'phone' => '+45 33 1932 00',
34
+ 'email' => 'dt@datatilsynet.dk',
35
+ 'website' => 'http://www.datatilsynet.dk/',
36
+ ],
37
+ 'EE' => [
38
+ 'phone' => '+372 6274 135',
39
+ 'email' => 'info@aki.ee',
40
+ 'website' => 'http://www.aki.ee/en',
41
+ ],
42
+ 'FI' => [
43
+ 'phone' => '+358 10 3666 700',
44
+ 'email' => 'tietosuoja@om.fi',
45
+ 'website' => 'http://www.tietosuoja.fi/en/',
46
+ ],
47
+ 'FR' => [
48
+ 'phone' => ' +33 1 53 73 22 22',
49
+ 'email' => '',
50
+ 'website' => 'http://www.cnil.fr/',
51
+ ],
52
+ 'DE' => [
53
+ 'phone' => '+49 228 997799 0',
54
+ 'email' => 'poststelle@bfdi.bund.de',
55
+ 'website' => 'http://www.bfdi.bund.de/',
56
+ ],
57
+ 'GR' => [
58
+ 'phone' => '+30 210 6475 600',
59
+ 'email' => 'contact@dpa.gr',
60
+ 'website' => 'http://www.dpa.gr/',
61
+ ],
62
+ 'HU' => [
63
+ 'phone' => '+36 1 3911 400',
64
+ 'email' => 'peterfalvi.attila@naih.hu',
65
+ 'website' => 'http://www.naih.hu/',
66
+ ],
67
+ 'IE' => [
68
+ 'phone' => '+353 57 868 4800',
69
+ 'email' => 'info@dataprotection.ie',
70
+ 'website' => 'https://www.dataprotection.ie/',
71
+ ],
72
+ 'IT' => [
73
+ 'phone' => '+39 06 69677 1',
74
+ 'email' => 'garante@garanteprivacy.it',
75
+ 'website' => 'http://www.garanteprivacy.it/',
76
+ ],
77
+ 'LV' => [
78
+ 'phone' => '+371 6722 3131',
79
+ 'email' => 'info@dvi.gov.lv',
80
+ 'website' => 'http://www.dvi.gov.lv/',
81
+ ],
82
+ 'LT' => [
83
+ 'phone' => '+370 5 279 14 45 ',
84
+ 'email' => 'ada@ada.lt',
85
+ 'website' => 'http://www.ada.lt/',
86
+ ],
87
+ 'LU' => [
88
+ 'phone' => '+352 2610 60 1',
89
+ 'email' => 'info@cnpd.lu',
90
+ 'website' => 'http://www.cnpd.lu/',
91
+ ],
92
+ 'MT' => [
93
+ 'phone' => '+356 2328 7100',
94
+ 'email' => 'commissioner.dataprotection@gov.mt',
95
+ 'website' => 'http://www.dataprotection.gov.mt/',
96
+ ],
97
+ 'NL' => [
98
+ 'phone' => '+31 70 888 8500',
99
+ 'email' => 'info@autoriteitpersoonsgegevens.nl',
100
+ 'website' => 'https://autoriteitpersoonsgegevens.nl/nl',
101
+ ],
102
+ 'PL' => [
103
+ 'phone' => '+48 22 53 10 440',
104
+ 'email' => 'kancelaria@giodo.gov.pl',
105
+ 'website' => 'http://www.giodo.gov.pl/',
106
+ ],
107
+ 'PT' => [
108
+ 'phone' => '+351 21 392 84 00',
109
+ 'email' => 'geral@cnpd.pt',
110
+ 'website' => 'http://www.cnpd.pt/',
111
+ ],
112
+ 'RO' => [
113
+ 'phone' => '+40 21 252 5599',
114
+ 'email' => 'anspdcp@dataprotection.ro',
115
+ 'website' => 'http://www.dataprotection.ro/',
116
+ ],
117
+ 'SK' => [
118
+ 'phone' => '+421 2 32 31 32 14',
119
+ 'email' => 'statny.dozor@pdp.gov.sk',
120
+ 'website' => 'http://www.dataprotection.gov.sk/',
121
+ ],
122
+ 'SI' => [
123
+ 'phone' => '+386 1 230 9730',
124
+ 'email' => 'gp.ip@ip-rs.si',
125
+ 'website' => 'https://www.ip-rs.si/',
126
+ ],
127
+ 'ES' => [
128
+ 'phone' => '+34 91399 6200',
129
+ 'email' => 'internacional@agpd.es',
130
+ 'website' => 'https://www.agpd.es/',
131
+ ],
132
+ 'SE' => [
133
+ 'phone' => '+46 8 657 6100',
134
+ 'email' => 'datainspektionen@datainspektionen.se',
135
+ 'website' => 'http://www.datainspektionen.se/',
136
+ ],
137
+ 'UK' => [
138
+ 'phone' => '+44 1625 545 745 ',
139
+ 'email' => 'international.team@ico.org.uk ',
140
+ 'website' => 'https://ico.org.uk',
141
+ ],
142
+
143
+ /* EFTA countries */
144
+
145
+ 'IS' => [
146
+ 'phone' => '+354 510 9600',
147
+ 'email' => 'postur@personuvernd.is',
148
+ 'website' => 'http://personuvernd.is/',
149
+ ],
150
+ 'LI' => [
151
+ 'phone' => '+423 236 6090',
152
+ 'email' => 'info.dss@llv.li',
153
+ 'website' => 'http://www.dss.llv.li/',
154
+ ],
155
+ 'NO' => [
156
+ 'phone' => '+47 22 39 69 00',
157
+ 'email' => 'postkasse@datatilsynet.no',
158
+ 'website' => 'http://www.datatilsynet.no/',
159
+ ],
160
+ 'CH' => [
161
+ 'phone' => '+41 31 322 4395',
162
+ 'email' => 'contact20@edoeb.admin.ch',
163
+ 'website' => 'http://www.edoeb.admin.ch/',
164
+ ],
165
+
166
+ /* Others - default to Ireland */
167
+
168
+ 'US' => [
169
+ 'phone' => '+353 57 868 4800',
170
+ 'email' => 'info@dataprotection.ie',
171
+ 'website' => 'https://www.dataprotection.ie/',
172
+ ],
173
+ 'other' => [
174
+ 'phone' => '+353 57 868 4800',
175
+ 'email' => 'info@dataprotection.ie',
176
+ 'website' => 'https://www.dataprotection.ie/',
177
+ ],
178
+ ];
assets/gdpr-admin.css CHANGED
@@ -1,414 +1,414 @@
1
- /** fix for Gutenberg Editor **/
2
- .components-notice-list{
3
- display:none;
4
- }
5
- /** Admin notice **/
6
- .notice-gdpr {
7
- border-left-color: #0095a8;
8
- overflow: hidden;
9
- display:block;
10
- }
11
-
12
- .notice-gdpr img {
13
- width: 100px;
14
- margin: 25px 0;
15
- float: left;
16
- display:block;
17
-
18
- }
19
-
20
- .notice-gdpr .gdpr-content {
21
- float: left;
22
- width: calc(100% - 120px);
23
- padding-left: 20px;
24
- padding-bottom: 15px;
25
- display:block;
26
- }
27
- .large-cf7-select {
28
- width: 100%;
29
- }
30
-
31
- /** Modal window **/
32
- .gdpr-modal {
33
- max-width: 1200px;
34
- }
35
-
36
- .gdpr-modal li {
37
- list-style-type: disc;
38
- margin-left: 20px;
39
- }
40
-
41
- .gdpr-modal-footer {
42
- background: #fcfcfc;
43
- border-top: 1px solid #dfdfdf;
44
- padding: 10px 0;
45
- }
46
-
47
- /** General **/
48
- .gdpr-framework-wrap table {
49
- table-layout: fixed;
50
- border-spacing: 0;
51
- }
52
-
53
- .gdpr-framework-wrap input {
54
- margin: 0;
55
- }
56
-
57
- .gdpr-framework-wrap .gdpr-select {
58
- width: 300px;
59
- max-width: 90%;
60
- height: 32px;
61
- border-color: #ddd;
62
- background-color: #fff;
63
- border: 1px solid #aaa;
64
- border-radius: 4px;
65
- box-sizing: border-box;
66
- cursor: pointer;
67
- display: block;
68
- padding: 0 6px;
69
- color: #666;
70
- }
71
-
72
- .gdpr-framework-wrap .select2-container {
73
- display: block;
74
- width: 300px;
75
- max-width: 100%;
76
-
77
- }
78
-
79
- .gdpr-framework-wrap .select2-container--default .select2-selection--single .select2-selection__arrow,
80
- .gdpr-framework-wrap .select2-container--default .select2-selection--single {
81
- height: 32px !important;
82
- }
83
-
84
- .gdpr-framework-wrap .select2-container--default .select2-selection--single .select2-selection__arrow b {
85
- border-width: 6px 3px 0 3px;
86
- margin-left: -2px;
87
- margin-top: -3px;
88
- border-color: #666 transparent transparent transparent;
89
- }
90
-
91
- .gdpr-framework-wrap .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
92
- border-color: transparent transparent #666 transparent;
93
- border-width: 0 3px 6px 3px;
94
- }
95
-
96
- .gdpr-framework-wrap input {
97
- border-radius: 4px;
98
- border: 1px solid #aaa;
99
- box-shadow: none;
100
- height: 32px;
101
- line-height: 28px;
102
- min-width: 300px;
103
- max-width: 100%;
104
- }
105
-
106
- .gdpr-framework-wrap textarea {
107
- border-radius: 4px;
108
- border: 1px solid #aaa;
109
- box-shadow: none;
110
- line-height: 28px;
111
- }
112
-
113
- .gdpr-framework-wrap .select2-container input {
114
- min-width: 0;
115
- }
116
-
117
- .gdpr-framework-wrap input[type=checkbox] {
118
- line-height: initial;
119
- height: 16px;
120
- min-width: 0;
121
- }
122
-
123
- .gdpr-framework-wrap input[type=submit] {
124
- min-width: 0;
125
- }
126
-
127
- .gdpr-framework-wrap input[type=button] {
128
- min-width: 0;
129
- }
130
-
131
- .gdpr-framework-wrap .wp-editor-wrap {
132
- width: 720px;
133
- max-width: 100%;
134
- }
135
-
136
- .gdpr-framework-wrap .nav-tab-highlight {
137
- background: #ffa200;
138
- color: #fff;
139
- font-weight: 700;
140
- border-bottom: 1px solid #ccc;
141
- }
142
-
143
- .gdpr-framework-wrap .nav-tab-highlight:hover {
144
- background: #ffc35c;
145
- color: #fff;
146
- }
147
-
148
- .gdpr-framework-wrap .nav-tab-highlight:focus {
149
- box-shadow: 0 0 2px 1px #5b9cd9;
150
- }
151
-
152
- /* Consent tables */
153
- .gdpr-framework-wrap .gdpr-consent,
154
- .gdpr-framework-wrap .gdpr-consent-admin {
155
- table-layout: auto;
156
- }
157
-
158
- .gdpr-consent-user {
159
- border-collapse: collapse;
160
- }
161
-
162
- .gdpr-consent-user th {
163
- padding-bottom: 10px;
164
- }
165
-
166
- .gdpr-consent-user td,
167
- .gdpr-consent-user th {
168
- border: 1px solid #ccc;
169
- }
170
-
171
- .gdpr-consent-user tr:first-child th {
172
- border: 0;
173
- }
174
-
175
- .gdpr-consent th {
176
- text-align: left;
177
- }
178
-
179
- .gdpr-consent td {
180
- padding-right: 16px;
181
- }
182
-
183
- .gdpr-consent-admin th {
184
- text-align: left;
185
- padding-bottom: 16px;
186
- }
187
-
188
- .gdpr-consent-admin + .button {
189
- margin-top: 16px;
190
- }
191
-
192
- .gdpr-consent-admin td {
193
- padding-right: 16px;
194
- vertical-align: top;
195
- padding-bottom: 20px;
196
- }
197
-
198
- .gdpr-framework-wrap .gdpr-consent-admin input {
199
- min-width: 0;
200
- }
201
-
202
- .gdpr-consent-table-desc {
203
- width: 450px;
204
- }
205
-
206
- .gdpr-consent-table-input {
207
- width: 200px;
208
- }
209
-
210
- .gdpr-consent-table-input input {
211
- width: 100%;
212
- }
213
-
214
- .gdpr-consent-table-desc textarea {
215
- width: 100%;
216
- min-height: 100px;
217
- }
218
-
219
- .gdpr-consent-add-button {
220
- text-align: right;
221
- width: 1051px;
222
- }
223
-
224
- .gdpr-consent-user {
225
- table-layout: auto;
226
- }
227
-
228
- .gdpr-consent-user td {
229
- padding: 15px;
230
- }
231
-
232
- .gdpr-consent-user-title {
233
- width: 200px;
234
- }
235
-
236
- .gdpr-consent-user-desc {
237
- width: 450px;
238
- }
239
-
240
- /* support page */
241
- .gdpr-framework-wrap .align-center {
242
- text-align: center;
243
- }
244
-
245
- .gdpr-framework-wrap .section {
246
- margin: 25px auto;
247
- max-width: 720px;
248
- }
249
-
250
- .gdpr-framework-wrap .row {
251
- box-sizing: border-box;
252
- display: -webkit-box;
253
- display: -ms-flexbox;
254
- display: flex;
255
- -ms-flex-wrap: wrap;
256
- flex-wrap: wrap;
257
- margin-right: -8px;
258
- margin-left: -8px;
259
- -webkit-box-pack: center !important;
260
- -ms-flex-pack: center !important;
261
- justify-content: center !important;
262
- }
263
-
264
- .gdpr-framework-wrap .col {
265
- box-sizing: border-box;
266
- position: relative;
267
- width: 100%;
268
- min-height: 1px;
269
- padding-right: 8px;
270
- padding-left: 8px;
271
- margin-bottom: 15px;
272
- }
273
-
274
- @media (min-width: 576px) {
275
- .gdpr-framework-wrap .col {
276
- -webkit-box-flex: 0;
277
- -ms-flex: 0 0 50%;
278
- flex: 0 0 50%;
279
- max-width: 50%;
280
- }
281
- }
282
-
283
- @media (min-width: 768px) {
284
- .gdpr-framework-wrap .col {
285
- -webkit-box-flex: 0;
286
- -ms-flex: 0 0 33.33333%;
287
- flex: 0 0 33.33333%;
288
- max-width: 33.33333%;
289
- }
290
- }
291
-
292
- .gdpr-framework-wrap .col .button {
293
- display: block;
294
- text-align: center;
295
- }
296
-
297
- .gdpr-framework-wrap .col_image {
298
- background-position: center;
299
- background-repeat: no-repeat;
300
- background-size: cover;
301
- border-radius: 6px;
302
- background-color: #e5e5e5;
303
- padding-bottom: 60%;
304
- margin-bottom: 15px;
305
- position: relative;
306
- }
307
-
308
- .gdpr-framework-wrap .col_image:after {
309
- content: '';
310
- position: absolute;
311
- top: 0;
312
- left: 0;
313
- width: 100%;
314
- height: 100%;
315
- background-color: #ffa200;
316
- opacity: .15;
317
- }
318
-
319
- .gdpr-framework-wrap .col .button {
320
- font-size: 14px;
321
- line-height: 28px;
322
- padding: 4px 15px;
323
- height: auto;
324
- border: 1px solid #ccc;
325
- box-shadow: 0 1px 0 #ccc;
326
- -webkit-box-shadow: 0 1px 1px #ccc;
327
- transition: .1s;
328
- }
329
-
330
- .gdpr-framework-wrap .col .button:hover {
331
- box-shadow: 0 1px 1px #ccc;
332
- -webkit-box-shadow: 0 1px 1px #ccc;
333
- border: 1px solid #ccc;
334
- background: #fff;
335
- }
336
-
337
- .gdpr-framework-wrap .col .button:focus {
338
- box-shadow: 0 0 2px 1px #5b9cd9;
339
- }
340
-
341
- .gdpr-framework-wrap .col .button-primary {
342
- background-color: #ffa200;
343
- border-color: #ffa200;
344
- color: #fff;
345
- text-shadow: none;
346
- -webkit-box-shadow: 0 1px 1px #ccc;
347
- box-shadow: 0 1px 1px #ccc;
348
- }
349
-
350
- .gdpr-framework-wrap .col .button-primary:hover {
351
- background: #ffc35c;
352
- border-color: #ffc35c;
353
- color: #fff;
354
- }
355
-
356
- .gdpr-framework-wrap .col .button-primary:active,
357
- .gdpr-framework-wrap .col .button-primary:focus {
358
- background-color: #ffa200;
359
- border-color: #ccc;
360
- color: #fff;
361
- box-shadow: 0 0 2px 1px #5b9cd9;
362
- }
363
-
364
- .gdpr-framework-wrap .col p {
365
- font-size: 14px;
366
- line-height: 26px;
367
- color: #555;
368
- }
369
-
370
- .gdpr-framework-wrap .col p:last-child {
371
- margin-bottom: 0;
372
- }
373
- .gdpr-hidden {
374
- display: none !important;
375
- }
376
- .button.button-primary.show_form_consent_gdpr {
377
- float: none;
378
- display: block;
379
- }
380
- .wp-editor-container textarea{
381
- height: 100%;
382
- }
383
- .gdpr-user-logs {
384
- width: 100%;
385
- border: 2px solid;
386
- text-align: center;
387
- }
388
- .gdpr-user-logs tr td {
389
- border: 2px solid;
390
- }
391
- .userlog-scroll {
392
- height: 300px;
393
- overflow: scroll;
394
- }
395
-
396
- /* css for color picker admin */
397
- .iris-picker.iris-mozilla.iris-border {
398
- position: absolute;
399
- z-index: 999;
400
- }
401
- .welcome-gdpr-notice {
402
- background: #fff;
403
- padding: 10px;
404
- border: 1px solid #e5e5e5;
405
- margin: 16px 0;
406
- box-shadow: 0 1px 1px rgba(0,0,0,0.04);
407
- }
408
-
409
- #classiDocs_dataTable {
410
- word-wrap: break-word;
411
- }
412
- table.dataTable {
413
- margin: 0 !important;
414
  }
1
+ /** fix for Gutenberg Editor **/
2
+ .components-notice-list{
3
+ display:none;
4
+ }
5
+ /** Admin notice **/
6
+ .notice-gdpr {
7
+ border-left-color: #0095a8;
8
+ overflow: hidden;
9
+ display:block;
10
+ }
11
+
12
+ .notice-gdpr img {
13
+ width: 100px;
14
+ margin: 25px 0;
15
+ float: left;
16
+ display:block;
17
+
18
+ }
19
+
20
+ .notice-gdpr .gdpr-content {
21
+ float: left;
22
+ width: calc(100% - 120px);
23
+ padding-left: 20px;
24
+ padding-bottom: 15px;
25
+ display:block;
26
+ }
27
+ .large-cf7-select {
28
+ width: 100%;
29
+ }
30
+
31
+ /** Modal window **/
32
+ .gdpr-modal {
33
+ max-width: 1200px;
34
+ }
35
+
36
+ .gdpr-modal li {
37
+ list-style-type: disc;
38
+ margin-left: 20px;
39
+ }
40
+
41
+ .gdpr-modal-footer {
42
+ background: #fcfcfc;
43
+ border-top: 1px solid #dfdfdf;
44
+ padding: 10px 0;
45
+ }
46
+
47
+ /** General **/
48
+ .gdpr-framework-wrap table {
49
+ table-layout: fixed;
50
+ border-spacing: 0;
51
+ }
52
+
53
+ .gdpr-framework-wrap input {
54
+ margin: 0;
55
+ }
56
+
57
+ .gdpr-framework-wrap .gdpr-select {
58
+ width: 300px;
59
+ max-width: 90%;
60
+ height: 32px;
61
+ border-color: #ddd;
62
+ background-color: #fff;
63
+ border: 1px solid #aaa;
64
+ border-radius: 4px;
65
+ box-sizing: border-box;
66
+ cursor: pointer;
67
+ display: block;
68
+ padding: 0 6px;
69
+ color: #666;
70
+ }
71
+
72
+ .gdpr-framework-wrap .select2-container {
73
+ display: block;
74
+ width: 300px;
75
+ max-width: 100%;
76
+
77
+ }
78
+
79
+ .gdpr-framework-wrap .select2-container--default .select2-selection--single .select2-selection__arrow,
80
+ .gdpr-framework-wrap .select2-container--default .select2-selection--single {
81
+ height: 32px !important;
82
+ }
83
+
84
+ .gdpr-framework-wrap .select2-container--default .select2-selection--single .select2-selection__arrow b {
85
+ border-width: 6px 3px 0 3px;
86
+ margin-left: -2px;
87
+ margin-top: -3px;
88
+ border-color: #666 transparent transparent transparent;
89
+ }
90
+
91
+ .gdpr-framework-wrap .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
92
+ border-color: transparent transparent #666 transparent;
93
+ border-width: 0 3px 6px 3px;
94
+ }
95
+
96
+ .gdpr-framework-wrap input {
97
+ border-radius: 4px;
98
+ border: 1px solid #aaa;
99
+ box-shadow: none;
100
+ height: 32px;
101
+ line-height: 28px;
102
+ min-width: 300px;
103
+ max-width: 100%;
104
+ }
105
+
106
+ .gdpr-framework-wrap textarea {
107
+ border-radius: 4px;
108
+ border: 1px solid #aaa;
109
+ box-shadow: none;
110
+ line-height: 28px;
111
+ }
112
+
113
+ .gdpr-framework-wrap .select2-container input {
114
+ min-width: 0;
115
+ }
116
+
117
+ .gdpr-framework-wrap input[type=checkbox] {
118
+ line-height: initial;
119
+ height: 16px;
120
+ min-width: 0;
121
+ }
122
+
123
+ .gdpr-framework-wrap input[type=submit] {
124
+ min-width: 0;
125
+ }
126
+
127
+ .gdpr-framework-wrap input[type=button] {
128
+ min-width: 0;
129
+ }
130
+
131
+ .gdpr-framework-wrap .wp-editor-wrap {
132
+ width: 720px;
133
+ max-width: 100%;
134
+ }
135
+
136
+ .gdpr-framework-wrap .nav-tab-highlight {
137
+ background: #ffa200;
138
+ color: #fff;
139
+ font-weight: 700;
140
+ border-bottom: 1px solid #ccc;
141
+ }
142
+
143
+ .gdpr-framework-wrap .nav-tab-highlight:hover {
144
+ background: #ffc35c;
145
+ color: #fff;
146
+ }
147
+
148
+ .gdpr-framework-wrap .nav-tab-highlight:focus {
149
+ box-shadow: 0 0 2px 1px #5b9cd9;
150
+ }
151
+
152
+ /* Consent tables */
153
+ .gdpr-framework-wrap .gdpr-consent,
154
+ .gdpr-framework-wrap .gdpr-consent-admin {
155
+ table-layout: auto;
156
+ }
157
+
158
+ .gdpr-consent-user {
159
+ border-collapse: collapse;
160
+ }
161
+
162
+ .gdpr-consent-user th {
163
+ padding-bottom: 10px;
164
+ }
165
+
166
+ .gdpr-consent-user td,
167
+ .gdpr-consent-user th {
168
+ border: 1px solid #ccc;
169
+ }
170
+
171
+ .gdpr-consent-user tr:first-child th {
172
+ border: 0;
173
+ }
174
+
175
+ .gdpr-consent th {
176
+ text-align: left;
177
+ }
178
+
179
+ .gdpr-consent td {
180
+ padding-right: 16px;
181
+ }
182
+
183
+ .gdpr-consent-admin th {
184
+ text-align: left;
185
+ padding-bottom: 16px;
186
+ }
187
+
188
+ .gdpr-consent-admin + .button {
189
+ margin-top: 16px;
190
+ }
191
+
192
+ .gdpr-consent-admin td {
193
+ padding-right: 16px;
194
+ vertical-align: top;
195
+ padding-bottom: 20px;
196
+ }
197
+
198
+ .gdpr-framework-wrap .gdpr-consent-admin input {
199
+ min-width: 0;
200
+ }
201
+
202
+ .gdpr-consent-table-desc {
203
+ width: 450px;
204
+ }
205
+
206
+ .gdpr-consent-table-input {
207
+ width: 200px;
208
+ }
209
+
210
+ .gdpr-consent-table-input input {
211
+ width: 100%;
212
+ }
213
+
214
+ .gdpr-consent-table-desc textarea {
215
+ width: 100%;
216
+ min-height: 100px;
217
+ }
218
+
219
+ .gdpr-consent-add-button {
220
+ text-align: right;
221
+ width: 1051px;
222
+ }
223
+
224
+ .gdpr-consent-user {
225
+ table-layout: auto;
226
+ }
227
+
228
+ .gdpr-consent-user td {
229
+ padding: 15px;
230
+ }
231
+
232
+ .gdpr-consent-user-title {
233
+ width: 200px;
234
+ }
235
+
236
+ .gdpr-consent-user-desc {
237
+ width: 450px;
238
+ }
239
+
240
+ /* support page */
241
+ .gdpr-framework-wrap .align-center {
242
+ text-align: center;
243
+ }
244
+
245
+ .gdpr-framework-wrap .section {
246
+ margin: 25px auto;
247
+ max-width: 720px;
248
+ }
249
+
250
+ .gdpr-framework-wrap .row {
251
+ box-sizing: border-box;
252
+ display: -webkit-box;
253
+ display: -ms-flexbox;
254
+ display: flex;
255
+ -ms-flex-wrap: wrap;
256
+ flex-wrap: wrap;
257
+ margin-right: -8px;
258
+ margin-left: -8px;
259
+ -webkit-box-pack: center !important;
260
+ -ms-flex-pack: center !important;
261
+ justify-content: center !important;
262
+ }
263
+
264
+ .gdpr-framework-wrap .col {
265
+ box-sizing: border-box;
266
+ position: relative;
267
+ width: 100%;
268
+ min-height: 1px;
269
+ padding-right: 8px;
270
+ padding-left: 8px;
271
+ margin-bottom: 15px;
272
+ }
273
+
274
+ @media (min-width: 576px) {
275
+ .gdpr-framework-wrap .col {
276
+ -webkit-box-flex: 0;
277
+ -ms-flex: 0 0 50%;
278
+ flex: 0 0 50%;
279
+ max-width: 50%;
280
+ }
281
+ }
282
+
283
+ @media (min-width: 768px) {
284
+ .gdpr-framework-wrap .col {
285
+ -webkit-box-flex: 0;
286
+ -ms-flex: 0 0 33.33333%;
287
+ flex: 0 0 33.33333%;
288
+ max-width: 33.33333%;
289
+ }
290
+ }
291
+
292
+ .gdpr-framework-wrap .col .button {
293
+ display: block;
294
+ text-align: center;
295
+ }
296
+
297
+ .gdpr-framework-wrap .col_image {
298
+ background-position: center;
299
+ background-repeat: no-repeat;
300
+ background-size: cover;
301
+ border-radius: 6px;
302
+ background-color: #e5e5e5;
303
+ padding-bottom: 60%;
304
+ margin-bottom: 15px;
305
+ position: relative;
306
+ }
307
+
308
+ .gdpr-framework-wrap .col_image:after {
309
+ content: '';
310
+ position: absolute;
311
+ top: 0;
312
+ left: 0;
313
+ width: 100%;
314
+ height: 100%;
315
+ background-color: #ffa200;
316
+ opacity: .15;
317
+ }
318
+
319
+ .gdpr-framework-wrap .col .button {
320
+ font-size: 14px;
321
+ line-height: 28px;
322
+ padding: 4px 15px;
323
+ height: auto;
324
+ border: 1px solid #ccc;
325
+ box-shadow: 0 1px 0 #ccc;
326
+ -webkit-box-shadow: 0 1px 1px #ccc;
327
+ transition: .1s;
328
+ }
329
+
330
+ .gdpr-framework-wrap .col .button:hover {
331
+ box-shadow: 0 1px 1px #ccc;
332
+ -webkit-box-shadow: 0 1px 1px #ccc;
333
+ border: 1px solid #ccc;
334
+ background: #fff;
335
+ }
336
+
337
+ .gdpr-framework-wrap .col .button:focus {
338
+ box-shadow: 0 0 2px 1px #5b9cd9;
339
+ }
340
+
341
+ .gdpr-framework-wrap .col .button-primary {
342
+ background-color: #ffa200;
343
+ border-color: #ffa200;
344
+ color: #fff;
345
+ text-shadow: none;
346
+ -webkit-box-shadow: 0 1px 1px #ccc;
347
+ box-shadow: 0 1px 1px #ccc;
348
+ }
349
+
350
+ .gdpr-framework-wrap .col .button-primary:hover {
351
+ background: #ffc35c;
352
+ border-color: #ffc35c;
353
+ color: #fff;
354
+ }
355
+
356
+ .gdpr-framework-wrap .col .button-primary:active,
357
+ .gdpr-framework-wrap .col .button-primary:focus {
358
+ background-color: #ffa200;
359
+ border-color: #ccc;
360
+ color: #fff;
361
+ box-shadow: 0 0 2px 1px #5b9cd9;
362
+ }
363
+
364
+ .gdpr-framework-wrap .col p {
365
+ font-size: 14px;
366
+ line-height: 26px;
367
+ color: #555;
368
+ }
369
+
370
+ .gdpr-framework-wrap .col p:last-child {
371
+ margin-bottom: 0;
372
+ }
373
+ .gdpr-hidden {
374
+ display: none !important;
375
+ }
376
+ .button.button-primary.show_form_consent_gdpr {
377
+ float: none;
378
+ display: block;
379
+ }
380
+ .wp-editor-container textarea{
381
+ height: 100%;
382
+ }
383
+ .gdpr-user-logs {
384
+ width: 100%;
385
+ border: 2px solid;
386
+ text-align: center;
387
+ }
388
+ .gdpr-user-logs tr td {
389
+ border: 2px solid;
390
+ }
391
+ .userlog-scroll {
392
+ height: 300px;
393
+ overflow: scroll;
394
+ }
395
+
396
+ /* css for color picker admin */
397
+ .iris-picker.iris-mozilla.iris-border {
398
+ position: absolute;
399
+ z-index: 999;
400
+ }
401
+ .welcome-gdpr-notice {
402
+ background: #fff;
403
+ padding: 10px;
404
+ border: 1px solid #e5e5e5;
405
+ margin: 16px 0;
406
+ box-shadow: 0 1px 1px rgba(0,0,0,0.04);
407
+ }
408
+
409
+ #classiDocs_dataTable {
410
+ word-wrap: break-word;
411
+ }
412
+ table.dataTable {
413
+ margin: 0 !important;
414
  }
assets/gdpr-admin.js CHANGED
@@ -1,126 +1,126 @@
1
- jQuery(function($) {
2
- /**
3
- * requried issue on Consent show repeater
4
- */
5
- $(document).on("click", ".show_form_consent_gdpr", function(e) {
6
- $(".gdpr-hidden input").prop("disabled", false);
7
- $(".gdpr-hidden").removeClass("gdpr-hidden");
8
- $(".show_form_consent_gdpr").hide();
9
- });
10
- /**
11
- * requried issue on Consent hide repeater
12
- */
13
-
14
- $(document).on("click", ".hide_form_consent_gdpr", function(e) {
15
- $(".gdpr-show-hide").addClass("gdpr-hidden");
16
- $(".gdpr-hidden input").prop("disabled", true);
17
- $(".show_form_consent_gdpr").show();
18
- });
19
- /**
20
- * Fix issue with more then one consent add.
21
- */
22
- $(document).ready(function() {
23
- $(".gdpr-hidden input").prop("disabled", true);
24
- });
25
- // Handler to open the modal dialog
26
- $(document).on("click", ".gdpr-open-modal", function(e) {
27
- $($(this).data("gdpr-modal-target")).dialog("open");
28
- e.preventDefault();
29
- });
30
-
31
- // Initialize all modals on page
32
- $(".gdpr-modal").each(function(i, e) {
33
- var $base = $(this);
34
-
35
- $base.dialog({
36
- title: $base.data("gdpr-title"),
37
- dialogClass: "wp-dialog",
38
- autoOpen: false,
39
- draggable: false,
40
- width: "auto",
41
- modal: true,
42
- resizable: false,
43
- closeOnEscape: true,
44
- position: {
45
- my: "center",
46
- at: "center",
47
- of: window
48
- },
49
- create: function() {
50
- // style fix for WordPress admin
51
- $(".ui-dialog-titlebar-close").addClass("ui-button");
52
- },
53
- open: function() {
54
- // Bind a click on the overlay to close the dialog
55
- $(".ui-widget-overlay").bind("click", function() {
56
- $base.dialog("close");
57
- });
58
-
59
- // Bind a custom close button to close the dialog
60
- $base.find(".gdpr-close-modal").bind("click", function(e) {
61
- $base.dialog("close");
62
- e.preventDefault();
63
- });
64
-
65
- // Fix overlay CSS issues in admin
66
- $(".wp-dialog").css("z-index", 9999);
67
- $(".ui-widget-overlay").css("z-index", 9998);
68
- },
69
- close: function() {
70
- $(".wp-dialog").css("z-index", 101);
71
- $(".ui-widget-overlay").css("z-index", 100);
72
- }
73
- });
74
- });
75
-
76
- /**
77
- * https://github.com/DubFriend/jquery.repeater
78
- */
79
- $(".js-gdpr-repeater").each(function() {
80
- var $repeater = $(this).repeater({
81
- isFirstItemUndeletable: true
82
- });
83
- if (window.repeaterData != undefined) {
84
- // will only work if repeater data is defined.
85
- if (typeof window.repeaterData[$(this).data("name")] !== undefined) {
86
- $repeater.setList(window.repeaterData[$(this).data("name")]);
87
- }
88
- }
89
- });
90
-
91
- /**
92
- * Init select2
93
- */
94
- $(".js-gdpr-select2").select2({
95
- width: "style"
96
- });
97
-
98
- /**
99
- * Auto-fill DPA info
100
- */
101
- $(".js-gdpr-country-selector").on("change", function() {
102
- var dpaData, $website, $email, $phone;
103
- var countryCode = $(this).val();
104
-
105
- if (!window.gdprDpaData[countryCode]) {
106
- return;
107
- }
108
-
109
- dpaData = window.gdprDpaData[countryCode];
110
-
111
- $website = $("#gdpr_dpa_website");
112
- if ("" === $website.data("set")) {
113
- $website.val(dpaData["website"]);
114
- }
115
-
116
- $email = $("#gdpr_dpa_email");
117
- if ("" === $email.data("set")) {
118
- $email.val(dpaData["email"]);
119
- }
120
-
121
- $phone = $("#gdpr_dpa_phone");
122
- if ("" === $phone.data("set")) {
123
- $phone.val(dpaData["phone"]);
124
- }
125
- });
126
- });
1
+ jQuery(function($) {
2
+ /**
3
+ * requried issue on Consent show repeater
4
+ */
5
+ $(document).on("click", ".show_form_consent_gdpr", function(e) {
6
+ $(".gdpr-hidden input").prop("disabled", false);
7
+ $(".gdpr-hidden").removeClass("gdpr-hidden");
8
+ $(".show_form_consent_gdpr").hide();
9
+ });
10
+ /**
11
+ * requried issue on Consent hide repeater
12
+ */
13
+
14
+ $(document).on("click", ".hide_form_consent_gdpr", function(e) {
15
+ $(".gdpr-show-hide").addClass("gdpr-hidden");
16
+ $(".gdpr-hidden input").prop("disabled", true);
17
+ $(".show_form_consent_gdpr").show();
18
+ });
19
+ /**
20
+ * Fix issue with more then one consent add.
21
+ */
22
+ $(document).ready(function() {
23
+ $(".gdpr-hidden input").prop("disabled", true);
24
+ });
25
+ // Handler to open the modal dialog
26
+ $(document).on("click", ".gdpr-open-modal", function(e) {
27
+ $($(this).data("gdpr-modal-target")).dialog("open");
28
+ e.preventDefault();
29
+ });
30
+
31
+ // Initialize all modals on page
32
+ $(".gdpr-modal").each(function(i, e) {
33
+ var $base = $(this);
34
+
35
+ $base.dialog({
36
+ title: $base.data("gdpr-title"),
37
+ dialogClass: "wp-dialog",
38
+ autoOpen: false,
39
+ draggable: false,
40
+ width: "auto",
41
+ modal: true,
42
+ resizable: false,
43
+ closeOnEscape: true,
44
+ position: {
45
+ my: "center",
46
+ at: "center",
47
+ of: window
48
+ },
49
+ create: function() {
50
+ // style fix for WordPress admin
51
+ $(".ui-dialog-titlebar-close").addClass("ui-button");
52
+ },
53
+ open: function() {
54
+ // Bind a click on the overlay to close the dialog
55
+ $(".ui-widget-overlay").bind("click", function() {
56
+ $base.dialog("close");
57
+ });
58
+
59
+ // Bind a custom close button to close the dialog
60
+ $base.find(".gdpr-close-modal").bind("click", function(e) {
61
+ $base.dialog("close");
62
+ e.preventDefault();
63
+ });
64
+
65
+ // Fix overlay CSS issues in admin
66
+ $(".wp-dialog").css("z-index", 9999);
67
+ $(".ui-widget-overlay").css("z-index", 9998);
68
+ },
69
+ close: function() {
70
+ $(".wp-dialog").css("z-index", 101);
71
+ $(".ui-widget-overlay").css("z-index", 100);
72
+ }
73
+ });
74
+ });
75
+
76
+ /**
77
+ * https://github.com/DubFriend/jquery.repeater
78
+ */
79
+ $(".js-gdpr-repeater").each(function() {
80
+ var $repeater = $(this).repeater({
81
+ isFirstItemUndeletable: true
82
+ });
83
+ if (window.repeaterData != undefined) {
84
+ // will only work if repeater data is defined.
85
+ if (typeof window.repeaterData[$(this).data("name")] !== undefined) {
86
+ $repeater.setList(window.repeaterData[$(this).data("name")]);
87
+ }
88
+ }
89
+ });
90
+
91
+ /**
92
+ * Init select2
93
+ */
94
+ $(".js-gdpr-select2").select2({
95
+ width: "style"
96
+ });
97
+
98
+ /**
99
+ * Auto-fill DPA info
100
+ */
101
+ $(".js-gdpr-country-selector").on("change", function() {
102
+ var dpaData, $website, $email, $phone;
103
+ var countryCode = $(this).val();
104
+
105
+ if (!window.gdprDpaData[countryCode]) {
106
+ return;
107
+ }
108
+
109
+ dpaData = window.gdprDpaData[countryCode];
110
+
111
+ $website = $("#gdpr_dpa_website");
112
+ if ("" === $website.data("set")) {
113
+ $website.val(dpaData["website"]);
114
+ }
115
+
116
+ $email = $("#gdpr_dpa_email");
117
+ if ("" === $email.data("set")) {
118
+ $email.val(dpaData["email"]);
119
+ }
120
+
121
+ $phone = $("#gdpr_dpa_phone");
122
+ if ("" === $phone.data("set")) {
123
+ $phone.val(dpaData["phone"]);
124
+ }
125
+ });
126
+ });
assets/gdpr-installer.css CHANGED
@@ -1,584 +1,584 @@
1
- .gdpr-installer-container {
2
- max-width: 720px;
3
- margin: 30px auto;
4
- font-size: 14px;
5
- }
6
-
7
- .gdpr-step-button-prev {
8
- display: block;
9
- float: left;
10
- }
11
-
12
- .gdpr-step-button-next {
13
- display: block;
14
- float: right;
15
- }
16
-
17
- .gdpr-header {
18
- margin: 0 auto 30px;
19
- overflow: hidden;
20
- padding: 0 16px;
21
- text-align: center;
22
- }
23
-
24
- .gdpr-header_left {
25
- float: left;
26
- width: 100%;
27
- }
28
-
29
- .gdpr-header_right {
30
- float: left;
31
- width: 100%;
32
- }
33
-
34
- @media (min-width: 576px) {
35
- .gdpr-header {
36
- text-align: left;
37
- }
38
-
39
- .gdpr-header_left {
40
- width: 175px;
41
- padding-right: 15px;
42
- padding-top: 25px;
43
- }
44
-
45
- .gdpr-header_right {
46
- width: calc(100% - 235px);
47
- }
48
- }
49
-
50
- @media (min-width: 768px) {
51
- .gdpr-header {
52
- padding: 0;
53
- }
54
- }
55
-
56
- .gdpr-logo {
57
- width: 100px;
58
- }
59
-
60
- .gdpr-header h1 {
61
- font-size: 1.8em;
62
- line-height: normal;
63
- margin-top: 15px;
64
- margin-bottom: 20px;
65
- font-weight: 700;
66
- }
67
-
68
- .gdpr-header h2 {
69
- float: left;
70
- }
71
-
72
- .gdpr-installer .gdpr-content {
73
- -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, .13);
74
- box-shadow: 0 1px 3px rgba(0, 0, 0, .13);
75
- padding: 16px;
76
- margin: 0 0 20px;
77
- background: #fff;
78
- overflow: hidden;
79
- zoom: 1;
80
- }
81
-
82
- .gdpr-installer .spacer {
83
- margin-top: 2em;
84
- }
85
-
86
- .gdpr-installer .gdpr-content p {
87
- font-size: 14px;
88
- line-height: 26px;
89
- color: #555;
90
- }
91
-
92
- .gdpr-installer .gdpr-content p:last-child {
93
- margin-bottom: 0;
94
- }
95
-
96
- .gdpr-content a {
97
- color: #0095a7;
98
- font-weight: 700;
99
- text-decoration: none;
100
- box-shadow: none;
101
- }
102
-
103
- .gdpr-content a:hover,
104
- .gdpr-content a:focus {
105
- outline: none;
106
- text-decoration: none;
107
- color: #000;
108
- }
109
-
110
- .gdpr-installer .gdpr-content li {
111
- margin-left: 20px;
112
- list-style-type: disc;
113
- }
114
-
115
- .gdpr-installer .gdpr-content select {
116
- height: 32px;
117
- border-color: #ddd;
118
- background-color: #fff;
119
- border: 1px solid #aaa;
120
- border-radius: 4px;
121
- box-sizing: border-box;
122
- cursor: pointer;
123
- display: block;
124
- padding: 0 6px;
125
- color: #666;
126
- }
127
-
128
- .select2-container .select2-selection--single {
129
- height: 32px !important;
130
- }
131
-
132
- .gdpr-installer .gdpr-content h1 {
133
- font-weight: 700;
134
- line-height: normal;
135
- }
136
-
137
- .gdpr-installer .gdpr-content h2 {
138
- font-size: 22px;
139
- line-height: 32px;
140
- font-weight: 700;
141
- }
142
-
143
- .gdpr-installer .gdpr-content h3 {
144
- font-size: 18px;
145
- line-height: 22px;
146
- font-weight: 700;
147
- }
148
-
149
- .wp-core-ui .button {
150
- font-size: 14px;
151
- line-height: 28px;
152
- padding: 4px 15px;
153
- height: auto;
154
- border: 1px solid #ccc;
155
- box-shadow: 0 1px 0 #ccc;
156
- -webkit-box-shadow: 0 1px 1px #ccc;
157
- transition: .1s;
158
- }
159
-
160
- .wp-core-ui .button:hover {
161
- box-shadow: 0 1px 1px #ccc;
162
- -webkit-box-shadow: 0 1px 1px #ccc;
163
- border: 1px solid #ccc;
164
- background: #fff;
165
- }
166
-
167
- .wp-core-ui .button:focus {
168
- box-shadow: 0 0 2px 1px #5b9cd9;
169
- }
170
-
171
- .wp-core-ui .button-gdpr {
172
- background: #0095a8;
173
- border-color: #0095a8;
174
- -webkit-box-shadow: 0 1px 1px #ccc;
175
- box-shadow: 0 1px 1px #ccc;
176
- color: #fff;
177
- text-decoration: none;
178
- transition: .1s;
179
- }
180
-
181
- .wp-core-ui .button-gdpr:hover {
182
- background: #79c2cb;
183
- border-color: #79c2cb;
184
- color: #fff;
185
- }
186
-
187
- .wp-core-ui .button-gdpr:active,
188
- .wp-core-ui .button-gdpr:focus {
189
- background: #0095a8;
190
- border-color: #ccc;
191
- color: #fff;
192
- box-shadow: 0 0 2px 1px #5b9cd9;
193
- }
194
-
195
- .wp-core-ui .button-primary {
196
- background-color: #ffa200;
197
- border-color: #ffa200;
198
- color: #fff;
199
- text-shadow: none;
200
- -webkit-box-shadow: 0 1px 1px #ccc;
201
- box-shadow: 0 1px 1px #ccc;
202
- }
203
-
204
- .wp-core-ui .button-primary:hover {
205
- background: #ffc35c;
206
- border-color: #ffc35c;
207
- color: #fff;
208
- }
209
-
210
- .wp-core-ui .button-primary:active,
211
- .wp-core-ui .button-primary:focus {
212
- background-color: #ffa200;
213
- border-color: #ccc;
214
- color: #fff;
215
- box-shadow: 0 0 2px 1px #5b9cd9;
216
- }
217
-
218
- .wp-core-ui.gdpr-installer .button-right {
219
- float: right;
220
- }
221
-
222
- .wp-core-ui .button.button-gdpr-large {
223
- font-size: 14px;
224
- padding: 4px 15px;
225
- height: auto;
226
- }
227
-
228
- .gdpr-footer-links {
229
- text-align: center;
230
- }
231
-
232
- .wp-core-ui .button-center {
233
- display: block;
234
- margin: 25px auto 10px;
235
- }
236
-
237
- .gdpr-installer label {
238
- color: #666;
239
- font-size: 14px;
240
- font-weight: 500;
241
- margin-bottom: .5em;
242
- margin-top: 1em;
243
- display: block;
244
- cursor: pointer;
245
- }
246
-
247
- .gdpr-select-policy-page {
248
- padding: 10px 5px 10px 5px;
249
- border: 1px solid #a3a3a3;
250
- }
251
- .gdpr-select-policy-page strong{
252
- margin: 10px 0;
253
- display: block;
254
- }
255
- .gdpr-select-policy-page span{
256
- font-size: 12px;
257
- }
258
-
259
- .gdpr-installer input[type=text],
260
- .gdpr-installer input[type=email],
261
- #gdpr_custom_policy_page {
262
- border: 1px solid #aaa;
263
- border-color: #ddd;
264
- border-radius: 4px;
265
- height: 30px;
266
- width: calc(100% - 8px - 24px - 2px);
267
- padding-left: 8px;
268
- padding-right: 24px;
269
- color: #444;
270
- background-color: #fff;
271
- display: inline-block;
272
- }
273
-
274
- .gdpr-installer input + em {
275
- display: block;
276
- margin-top: 5px;
277
- }
278
-
279
- .gdpr-installer .select2 + em {
280
- display: block;
281
- margin-top: 5px;
282
- }
283
-
284
- .gdpr-installer textarea {
285
- width: calc(100% - 8px - 24px - 2px);
286
- height: 80px;
287
- }
288
-
289
- .gdpr-installer .select2-container {
290
- display: block;
291
- width: 300px;
292
- max-width: 100%;
293
- }
294
-
295
- .gdpr-select {
296
- width: 300px;
297
- max-width: 100%;
298
- }
299
-
300
- .hidden {
301
- display: none;
302
- }
303
-
304
- .gdpr-installer fieldset {
305
- margin: -20px 0 0 0;
306
- }
307
-
308
- .wp-core-ui .button-side {
309
- min-width: 220px;
310
- text-align: center;
311
- margin-right: 15px;
312
- }
313
-
314
- .align-center {
315
- text-align: center;
316
- }
317
-
318
- .section {
319
- margin: 25px 0;
320
- }
321
-
322
- .row {
323
- box-sizing: border-box;
324
- display: -webkit-box;
325
- display: -ms-flexbox;
326
- display: flex;
327
- -ms-flex-wrap: wrap;
328
- flex-wrap: wrap;
329
- margin-right: -8px;
330
- margin-left: -8px;
331
- -webkit-box-pack: center !important;
332
- -ms-flex-pack: center !important;
333
- justify-content: center !important;
334
- }
335
-
336
- .col {
337
- box-sizing: border-box;
338
- position: relative;
339
- width: 100%;
340
- min-height: 1px;
341
- padding-right: 8px;
342
- padding-left: 8px;
343
- margin-bottom: 15px;
344
- }
345
-
346
- @media (min-width: 576px) {
347
- .col {
348
- -webkit-box-flex: 0;
349
- -ms-flex: 0 0 50%;
350
- flex: 0 0 50%;
351
- max-width: 50%;
352
- }
353
- }
354
-
355
- @media (min-width: 768px) {
356
- .col {
357
- -webkit-box-flex: 0;
358
- -ms-flex: 0 0 33.33333%;
359
- flex: 0 0 33.33333%;
360
- max-width: 33.33333%;
361
- }
362
- }
363
-
364
- .wp-core-ui .col .button {
365
- display: block;
366
- text-align: center;
367
- }
368
-
369
- .col_image {
370
- background-position: center;
371
- background-repeat: no-repeat;
372
- background-size: cover;
373
- border-radius: 6px;
374
- background-color: #e5e5e5;
375
- padding-bottom: 60%;
376
- margin-bottom: 15px;
377
- position: relative;
378
- }
379
-
380
- .col_image:after {
381
- content: '';
382
- position: absolute;
383
- top: 0;
384
- left: 0;
385
- width: 100%;
386
- height: 100%;
387
- background-color: #ffa200;
388
- opacity: .15;
389
- }
390
-
391
- /* jQuery UI hacks */
392
- .ui-tabs {
393
- position: relative;
394
- padding: .2em;
395
- }
396
-
397
- .ui-tabs-nav {
398
- margin: 0;
399
- padding: .2em .2em 0;
400
- }
401
-
402
- .ui-helper-clearfix {
403
- min-height: 0;
404
- }
405
-
406
- .ui-helper-reset {
407
- margin: 0;
408
- padding: 0;
409
- border: 0;
410
- outline: 0;
411
- line-height: 1.3;
412
- text-decoration: none;
413
- font-size: 100%;
414
- list-style: none;
415
- }
416
-
417
- .ui-helper-clearfix:before, .ui-helper-clearfix:after {
418
- content: "";
419
- display: table;
420
- border-collapse: collapse;
421
- }
422
-
423
- .ui-helper-clearfix:after {
424
- clear: both;
425
- }
426
-
427
- .ui-tabs .ui-tabs-nav li {
428
- list-style: none;
429
- float: left;
430
- position: relative;
431
- top: 0;
432
- margin: 1px .2em 0 0;
433
- border-bottom-width: 0;
434
- padding: 0;
435
- white-space: nowrap;
436
- background: #eee;
437
- }
438
-
439
- .ui-tabs .ui-tabs-nav .ui-tabs-anchor {
440
- float: left;
441
- padding: .5em 1em;
442
- text-decoration: none;
443
- }
444
-
445
- .ui-tabs .ui-tabs-nav li.ui-tabs-active {
446
- background: #fff;
447
- }
448
-
449
- .handle {
450
- cursor: move;
451
- }
452
-
453
- .gdpr-table {
454
- width: 100%;
455
- }
456
-
457
- .gdpr-footer-links {
458
- padding-bottom: 50px;
459
- }
460
-
461
- .slidePadding {
462
- display: block;
463
- padding-top: 1px;
464
- padding-bottom: 1px;
465
- }
466
-
467
- .gdpr-installer p.error {
468
- font-size: 16px;
469
- font-weight: 700;
470
- color: #e34639;
471
- }
472
-
473
- /* gdpr-breadcrumbs */
474
- .gdpr-breadcrumbs {
475
- margin-bottom: 22px;
476
- }
477
-
478
- .gdpr-breadcrumbs:after {
479
- display: block;
480
- clear: both;
481
- content: '';
482
- }
483
-
484
- .gdpr-breadcrumbs_unit {
485
- box-sizing: border-box;
486
- float: left;
487
- width: 50%;
488
- font-size: 14px;
489
- line-height: 26px;
490
- padding-right: 15px;
491
- }
492
-
493
- .gdpr-breadcrumbs_unit:nth-child(3),
494
- .gdpr-breadcrumbs_unit:nth-child(4) {
495
- margin-top: 10px;
496
- }
497
-
498
- .gdpr-breadcrumbs_item {
499
- background-color: #dddddd;
500
- padding: 2px 0;
501
- text-align: center;
502
- position: relative;
503
- color: #555555;
504
- padding-left: 8px;
505
- }
506
-
507
- .gdpr-breadcrumbs_item:after {
508
- position: absolute;
509
- right: -15px;
510
- top: 0;
511
- content: '';
512
- width: 0;
513
- height: 0;
514
- border-style: solid;
515
- border-width: 15px 0 15px 15px;
516
- border-color: transparent transparent transparent #dddddd;
517
- }
518
-
519
- .gdpr-breadcrumbs_item:before {
520
- position: absolute;
521
- left: 0;
522
- top: 0;
523
- content: '';
524
- width: 0;
525
- height: 0;
526
- border-style: solid;
527
- border-width: 15px 0 15px 15px;
528
- border-color: transparent transparent transparent #f1f1f1;
529
- }
530
-
531
- .gdpr-breadcrumbs_unit.active .gdpr-breadcrumbs_item {
532
- background-color: #0095a8;
533
- color: #fff;
534
- font-weight: 700;
535
- }
536
-
537
- .gdpr-breadcrumbs_unit.active .gdpr-breadcrumbs_item:after {
538
- border-color: transparent transparent transparent #0095a8;
539
- }
540
-
541
- .gdpr-breadcrumbs_unit:first-child .gdpr-breadcrumbs_item:before,
542
- .gdpr-breadcrumbs_unit:last-child .gdpr-breadcrumbs_item:after {
543
- display: none;
544
- }
545
-
546
- .gdpr-breadcrumbs_unit:last-child {
547
- padding: 0;
548
- }
549
-
550
- .gdpr-breadcrumbs_unit:last-child .gdpr-breadcrumbs_item {
551
- padding-left: 0;
552
- }
553
-
554
- @media (min-width: 576px) {
555
- .gdpr-breadcrumbs_unit {
556
- width: 25%;
557
- }
558
-
559
- .gdpr-breadcrumbs_unit:nth-child(3),
560
- .gdpr-breadcrumbs_unit:nth-child(4) {
561
- margin-top: 0;
562
- }
563
- }
564
-
565
- .gdpr_cf7_notice {
566
- font-weight: 600;
567
- background: #D6D6D6;
568
- padding: 10px;
569
- }
570
-
571
- .gdpr_cf7_notice a {
572
- cursor: pointer;
573
- }
574
-
575
- .gdpr_cf7_notice b {
576
- font-weight: 800;
577
- }
578
-
579
- .button.button-secondary.button-side:hover {
580
- color: #fff;
581
- background: #0095a8;
582
- transition: 0.5s;
583
- font-weight: 600;
584
  }
1
+ .gdpr-installer-container {
2
+ max-width: 720px;
3
+ margin: 30px auto;
4
+ font-size: 14px;
5
+ }
6
+
7
+ .gdpr-step-button-prev {
8
+ display: block;
9
+ float: left;
10
+ }
11
+
12
+ .gdpr-step-button-next {
13
+ display: block;
14
+ float: right;
15
+ }
16
+
17
+ .gdpr-header {
18
+ margin: 0 auto 30px;
19
+ overflow: hidden;
20
+ padding: 0 16px;
21
+ text-align: center;
22
+ }
23
+
24
+ .gdpr-header_left {
25
+ float: left;
26
+ width: 100%;
27
+ }
28
+
29
+ .gdpr-header_right {
30
+ float: left;
31
+ width: 100%;
32
+ }
33
+
34
+ @media (min-width: 576px) {
35
+ .gdpr-header {
36
+ text-align: left;
37
+ }
38
+
39
+ .gdpr-header_left {
40
+ width: 175px;
41
+ padding-right: 15px;
42
+ padding-top: 25px;
43
+ }
44
+
45
+ .gdpr-header_right {
46
+ width: calc(100% - 235px);
47
+ }
48
+ }
49
+
50
+ @media (min-width: 768px) {
51
+ .gdpr-header {
52
+ padding: 0;
53
+ }
54
+ }
55
+
56
+ .gdpr-logo {
57
+ width: 100px;
58
+ }
59
+
60
+ .gdpr-header h1 {
61
+ font-size: 1.8em;
62
+ line-height: normal;
63
+ margin-top: 15px;
64
+ margin-bottom: 20px;
65
+ font-weight: 700;
66
+ }
67
+
68
+ .gdpr-header h2 {
69
+ float: left;
70
+ }
71
+
72
+ .gdpr-installer .gdpr-content {
73
+ -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, .13);
74
+ box-shadow: 0 1px 3px rgba(0, 0, 0, .13);
75
+ padding: 16px;
76
+ margin: 0 0 20px;
77
+ background: #fff;
78
+ overflow: hidden;
79
+ zoom: 1;
80
+ }
81
+
82
+ .gdpr-installer .spacer {
83
+ margin-top: 2em;
84
+ }
85
+
86
+ .gdpr-installer .gdpr-content p {
87
+ font-size: 14px;
88
+ line-height: 26px;
89
+ color: #555;
90
+ }
91
+
92
+ .gdpr-installer .gdpr-content p:last-child {
93
+ margin-bottom: 0;
94
+ }
95
+
96
+ .gdpr-content a {
97
+ color: #0095a7;
98
+ font-weight: 700;
99
+ text-decoration: none;
100
+ box-shadow: none;
101
+ }
102
+
103
+ .gdpr-content a:hover,
104
+ .gdpr-content a:focus {
105
+ outline: none;
106
+ text-decoration: none;
107
+ color: #000;
108
+ }
109
+
110
+ .gdpr-installer .gdpr-content li {
111
+ margin-left: 20px;
112
+ list-style-type: disc;
113
+ }
114
+
115
+ .gdpr-installer .gdpr-content select {
116
+ height: 32px;
117
+ border-color: #ddd;
118
+ background-color: #fff;
119
+ border: 1px solid #aaa;
120
+ border-radius: 4px;
121
+ box-sizing: border-box;
122
+ cursor: pointer;
123
+ display: block;
124
+ padding: 0 6px;
125
+ color: #666;
126
+ }
127
+
128
+ .select2-container .select2-selection--single {
129
+ height: 32px !important;
130
+ }
131
+
132
+ .gdpr-installer .gdpr-content h1 {
133
+ font-weight: 700;
134
+ line-height: normal;
135
+ }
136
+
137
+ .gdpr-installer .gdpr-content h2 {
138
+ font-size: 22px;
139
+ line-height: 32px;
140
+ font-weight: 700;
141
+ }
142
+
143
+ .gdpr-installer .gdpr-content h3 {
144
+ font-size: 18px;
145
+ line-height: 22px;
146
+ font-weight: 700;
147
+ }
148
+
149
+ .wp-core-ui .button {
150
+ font-size: 14px;
151
+ line-height: 28px;
152
+ padding: 4px 15px;
153
+ height: auto;
154
+ border: 1px solid #ccc;
155
+ box-shadow: 0 1px 0 #ccc;
156
+ -webkit-box-shadow: 0 1px 1px #ccc;
157
+ transition: .1s;
158
+ }
159
+
160
+ .wp-core-ui .button:hover {
161
+ box-shadow: 0 1px 1px #ccc;
162
+ -webkit-box-shadow: 0 1px 1px #ccc;
163
+ border: 1px solid #ccc;
164
+ background: #fff;
165
+ }
166
+
167
+ .wp-core-ui .button:focus {
168
+ box-shadow: 0 0 2px 1px #5b9cd9;
169
+ }
170
+
171
+ .wp-core-ui .button-gdpr {
172
+ background: #0095a8;
173
+ border-color: #0095a8;
174
+ -webkit-box-shadow: 0 1px 1px #ccc;
175
+ box-shadow: 0 1px 1px #ccc;
176
+ color: #fff;
177
+ text-decoration: none;
178
+ transition: .1s;
179
+ }
180
+
181
+ .wp-core-ui .button-gdpr:hover {
182
+ background: #79c2cb;
183
+ border-color: #79c2cb;
184
+ color: #fff;
185
+ }
186
+
187
+ .wp-core-ui .button-gdpr:active,
188
+ .wp-core-ui .button-gdpr:focus {
189
+ background: #0095a8;
190
+ border-color: #ccc;
191
+ color: #fff;
192
+ box-shadow: 0 0 2px 1px #5b9cd9;
193
+ }
194
+
195
+ .wp-core-ui .button-primary {
196
+ background-color: #ffa200;
197
+ border-color: #ffa200;
198
+ color: #fff;
199
+ text-shadow: none;
200
+ -webkit-box-shadow: 0 1px 1px #ccc;
201
+ box-shadow: 0 1px 1px #ccc;
202
+ }
203
+
204
+ .wp-core-ui .button-primary:hover {
205
+ background: #ffc35c;
206
+ border-color: #ffc35c;
207
+ color: #fff;
208
+ }
209
+
210
+ .wp-core-ui .button-primary:active,
211
+ .wp-core-ui .button-primary:focus {
212
+ background-color: #ffa200;
213
+ border-color: #ccc;
214
+ color: #fff;
215
+ box-shadow: 0 0 2px 1px #5b9cd9;
216
+ }
217
+
218
+ .wp-core-ui.gdpr-installer .button-right {
219
+ float: right;
220
+ }
221
+
222
+ .wp-core-ui .button.button-gdpr-large {
223
+ font-size: 14px;
224
+ padding: 4px 15px;
225
+ height: auto;
226
+ }
227
+
228
+ .gdpr-footer-links {
229
+ text-align: center;
230
+ }
231
+
232
+ .wp-core-ui .button-center {
233
+ display: block;
234
+ margin: 25px auto 10px;
235
+ }
236
+
237
+ .gdpr-installer label {
238
+ color: #666;
239
+ font-size: 14px;
240
+ font-weight: 500;
241
+ margin-bottom: .5em;
242
+ margin-top: 1em;
243
+ display: block;
244
+ cursor: pointer;
245
+ }
246
+
247
+ .gdpr-select-policy-page {
248
+ padding: 10px 5px 10px 5px;
249
+ border: 1px solid #a3a3a3;
250
+ }
251
+ .gdpr-select-policy-page strong{
252
+ margin: 10px 0;
253
+ display: block;
254
+ }
255
+ .gdpr-select-policy-page span{
256
+ font-size: 12px;
257
+ }
258
+
259
+ .gdpr-installer input[type=text],
260
+ .gdpr-installer input[type=email],
261
+ #gdpr_custom_policy_page {
262
+ border: 1px solid #aaa;
263
+ border-color: #ddd;
264
+ border-radius: 4px;
265
+ height: 30px;
266
+ width: calc(100% - 8px - 24px - 2px);
267
+ padding-left: 8px;
268
+ padding-right: 24px;
269
+ color: #444;
270
+ background-color: #fff;
271
+ display: inline-block;
272
+ }
273
+
274
+ .gdpr-installer input + em {
275
+ display: block;
276
+ margin-top: 5px;
277
+ }
278
+
279
+ .gdpr-installer .select2 + em {
280
+ display: block;
281
+ margin-top: 5px;
282
+ }
283
+
284
+ .gdpr-installer textarea {
285
+ width: calc(100% - 8px - 24px - 2px);
286
+ height: 80px;
287
+ }
288
+
289
+ .gdpr-installer .select2-container {
290
+ display: block;
291
+ width: 300px;
292
+ max-width: 100%;
293
+ }
294
+
295
+ .gdpr-select {
296
+ width: 300px;
297
+ max-width: 100%;
298
+ }
299
+
300
+ .hidden {
301
+ display: none;
302
+ }
303
+
304
+ .gdpr-installer fieldset {
305
+ margin: -20px 0 0 0;
306
+ }
307
+
308
+ .wp-core-ui .button-side {
309
+ min-width: 220px;
310
+ text-align: center;
311
+ margin-right: 15px;
312
+ }
313
+
314
+ .align-center {
315
+ text-align: center;
316
+ }
317
+
318
+ .section {
319
+ margin: 25px 0;
320
+ }
321
+
322
+ .row {
323
+ box-sizing: border-box;
324
+ display: -webkit-box;
325
+ display: -ms-flexbox;
326
+ display: flex;
327
+ -ms-flex-wrap: wrap;
328
+ flex-wrap: wrap;
329
+ margin-right: -8px;
330
+ margin-left: -8px;
331
+ -webkit-box-pack: center !important;
332
+ -ms-flex-pack: center !important;
333
+ justify-content: center !important;
334
+ }
335
+
336
+ .col {
337
+ box-sizing: border-box;
338
+ position: relative;
339
+ width: 100%;
340
+ min-height: 1px;
341
+ padding-right: 8px;
342
+ padding-left: 8px;
343
+ margin-bottom: 15px;
344
+ }
345
+
346
+ @media (min-width: 576px) {
347
+ .col {
348
+ -webkit-box-flex: 0;
349
+ -ms-flex: 0 0 50%;
350
+ flex: 0 0 50%;
351
+ max-width: 50%;
352
+ }
353
+ }
354
+
355
+ @media (min-width: 768px) {
356
+ .col {
357
+ -webkit-box-flex: 0;
358
+ -ms-flex: 0 0 33.33333%;
359
+ flex: 0 0 33.33333%;
360
+ max-width: 33.33333%;
361
+ }
362
+ }
363
+
364
+ .wp-core-ui .col .button {
365
+ display: block;
366
+ text-align: center;
367
+ }
368
+
369
+ .col_image {
370
+ background-position: center;
371
+ background-repeat: no-repeat;
372
+ background-size: cover;
373
+ border-radius: 6px;
374
+ background-color: #e5e5e5;
375
+ padding-bottom: 60%;
376
+ margin-bottom: 15px;
377
+ position: relative;
378
+ }
379
+
380
+ .col_image:after {
381
+ content: '';
382
+ position: absolute;
383
+ top: 0;
384
+ left: 0;
385
+ width: 100%;
386
+ height: 100%;
387
+ background-color: #ffa200;
388
+ opacity: .15;
389
+ }
390
+
391
+ /* jQuery UI hacks */
392
+ .ui-tabs {
393
+ position: relative;
394
+ padding: .2em;
395
+ }
396
+
397
+ .ui-tabs-nav {
398
+ margin: 0;
399
+ padding: .2em .2em 0;
400
+ }
401
+
402
+ .ui-helper-clearfix {
403
+ min-height: 0;
404
+ }
405
+
406
+ .ui-helper-reset {
407
+ margin: 0;
408
+ padding: 0;
409
+ border: 0;
410
+ outline: 0;
411
+ line-height: 1.3;
412
+ text-decoration: none;
413
+ font-size: 100%;
414
+ list-style: none;
415
+ }
416
+
417
+ .ui-helper-clearfix:before, .ui-helper-clearfix:after {
418
+ content: "";
419
+ display: table;
420
+ border-collapse: collapse;
421
+ }
422
+
423
+ .ui-helper-clearfix:after {
424
+ clear: both;
425
+ }
426
+
427
+ .ui-tabs .ui-tabs-nav li {
428
+ list-style: none;
429
+ float: left;
430
+ position: relative;
431
+ top: 0;
432
+ margin: 1px .2em 0 0;
433
+ border-bottom-width: 0;
434
+ padding: 0;
435
+ white-space: nowrap;
436
+ background: #eee;
437
+ }
438
+
439
+ .ui-tabs .ui-tabs-nav .ui-tabs-anchor {
440
+ float: left;
441
+ padding: .5em 1em;
442
+ text-decoration: none;
443
+ }
444
+
445
+ .ui-tabs .ui-tabs-nav li.ui-tabs-active {
446
+ background: #fff;
447
+ }
448
+
449
+ .handle {
450
+ cursor: move;
451
+ }
452
+
453
+ .gdpr-table {
454
+ width: 100%;
455
+ }
456
+
457
+ .gdpr-footer-links {
458
+ padding-bottom: 50px;
459
+ }
460
+
461
+ .slidePadding {
462
+ display: block;
463
+ padding-top: 1px;
464
+ padding-bottom: 1px;
465
+ }
466
+
467
+ .gdpr-installer p.error {
468
+ font-size: 16px;
469
+ font-weight: 700;
470
+ color: #e34639;
471
+ }
472
+
473
+ /* gdpr-breadcrumbs */
474
+ .gdpr-breadcrumbs {
475
+ margin-bottom: 22px;
476
+ }
477
+
478
+ .gdpr-breadcrumbs:after {
479
+ display: block;
480
+ clear: both;
481
+ content: '';
482
+ }
483
+
484
+ .gdpr-breadcrumbs_unit {
485
+ box-sizing: border-box;
486
+ float: left;
487
+ width: 50%;
488
+ font-size: 14px;
489
+ line-height: 26px;
490
+ padding-right: 15px;
491
+ }
492
+
493
+ .gdpr-breadcrumbs_unit:nth-child(3),
494
+ .gdpr-breadcrumbs_unit:nth-child(4) {
495
+ margin-top: 10px;
496
+ }
497
+
498
+ .gdpr-breadcrumbs_item {
499
+ background-color: #dddddd;
500
+ padding: 2px 0;
501
+ text-align: center;
502
+ position: relative;
503
+ color: #555555;
504
+ padding-left: 8px;
505
+ }
506
+
507
+ .gdpr-breadcrumbs_item:after {
508
+ position: absolute;
509
+ right: -15px;
510
+ top: 0;
511
+ content: '';
512
+ width: 0;
513
+ height: 0;
514
+ border-style: solid;
515
+ border-width: 15px 0 15px 15px;
516
+ border-color: transparent transparent transparent #dddddd;
517
+ }
518
+
519
+ .gdpr-breadcrumbs_item:before {
520
+ position: absolute;
521
+ left: 0;
522
+ top: 0;
523
+ content: '';
524
+ width: 0;
525
+ height: 0;
526
+ border-style: solid;
527
+ border-width: 15px 0 15px 15px;
528
+ border-color: transparent transparent transparent #f1f1f1;
529
+ }
530
+
531
+ .gdpr-breadcrumbs_unit.active .gdpr-breadcrumbs_item {
532
+ background-color: #0095a8;
533
+ color: #fff;
534
+ font-weight: 700;
535
+ }
536
+
537
+ .gdpr-breadcrumbs_unit.active .gdpr-breadcrumbs_item:after {
538
+ border-color: transparent transparent transparent #0095a8;
539
+ }
540
+
541
+ .gdpr-breadcrumbs_unit:first-child .gdpr-breadcrumbs_item:before,
542
+ .gdpr-breadcrumbs_unit:last-child .gdpr-breadcrumbs_item:after {
543
+ display: none;
544
+ }
545
+
546
+ .gdpr-breadcrumbs_unit:last-child {
547
+ padding: 0;
548
+ }
549
+
550
+ .gdpr-breadcrumbs_unit:last-child .gdpr-breadcrumbs_item {
551
+ padding-left: 0;
552
+ }
553
+
554
+ @media (min-width: 576px) {
555
+ .gdpr-breadcrumbs_unit {
556
+ width: 25%;
557
+ }
558
+
559
+ .gdpr-breadcrumbs_unit:nth-child(3),
560
+ .gdpr-breadcrumbs_unit:nth-child(4) {
561
+ margin-top: 0;
562
+ }
563
+ }
564
+
565
+ .gdpr_cf7_notice {
566
+ font-weight: 600;
567
+ background: #D6D6D6;
568
+ padding: 10px;
569
+ }
570
+
571
+ .gdpr_cf7_notice a {
572
+ cursor: pointer;
573
+ }
574
+
575
+ .gdpr_cf7_notice b {
576
+ font-weight: 800;
577
+ }
578
+
579
+ .button.button-secondary.button-side:hover {
580
+ color: #fff;
581
+ background: #0095a8;
582
+ transition: 0.5s;
583
+ font-weight: 600;
584
  }
assets/gdpr-installer.js CHANGED
@@ -1,58 +1,58 @@
1
- jQuery(function ($) {
2
-
3
- /**
4
- * Init select2
5
- */
6
- $('.js-gdpr-select2').select2({
7
- width: 'style'
8
- });
9
-
10
- $('#tabs').tabs();
11
-
12
- $(".sortable").sortable();
13
-
14
- /**
15
- * https://github.com/DubFriend/jquery.repeater
16
- */
17
- $repeater = $('.js-gdpr-repeater');
18
- if ($repeater.length) {
19
- $repeater.repeater({
20
- ready: function (setIndexes) {
21
- $(".sortable").on('sortupdate', setIndexes);
22
- }
23
- });
24
-
25
- if (typeof window.gdprConsentTypes !== undefined) {
26
- $repeater.setList(window.gdprConsentTypes);
27
- }
28
- }
29
-
30
- /**
31
- * Auto-fill DPA info
32
- */
33
- $('.js-gdpr-country-selector').on('change', function () {
34
- var dpaData, $website, $email, $phone;
35
- var countryCode = $(this).val();
36
-
37
- if (!window.gdprDpaData[countryCode]) {
38
- return;
39
- }
40
-
41
- dpaData = window.gdprDpaData[countryCode];
42
-
43
- $website = $('#gdpr_dpa_website');
44
- if ('' === $website.data('set')) {
45
- $website.val(dpaData['website']);
46
- }
47
-
48
- $email = $('#gdpr_dpa_email');
49
- if ('' === $email.data('set')) {
50
- $email.val(dpaData['email']);
51
- }
52
-
53
- $phone = $('#gdpr_dpa_phone');
54
- if ('' === $phone.data('set')) {
55
- $phone.val(dpaData['phone']);
56
- }
57
- });
58
- });
1
+ jQuery(function ($) {
2
+
3
+ /**
4
+ * Init select2
5
+ */
6
+ $('.js-gdpr-select2').select2({
7
+ width: 'style'
8
+ });
9
+
10
+ $('#tabs').tabs();
11
+
12
+ $(".sortable").sortable();
13
+
14
+ /**
15
+ * https://github.com/DubFriend/jquery.repeater
16
+ */
17
+ $repeater = $('.js-gdpr-repeater');
18
+ if ($repeater.length) {
19
+ $repeater.repeater({
20
+ ready: function (setIndexes) {
21
+ $(".sortable").on('sortupdate', setIndexes);
22
+ }
23
+ });
24
+
25
+ if (typeof window.gdprConsentTypes !== undefined) {
26
+ $repeater.setList(window.gdprConsentTypes);
27
+ }
28
+ }
29
+
30
+ /**
31
+ * Auto-fill DPA info
32
+ */
33
+ $('.js-gdpr-country-selector').on('change', function () {
34
+ var dpaData, $website, $email, $phone;
35
+ var countryCode = $(this).val();
36
+
37
+ if (!window.gdprDpaData[countryCode]) {
38
+ return;
39
+ }
40
+
41
+ dpaData = window.gdprDpaData[countryCode];
42
+
43
+ $website = $('#gdpr_dpa_website');
44
+ if ('' === $website.data('set')) {
45
+ $website.val(dpaData['website']);
46
+ }
47
+
48
+ $email = $('#gdpr_dpa_email');
49
+ if ('' === $email.data('set')) {
50
+ $email.val(dpaData['email']);
51
+ }
52
+
53
+ $phone = $('#gdpr_dpa_phone');
54
+ if ('' === $phone.data('set')) {
55
+ $phone.val(dpaData['phone']);
56
+ }
57
+ });
58
+ });
assets/gdpr-rhino.svg CHANGED
@@ -1,42 +1,42 @@
1
- <?xml version="1.0" encoding="utf-8"?>
2
- <!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
- <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
- viewBox="0 0 200 184.16" enable-background="new 0 0 200 184.16" xml:space="preserve">
5
- <path fill="#0095A8" d="M68.231,30.327l0.963,0.557l0.48-1.003c2.165-4.529,7.729-7.769,16.538-9.631
6
- c7.685-1.624,14.921-1.569,15.224-1.572l2.189,0.018l-0.753,2.055c-0.159,0.435-3.964,10.733-9.364,18.982l-0.795,1.215l1.41,0.346
7
- c0.189,0.047,10.648,2.551,24.498,2.551c11.416,0,25.137-1.703,37.298-7.886l0.839-0.427l-0.351-0.874
8
- c-2.805-6.968-9.737-13.46-20.045-18.775h-0.001c-14.728-7.591-34.4-11.771-55.393-11.771c-14.106,0-27.88,1.921-39.835,5.555
9
- l-1.864,0.567l1.519,1.219C49.318,18.297,59.321,25.176,68.231,30.327z"/>
10
- <path fill="#0095A8" d="M43.688,144.994l-0.763,0.659l0.643,0.775c10.468,12.634,22.864,23.576,36.845,32.524l0.554,0.354
11
- l0.554-0.355c16.89-10.809,31.363-24.421,43.019-40.458c1.847-2.542,3.687-5.243,5.467-8.029l0.694-1.086l-1.213-0.436
12
- C88.19,114.118,58.004,132.637,43.688,144.994z"/>
13
- <path fill="#FFA200" d="M188.447,29.518l-1.785-4.136l-0.187,4.501c-0.127,3.055-0.367,6.079-0.714,8.99
14
- c-1.792,15.057-6.219,26.337-13.159,33.528c-6.032,6.251-13.877,9.226-23.271,8.822c-0.952-0.064-9.353-0.788-11.247-6.271
15
- c-1.457-4.214,1.406-9.483,8.753-16.11c9.307-8.394,15.282-16.207,18.266-23.883l1.416-3.641l-3.025,2.472
16
- c-6.804,5.562-18.86,12.356-37.652,13.132c-6.599,0.268-23.328,0.448-36.131-3.678l-2.078-0.67l1.326-1.734
17
- c4.231-5.538,7.811-13.361,9.568-17.531l0.643-1.526l-1.653,0.1c-5.844,0.354-23.189,1.406-25.986,13.83l-2.015-1.114
18
- c-15.573-8.61-28.39-18.81-33.177-22.796l-0.457-0.381l-0.558,0.207c-3.508,1.298-6.787,2.73-9.748,4.256
19
- c-13.84,7.135-21.463,16.3-21.463,25.808c0,0.228,0.113,23.103,9.867,51.417c5.736,16.65,13.638,31.952,23.486,45.481
20
- c0.835,1.147,1.745,2.354,2.863,3.798l0.663,0.856l0.821-0.706c17.757-15.277,55.164-36.702,106.178-8.553l0.483,0.266l0.489-0.255
21
- c5.617-2.93,34.134-19.045,43.894-48.605C198.522,68.234,197.038,49.436,188.447,29.518z"/>
22
- <circle fill="#1F1F1F" cx="113.832" cy="74.693" r="5.619"/>
23
- <path fill="#1F1F1F" d="M185.298,21.712c-1.757,8.569-3.513,36.397-15.654,47.833c-5.179,5.366-11.962,7.914-20.098,7.571
24
- c-2.04-0.14-6.484-0.559-7.574-3.508c-0.384-1.11-0.409-4.47,7.621-11.712c0,0,22.418-17.262,17.92-35.129
25
- c-2.391,2.179-4.928,4.074-7.563,5.728c-3.331-7.659-10.772-14.631-21.704-20.267C122.947,4.343,102.606,0,80.968,0
26
- C59.33,0,38.99,4.343,23.691,12.229C8.413,20.105,0,30.568,0,41.692c0,0.235,0.115,23.8,10.092,52.757
27
- c5.868,17.037,13.96,32.703,24.048,46.562c12.275,16.862,27.571,31.093,45.463,42.295l1.365,0.854l1.365-0.854
28
- c17.929-11.228,33.25-25.491,45.536-42.396c2.123-2.92,4.186-5.982,6.158-9.109c4.267,1.772,8.645,3.896,13.135,6.43l1.151,0.65
29
- l1.198-0.557c1.456-0.678,35.789-16.997,47.239-51.598C203.77,65.507,199.18,34.458,185.298,21.712z M135.89,16.798
30
- c10.121,5.219,16.848,11.504,19.563,18.245c-26.884,13.67-61.084,5.254-61.084,5.254c5.462-8.345,9.289-18.701,9.468-19.191
31
- l1.255-3.425l-3.648-0.03c-0.313-0.003-7.702-0.043-15.445,1.594c-9.158,1.936-14.94,5.356-17.253,10.194
32
- c-9.919-5.735-19.809-12.765-27.313-18.785c11.811-3.591,25.364-5.511,39.535-5.511C101.802,5.141,121.306,9.282,135.89,16.798z
33
- M123.709,137.888c-11.584,15.938-25.959,29.456-42.741,40.197c-13.937-8.919-26.209-19.762-36.608-32.313
34
- c14.376-12.409,44.108-30.461,84.781-15.862C127.393,132.646,125.574,135.323,123.709,137.888z M191.881,85.069
35
- c-9.592,29.05-37.389,44.883-43.393,48.015c-51.928-28.655-90.002-6.247-107.345,8.674c-0.964-1.244-1.917-2.498-2.845-3.774
36
- c-9.788-13.445-17.643-28.657-23.345-45.211C5.278,64.692,5.141,41.918,5.141,41.692c0-9.103,7.424-17.944,20.905-24.894
37
- c3.009-1.55,6.238-2.949,9.634-4.206c8.144,6.78,20.398,15.752,33.337,22.906l3.278,1.813c1.478-11.925,16.557-13.873,25.283-14.402
38
- c-1.852,4.394-5.332,11.933-9.437,17.306l-2.209,2.891l3.463,1.117c12.994,4.186,29.847,3.997,36.488,3.727
39
- c19.412-0.801,31.493-7.83,38.261-13.363c-2.078,5.345-6.463,13.09-17.996,23.492c-7.687,6.934-10.642,12.563-9.036,17.21
40
- c2.111,6.105,11.069,6.888,12.15,6.961c9.72,0.41,17.836-2.664,24.08-9.134c7.099-7.356,11.62-18.836,13.44-34.12
41
- c0.389-3.264,0.607-6.338,0.72-9.069C195.997,49.619,197.475,68.127,191.881,85.069z"/>
42
- </svg>
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
+ viewBox="0 0 200 184.16" enable-background="new 0 0 200 184.16" xml:space="preserve">
5
+ <path fill="#0095A8" d="M68.231,30.327l0.963,0.557l0.48-1.003c2.165-4.529,7.729-7.769,16.538-9.631
6
+ c7.685-1.624,14.921-1.569,15.224-1.572l2.189,0.018l-0.753,2.055c-0.159,0.435-3.964,10.733-9.364,18.982l-0.795,1.215l1.41,0.346
7
+ c0.189,0.047,10.648,2.551,24.498,2.551c11.416,0,25.137-1.703,37.298-7.886l0.839-0.427l-0.351-0.874
8
+ c-2.805-6.968-9.737-13.46-20.045-18.775h-0.001c-14.728-7.591-34.4-11.771-55.393-11.771c-14.106,0-27.88,1.921-39.835,5.555
9
+ l-1.864,0.567l1.519,1.219C49.318,18.297,59.321,25.176,68.231,30.327z"/>
10
+ <path fill="#0095A8" d="M43.688,144.994l-0.763,0.659l0.643,0.775c10.468,12.634,22.864,23.576,36.845,32.524l0.554,0.354
11
+ l0.554-0.355c16.89-10.809,31.363-24.421,43.019-40.458c1.847-2.542,3.687-5.243,5.467-8.029l0.694-1.086l-1.213-0.436
12
+ C88.19,114.118,58.004,132.637,43.688,144.994z"/>
13
+ <path fill="#FFA200" d="M188.447,29.518l-1.785-4.136l-0.187,4.501c-0.127,3.055-0.367,6.079-0.714,8.99
14
+ c-1.792,15.057-6.219,26.337-13.159,33.528c-6.032,6.251-13.877,9.226-23.271,8.822c-0.952-0.064-9.353-0.788-11.247-6.271
15
+ c-1.457-4.214,1.406-9.483,8.753-16.11c9.307-8.394,15.282-16.207,18.266-23.883l1.416-3.641l-3.025,2.472
16
+ c-6.804,5.562-18.86,12.356-37.652,13.132c-6.599,0.268-23.328,0.448-36.131-3.678l-2.078-0.67l1.326-1.734
17
+ c4.231-5.538,7.811-13.361,9.568-17.531l0.643-1.526l-1.653,0.1c-5.844,0.354-23.189,1.406-25.986,13.83l-2.015-1.114
18
+ c-15.573-8.61-28.39-18.81-33.177-22.796l-0.457-0.381l-0.558,0.207c-3.508,1.298-6.787,2.73-9.748,4.256
19
+ c-13.84,7.135-21.463,16.3-21.463,25.808c0,0.228,0.113,23.103,9.867,51.417c5.736,16.65,13.638,31.952,23.486,45.481
20
+ c0.835,1.147,1.745,2.354,2.863,3.798l0.663,0.856l0.821-0.706c17.757-15.277,55.164-36.702,106.178-8.553l0.483,0.266l0.489-0.255
21
+ c5.617-2.93,34.134-19.045,43.894-48.605C198.522,68.234,197.038,49.436,188.447,29.518z"/>
22
+ <circle fill="#1F1F1F" cx="113.832" cy="74.693" r="5.619"/>
23
+ <path fill="#1F1F1F" d="M185.298,21.712c-1.757,8.569-3.513,36.397-15.654,47.833c-5.179,5.366-11.962,7.914-20.098,7.571
24
+ c-2.04-0.14-6.484-0.559-7.574-3.508c-0.384-1.11-0.409-4.47,7.621-11.712c0,0,22.418-17.262,17.92-35.129
25
+ c-2.391,2.179-4.928,4.074-7.563,5.728c-3.331-7.659-10.772-14.631-21.704-20.267C122.947,4.343,102.606,0,80.968,0
26
+ C59.33,0,38.99,4.343,23.691,12.229C8.413,20.105,0,30.568,0,41.692c0,0.235,0.115,23.8,10.092,52.757
27
+ c5.868,17.037,13.96,32.703,24.048,46.562c12.275,16.862,27.571,31.093,45.463,42.295l1.365,0.854l1.365-0.854
28
+ c17.929-11.228,33.25-25.491,45.536-42.396c2.123-2.92,4.186-5.982,6.158-9.109c4.267,1.772,8.645,3.896,13.135,6.43l1.151,0.65
29
+ l1.198-0.557c1.456-0.678,35.789-16.997,47.239-51.598C203.77,65.507,199.18,34.458,185.298,21.712z M135.89,16.798
30
+ c10.121,5.219,16.848,11.504,19.563,18.245c-26.884,13.67-61.084,5.254-61.084,5.254c5.462-8.345,9.289-18.701,9.468-19.191
31
+ l1.255-3.425l-3.648-0.03c-0.313-0.003-7.702-0.043-15.445,1.594c-9.158,1.936-14.94,5.356-17.253,10.194
32
+ c-9.919-5.735-19.809-12.765-27.313-18.785c11.811-3.591,25.364-5.511,39.535-5.511C101.802,5.141,121.306,9.282,135.89,16.798z
33
+ M123.709,137.888c-11.584,15.938-25.959,29.456-42.741,40.197c-13.937-8.919-26.209-19.762-36.608-32.313
34
+ c14.376-12.409,44.108-30.461,84.781-15.862C127.393,132.646,125.574,135.323,123.709,137.888z M191.881,85.069
35
+ c-9.592,29.05-37.389,44.883-43.393,48.015c-51.928-28.655-90.002-6.247-107.345,8.674c-0.964-1.244-1.917-2.498-2.845-3.774
36
+ c-9.788-13.445-17.643-28.657-23.345-45.211C5.278,64.692,5.141,41.918,5.141,41.692c0-9.103,7.424-17.944,20.905-24.894
37
+ c3.009-1.55,6.238-2.949,9.634-4.206c8.144,6.78,20.398,15.752,33.337,22.906l3.278,1.813c1.478-11.925,16.557-13.873,25.283-14.402
38
+ c-1.852,4.394-5.332,11.933-9.437,17.306l-2.209,2.891l3.463,1.117c12.994,4.186,29.847,3.997,36.488,3.727
39
+ c19.412-0.801,31.493-7.83,38.261-13.363c-2.078,5.345-6.463,13.09-17.996,23.492c-7.687,6.934-10.642,12.563-9.036,17.21
40
+ c2.111,6.105,11.069,6.888,12.15,6.961c9.72,0.41,17.836-2.664,24.08-9.134c7.099-7.356,11.62-18.836,13.44-34.12
41
+ c0.389-3.264,0.607-6.338,0.72-9.069C195.997,49.619,197.475,68.127,191.881,85.069z"/>
42
+ </svg>
assets/images/filefacets-logo.png ADDED
Binary file
assets/images/sort_asc.png ADDED
Binary file
assets/images/sort_asc_disabled.png ADDED
Binary file
assets/images/sort_both.png ADDED
Binary file
assets/images/sort_desc.png ADDED
Binary file
assets/images/sort_desc_disabled.png ADDED
Binary file
assets/iris-init.js CHANGED
@@ -1,18 +1,18 @@
1
- jQuery(document).ready(function($){
2
-
3
- $('.gdpr-color-picker').iris({
4
- hide: true,
5
- palettes: true
6
- });
7
- $(document).click(function (e) {
8
- if (!$(e.target).is(".gdpr-color-picker, .iris-picker, .iris-picker-inner")) {
9
- $('.gdpr-color-picker').iris('hide');
10
- }
11
- });
12
- $('.gdpr-color-picker').click(function (event) {
13
- $('.gdpr-color-picker').iris('hide');
14
- $(this).iris('show');
15
- return false;
16
- });
17
-
18
- });
1
+ jQuery(document).ready(function($){
2
+
3
+ $('.gdpr-color-picker').iris({
4
+ hide: true,
5
+ palettes: true
6
+ });
7
+ $(document).click(function (e) {
8
+ if (!$(e.target).is(".gdpr-color-picker, .iris-picker, .iris-picker-inner")) {
9
+ $('.gdpr-color-picker').iris('hide');
10
+ }
11
+ });
12
+ $('.gdpr-color-picker').click(function (event) {
13
+ $('.gdpr-color-picker').iris('hide');
14
+ $(this).iris('show');
15
+ return false;
16
+ });
17
+
18
+ });
assets/iris.min.js CHANGED
@@ -1,4 +1,4 @@
1
- /*! Iris Color Picker - v1.0.7 - 2014-11-28
2
- * https://github.com/Automattic/Iris
3
- * Copyright (c) 2014 Matt Wiebe; Licensed GPLv2 */
4
  !function(a,b){function c(){var b,c,d="backgroundImage";j?k="filter":(b=a('<div id="iris-gradtest" />'),c="linear-gradient(top,#fff,#000)",a.each(l,function(a,e){return b.css(d,e+c),b.css(d).match("gradient")?(k=a,!1):void 0}),k===!1&&(b.css("background","-webkit-gradient(linear,0% 0%,0% 100%,from(#fff),to(#000))"),b.css(d).match("gradient")&&(k="webkit")),b.remove())}function d(b,c){return b="top"===b?"top":"left",c=a.isArray(c)?c:Array.prototype.slice.call(arguments,1),"webkit"===k?f(b,c):l[k]+"linear-gradient("+b+", "+c.join(", ")+")"}function e(b,c){var d,e,f,h,i,j,k,l,m;b="top"===b?"top":"left",c=a.isArray(c)?c:Array.prototype.slice.call(arguments,1),d="top"===b?0:1,e=a(this),f=c.length-1,h="filter",i=1===d?"left":"top",j=1===d?"right":"bottom",k=1===d?"height":"width",l='<div class="iris-ie-gradient-shim" style="position:absolute;'+k+":100%;"+i+":%start%;"+j+":%end%;"+h+':%filter%;" data-color:"%color%"></div>',m="","static"===e.css("position")&&e.css({position:"relative"}),c=g(c),a.each(c,function(a,b){var e,g,h;return a===f?!1:(e=c[a+1],b.stop!==e.stop&&(g=100-parseFloat(e.stop)+"%",b.octoHex=new Color(b.color).toIEOctoHex(),e.octoHex=new Color(e.color).toIEOctoHex(),h="progid:DXImageTransform.Microsoft.Gradient(GradientType="+d+", StartColorStr='"+b.octoHex+"', EndColorStr='"+e.octoHex+"')",m+=l.replace("%start%",b.stop).replace("%end%",g).replace("%filter%",h)),void 0)}),e.find(".iris-ie-gradient-shim").remove(),a(m).prependTo(e)}function f(b,c){var d=[];return b="top"===b?"0% 0%,0% 100%,":"0% 100%,100% 100%,",c=g(c),a.each(c,function(a,b){d.push("color-stop("+parseFloat(b.stop)/100+", "+b.color+")")}),"-webkit-gradient(linear,"+b+d.join(",")+")"}function g(b){var c=[],d=[],e=[],f=b.length-1;return a.each(b,function(a,b){var e=b,f=!1,g=b.match(/1?[0-9]{1,2}%$/);g&&(e=b.replace(/\s?1?[0-9]{1,2}%$/,""),f=g.shift()),c.push(e),d.push(f)}),d[0]===!1&&(d[0]="0%"),d[f]===!1&&(d[f]="100%"),d=h(d),a.each(d,function(a){e[a]={color:c[a],stop:d[a]}}),e}function h(b){var c,d,e,f,g=0,i=b.length-1,j=0,k=!1;if(b.length<=2||a.inArray(!1,b)<0)return b;for(;j<b.length-1;)k||b[j]!==!1?k&&b[j]!==!1&&(i=j,j=b.length):(g=j-1,k=!0),j++;for(d=i-g,f=parseInt(b[g].replace("%"),10),c=(parseFloat(b[i].replace("%"))-f)/d,j=g+1,e=1;i>j;)b[j]=f+e*c+"%",e++,j++;return h(b)}var i,j,k,l,m,n,o,p,q;return i='<div class="iris-picker"><div class="iris-picker-inner"><div class="iris-square"><a class="iris-square-value" href="#"><span class="iris-square-handle ui-slider-handle"></span></a><div class="iris-square-inner iris-square-horiz"></div><div class="iris-square-inner iris-square-vert"></div></div><div class="iris-slider iris-strip"><div class="iris-slider-offset"></div></div></div></div>',m='.iris-picker{display:block;position:relative}.iris-picker,.iris-picker *{-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}input+.iris-picker{margin-top:4px}.iris-error{background-color:#ffafaf}.iris-border{border-radius:3px;border:1px solid #aaa;width:200px;background-color:#fff}.iris-picker-inner{position:absolute;top:0;right:0;left:0;bottom:0}.iris-border .iris-picker-inner{top:10px;right:10px;left:10px;bottom:10px}.iris-picker .iris-square-inner{position:absolute;left:0;right:0;top:0;bottom:0}.iris-picker .iris-square,.iris-picker .iris-slider,.iris-picker .iris-square-inner,.iris-picker .iris-palette{border-radius:3px;box-shadow:inset 0 0 5px rgba(0,0,0,.4);height:100%;width:12.5%;float:left;margin-right:5%}.iris-picker .iris-square{width:76%;margin-right:10%;position:relative}.iris-picker .iris-square-inner{width:auto;margin:0}.iris-ie-9 .iris-square,.iris-ie-9 .iris-slider,.iris-ie-9 .iris-square-inner,.iris-ie-9 .iris-palette{box-shadow:none;border-radius:0}.iris-ie-9 .iris-square,.iris-ie-9 .iris-slider,.iris-ie-9 .iris-palette{outline:1px solid rgba(0,0,0,.1)}.iris-ie-lt9 .iris-square,.iris-ie-lt9 .iris-slider,.iris-ie-lt9 .iris-square-inner,.iris-ie-lt9 .iris-palette{outline:1px solid #aaa}.iris-ie-lt9 .iris-square .ui-slider-handle{outline:1px solid #aaa;background-color:#fff;-ms-filter:"alpha(Opacity=30)"}.iris-ie-lt9 .iris-square .iris-square-handle{background:0;border:3px solid #fff;-ms-filter:"alpha(Opacity=50)"}.iris-picker .iris-strip{margin-right:0;position:relative}.iris-picker .iris-strip .ui-slider-handle{position:absolute;background:0;margin:0;right:-3px;left:-3px;border:4px solid #aaa;border-width:4px 3px;width:auto;height:6px;border-radius:4px;box-shadow:0 1px 2px rgba(0,0,0,.2);opacity:.9;z-index:5;cursor:ns-resize}.iris-strip .ui-slider-handle:before{content:" ";position:absolute;left:-2px;right:-2px;top:-3px;bottom:-3px;border:2px solid #fff;border-radius:3px}.iris-picker .iris-slider-offset{position:absolute;top:11px;left:0;right:0;bottom:-3px;width:auto;height:auto;background:transparent;border:0;border-radius:0}.iris-picker .iris-square-handle{background:transparent;border:5px solid #aaa;border-radius:50%;border-color:rgba(128,128,128,.5);box-shadow:none;width:12px;height:12px;position:absolute;left:-10px;top:-10px;cursor:move;opacity:1;z-index:10}.iris-picker .ui-state-focus .iris-square-handle{opacity:.8}.iris-picker .iris-square-handle:hover{border-color:#999}.iris-picker .iris-square-value:focus .iris-square-handle{box-shadow:0 0 2px rgba(0,0,0,.75);opacity:.8}.iris-picker .iris-square-handle:hover::after{border-color:#fff}.iris-picker .iris-square-handle::after{position:absolute;bottom:-4px;right:-4px;left:-4px;top:-4px;border:3px solid #f9f9f9;border-color:rgba(255,255,255,.8);border-radius:50%;content:" "}.iris-picker .iris-square-value{width:8px;height:8px;position:absolute}.iris-ie-lt9 .iris-square-value,.iris-mozilla .iris-square-value{width:1px;height:1px}.iris-palette-container{position:absolute;bottom:0;left:0;margin:0;padding:0}.iris-border .iris-palette-container{left:10px;bottom:10px}.iris-picker .iris-palette{margin:0;cursor:pointer}.iris-square-handle,.ui-slider-handle{border:0;outline:0}',o=navigator.userAgent.toLowerCase(),p="Microsoft Internet Explorer"===navigator.appName,q=p?parseFloat(o.match(/msie ([0-9]{1,}[\.0-9]{0,})/)[1]):0,j=p&&10>q,k=!1,l=["-moz-","-webkit-","-o-","-ms-"],j&&7>=q?(a.fn.iris=a.noop,a.support.iris=!1,void 0):(a.support.iris=!0,a.fn.gradient=function(){var b=arguments;return this.each(function(){j?e.apply(this,b):a(this).css("backgroundImage",d.apply(this,b))})},a.fn.raninbowGradient=function(b,c){var d,e,f,g;for(b=b||"top",d=a.extend({},{s:100,l:50},c),e="hsl(%h%,"+d.s+"%,"+d.l+"%)",f=0,g=[];360>=f;)g.push(e.replace("%h%",f)),f+=30;return this.each(function(){a(this).gradient(b,g)})},n={options:{color:!1,mode:"hsl",controls:{horiz:"s",vert:"l",strip:"h"},hide:!0,border:!0,target:!1,width:200,palettes:!1},_color:"",_palettes:["#000","#fff","#d33","#d93","#ee2","#81d742","#1e73be","#8224e3"],_inited:!1,_defaultHSLControls:{horiz:"s",vert:"l",strip:"h"},_defaultHSVControls:{horiz:"h",vert:"v",strip:"s"},_scale:{h:360,s:100,l:100,v:100},_create:function(){var b=this,d=b.element,e=b.options.color||d.val();k===!1&&c(),d.is("input")?(b.picker=b.options.target?a(i).appendTo(b.options.target):a(i).insertAfter(d),b._addInputListeners(d)):(d.append(i),b.picker=d.find(".iris-picker")),p?9===q?b.picker.addClass("iris-ie-9"):8>=q&&b.picker.addClass("iris-ie-lt9"):o.indexOf("compatible")<0&&o.indexOf("khtml")<0&&o.match(/mozilla/)&&b.picker.addClass("iris-mozilla"),b.options.palettes&&b._addPalettes(),b._color=new Color(e).setHSpace(b.options.mode),b.options.color=b._color.toString(),b.controls={square:b.picker.find(".iris-square"),squareDrag:b.picker.find(".iris-square-value"),horiz:b.picker.find(".iris-square-horiz"),vert:b.picker.find(".iris-square-vert"),strip:b.picker.find(".iris-strip"),stripSlider:b.picker.find(".iris-strip .iris-slider-offset")},"hsv"===b.options.mode&&b._has("l",b.options.controls)?b.options.controls=b._defaultHSVControls:"hsl"===b.options.mode&&b._has("v",b.options.controls)&&(b.options.controls=b._defaultHSLControls),b.hue=b._color.h(),b.options.hide&&b.picker.hide(),b.options.border&&b.picker.addClass("iris-border"),b._initControls(),b.active="external",b._dimensions(),b._change()},_has:function(b,c){var d=!1;return a.each(c,function(a,c){return b===c?(d=!0,!1):void 0}),d},_addPalettes:function(){var b=a('<div class="iris-palette-container" />'),c=a('<a class="iris-palette" tabindex="0" />'),d=a.isArray(this.options.palettes)?this.options.palettes:this._palettes;this.picker.find(".iris-palette-container").length&&(b=this.picker.find(".iris-palette-container").detach().html("")),a.each(d,function(a,d){c.clone().data("color",d).css("backgroundColor",d).appendTo(b).height(10).width(10)}),this.picker.append(b)},_paint:function(){var a=this;a._paintDimension("top","strip"),a._paintDimension("top","vert"),a._paintDimension("left","horiz")},_paintDimension:function(a,b){var c,d=this,e=d._color,f=d.options.mode,g=d._getHSpaceColor(),h=d.controls[b],i=d.options.controls;if(b!==d.active&&("square"!==d.active||"strip"===b))switch(i[b]){case"h":if("hsv"===f){switch(g=e.clone(),b){case"horiz":g[i.vert](100);break;case"vert":g[i.horiz](100);break;case"strip":g.setHSpace("hsl")}c=g.toHsl()}else c="strip"===b?{s:g.s,l:g.l}:{s:100,l:g.l};h.raninbowGradient(a,c);break;case"s":"hsv"===f?"vert"===b?c=[e.clone().a(0).s(0).toCSS("rgba"),e.clone().a(1).s(0).toCSS("rgba")]:"strip"===b?c=[e.clone().s(100).toCSS("hsl"),e.clone().s(0).toCSS("hsl")]:"horiz"===b&&(c=["#fff","hsl("+g.h+",100%,50%)"]):c="vert"===b&&"h"===d.options.controls.horiz?["hsla(0, 0%, "+g.l+"%, 0)","hsla(0, 0%, "+g.l+"%, 1)"]:["hsl("+g.h+",0%,50%)","hsl("+g.h+",100%,50%)"],h.gradient(a,c);break;case"l":c="strip"===b?["hsl("+g.h+",100%,100%)","hsl("+g.h+", "+g.s+"%,50%)","hsl("+g.h+",100%,0%)"]:["#fff","rgba(255,255,255,0) 50%","rgba(0,0,0,0) 50%","rgba(0,0,0,1)"],h.gradient(a,c);break;case"v":c="strip"===b?[e.clone().v(100).toCSS(),e.clone().v(0).toCSS()]:["rgba(0,0,0,0)","#000"],h.gradient(a,c)}},_getHSpaceColor:function(){return"hsv"===this.options.mode?this._color.toHsv():this._color.toHsl()},_dimensions:function(b){var c,d,e,f,g=this,h=g.options,i=g.controls,j=i.square,k=g.picker.find(".iris-strip"),l="77.5%",m="12%",n=20,o=h.border?h.width-n:h.width,p=a.isArray(h.palettes)?h.palettes.length:g._palettes.length;return b&&(j.css("width",""),k.css("width",""),g.picker.css({width:"",height:""})),l=o*(parseFloat(l)/100),m=o*(parseFloat(m)/100),c=h.border?l+n:l,j.width(l).height(l),k.height(l).width(m),g.picker.css({width:h.width,height:c}),h.palettes?(d=2*l/100,f=l-(p-1)*d,e=f/p,g.picker.find(".iris-palette").each(function(b){var c=0===b?0:d;a(this).css({width:e,height:e,marginLeft:c})}),g.picker.css("paddingBottom",e+d),k.height(e+d+l),void 0):g.picker.css("paddingBottom","")},_addInputListeners:function(a){var b=this,c=100,d=function(c){var d=new Color(a.val()),e=a.val().replace(/^#/,"");a.removeClass("iris-error"),d.error?""!==e&&a.addClass("iris-error"):d.toString()!==b._color.toString()&&("keyup"===c.type&&e.match(/^[0-9a-fA-F]{3}$/)||b._setOption("color",d.toString()))};a.on("change",d).on("keyup",b._debounce(d,c)),b.options.hide&&a.one("focus",function(){b.show()})},_initControls:function(){var b=this,c=b.controls,d=c.square,e=b.options.controls,f=b._scale[e.strip];c.stripSlider.slider({orientation:"vertical",max:f,slide:function(a,c){b.active="strip","h"===e.strip&&(c.value=f-c.value),b._color[e.strip](c.value),b._change.apply(b,arguments)}}),c.squareDrag.draggable({containment:c.square.find(".iris-square-inner"),zIndex:1e3,cursor:"move",drag:function(a,c){b._squareDrag(a,c)},start:function(){d.addClass("iris-dragging"),a(this).addClass("ui-state-focus")},stop:function(){d.removeClass("iris-dragging"),a(this).removeClass("ui-state-focus")}}).on("mousedown mouseup",function(c){var d="ui-state-focus";c.preventDefault(),"mousedown"===c.type?(b.picker.find("."+d).removeClass(d).blur(),a(this).addClass(d).focus()):a(this).removeClass(d)}).on("keydown",function(a){var d=c.square,e=c.squareDrag,f=e.position(),g=b.options.width/100;switch(a.altKey&&(g*=10),a.keyCode){case 37:f.left-=g;break;case 38:f.top-=g;break;case 39:f.left+=g;break;case 40:f.top+=g;break;default:return!0}f.left=Math.max(0,Math.min(f.left,d.width())),f.top=Math.max(0,Math.min(f.top,d.height())),e.css(f),b._squareDrag(a,{position:f}),a.preventDefault()}),d.mousedown(function(c){var d,e;1===c.which&&a(c.target).is("div")&&(d=b.controls.square.offset(),e={top:c.pageY-d.top,left:c.pageX-d.left},c.preventDefault(),b._squareDrag(c,{position:e}),c.target=b.controls.squareDrag.get(0),b.controls.squareDrag.css(e).trigger(c))}),b.options.palettes&&b._paletteListeners()},_paletteListeners:function(){var b=this;b.picker.find(".iris-palette-container").on("click.palette",".iris-palette",function(){b._color.fromCSS(a(this).data("color")),b.active="external",b._change()}).on("keydown.palette",".iris-palette",function(b){return 13!==b.keyCode&&32!==b.keyCode?!0:(b.stopPropagation(),a(this).click(),void 0)})},_squareDrag:function(a,b){var c=this,d=c.options.controls,e=c._squareDimensions(),f=Math.round((e.h-b.position.top)/e.h*c._scale[d.vert]),g=c._scale[d.horiz]-Math.round((e.w-b.position.left)/e.w*c._scale[d.horiz]);c._color[d.horiz](g)[d.vert](f),c.active="square",c._change.apply(c,arguments)},_setOption:function(b,c){var d,e,f,g=this,h=g.options[b],i=!1;switch(g.options[b]=c,b){case"color":c=""+c,d=c.replace(/^#/,""),e=new Color(c).setHSpace(g.options.mode),e.error?g.options[b]=h:(g._color=e,g.options.color=g.options[b]=g._color.toString(),g.active="external",g._change());break;case"palettes":i=!0,c?g._addPalettes():g.picker.find(".iris-palette-container").remove(),h||g._paletteListeners();break;case"width":i=!0;break;case"border":i=!0,f=c?"addClass":"removeClass",g.picker[f]("iris-border");break;case"mode":case"controls":if(h===c)return;return f=g.element,h=g.options,h.hide=!g.picker.is(":visible"),g.destroy(),g.picker.remove(),a(g.element).iris(h)}i&&g._dimensions(!0)},_squareDimensions:function(a){var c,d,e=this.controls.square;return a!==b&&e.data("dimensions")?e.data("dimensions"):(d=this.controls.squareDrag,c={w:e.width(),h:e.height()},e.data("dimensions",c),c)},_isNonHueControl:function(a,b){return"square"===a&&"h"===this.options.controls.strip?!0:"external"===b||"h"===b&&"strip"===a?!1:!0},_change:function(){var b=this,c=b.controls,d=b._getHSpaceColor(),e=["square","strip"],f=b.options.controls,g=f[b.active]||"external",h=b.hue;"strip"===b.active?e=[]:"external"!==b.active&&e.pop(),a.each(e,function(a,e){var g,h,i;if(e!==b.active)switch(e){case"strip":g="h"===f.strip?b._scale[f.strip]-d[f.strip]:d[f.strip],c.stripSlider.slider("value",g);break;case"square":h=b._squareDimensions(),i={left:d[f.horiz]/b._scale[f.horiz]*h.w,top:h.h-d[f.vert]/b._scale[f.vert]*h.h},b.controls.squareDrag.css(i)}}),d.h!==h&&b._isNonHueControl(b.active,g)&&b._color.h(h),b.hue=b._color.h(),b.options.color=b._color.toString(),b._inited&&b._trigger("change",{type:b.active},{color:b._color}),b.element.is(":input")&&!b._color.error&&(b.element.removeClass("iris-error"),b.element.val()!==b._color.toString()&&b.element.val(b._color.toString())),b._paint(),b._inited=!0,b.active=!1},_debounce:function(a,b,c){var d,e;return function(){var f,g,h=this,i=arguments;return f=function(){d=null,c||(e=a.apply(h,i))},g=c&&!d,clearTimeout(d),d=setTimeout(f,b),g&&(e=a.apply(h,i)),e}},show:function(){this.picker.show()},hide:function(){this.picker.hide()},toggle:function(){this.picker.toggle()},color:function(a){return a===!0?this._color.clone():a===b?this._color.toString():(this.option("color",a),void 0)}},a.widget("a8c.iris",n),a('<style id="iris-css">'+m+"</style>").appendTo("head"),void 0)}(jQuery),function(a,b){var c=function(a,b){return this instanceof c?this._init(a,b):new c(a,b)};c.fn=c.prototype={_color:0,_alpha:1,error:!1,_hsl:{h:0,s:0,l:0},_hsv:{h:0,s:0,v:0},_hSpace:"hsl",_init:function(a){var c="noop";switch(typeof a){case"object":return a.a!==b&&this.a(a.a),c=a.r!==b?"fromRgb":a.l!==b?"fromHsl":a.v!==b?"fromHsv":c,this[c](a);case"string":return this.fromCSS(a);case"number":return this.fromInt(parseInt(a,10))}return this},_error:function(){return this.error=!0,this},clone:function(){for(var a=new c(this.toInt()),b=["_alpha","_hSpace","_hsl","_hsv","error"],d=b.length-1;d>=0;d--)a[b[d]]=this[b[d]];return a},setHSpace:function(a){return this._hSpace="hsv"===a?a:"hsl",this},noop:function(){return this},fromCSS:function(a){var b,c=/^(rgb|hs(l|v))a?\(/;if(this.error=!1,a=a.replace(/^\s+/,"").replace(/\s+$/,"").replace(/;$/,""),a.match(c)&&a.match(/\)$/)){if(b=a.replace(/(\s|%)/g,"").replace(c,"").replace(/,?\);?$/,"").split(","),b.length<3)return this._error();if(4===b.length&&(this.a(parseFloat(b.pop())),this.error))return this;for(var d=b.length-1;d>=0;d--)if(b[d]=parseInt(b[d],10),isNaN(b[d]))return this._error();return a.match(/^rgb/)?this.fromRgb({r:b[0],g:b[1],b:b[2]}):a.match(/^hsv/)?this.fromHsv({h:b[0],s:b[1],v:b[2]}):this.fromHsl({h:b[0],s:b[1],l:b[2]})}return this.fromHex(a)},fromRgb:function(a,c){return"object"!=typeof a||a.r===b||a.g===b||a.b===b?this._error():(this.error=!1,this.fromInt(parseInt((a.r<<16)+(a.g<<8)+a.b,10),c))},fromHex:function(a){return a=a.replace(/^#/,"").replace(/^0x/,""),3===a.length&&(a=a[0]+a[0]+a[1]+a[1]+a[2]+a[2]),this.error=!/^[0-9A-F]{6}$/i.test(a),this.fromInt(parseInt(a,16))},fromHsl:function(a){var c,d,e,f,g,h,i,j;return"object"!=typeof a||a.h===b||a.s===b||a.l===b?this._error():(this._hsl=a,this._hSpace="hsl",h=a.h/360,i=a.s/100,j=a.l/100,0===i?c=d=e=j:(f=.5>j?j*(1+i):j+i-j*i,g=2*j-f,c=this.hue2rgb(g,f,h+1/3),d=this.hue2rgb(g,f,h),e=this.hue2rgb(g,f,h-1/3)),this.fromRgb({r:255*c,g:255*d,b:255*e},!0))},fromHsv:function(a){var c,d,e,f,g,h,i,j,k,l,m;if("object"!=typeof a||a.h===b||a.s===b||a.v===b)return this._error();switch(this._hsv=a,this._hSpace="hsv",c=a.h/360,d=a.s/100,e=a.v/100,i=Math.floor(6*c),j=6*c-i,k=e*(1-d),l=e*(1-j*d),m=e*(1-(1-j)*d),i%6){case 0:f=e,g=m,h=k;break;case 1:f=l,g=e,h=k;break;case 2:f=k,g=e,h=m;break;case 3:f=k,g=l,h=e;break;case 4:f=m,g=k,h=e;break;case 5:f=e,g=k,h=l}return this.fromRgb({r:255*f,g:255*g,b:255*h},!0)},fromInt:function(a,c){return this._color=parseInt(a,10),isNaN(this._color)&&(this._color=0),this._color>16777215?this._color=16777215:this._color<0&&(this._color=0),c===b&&(this._hsv.h=this._hsv.s=this._hsl.h=this._hsl.s=0),this},hue2rgb:function(a,b,c){return 0>c&&(c+=1),c>1&&(c-=1),1/6>c?a+6*(b-a)*c:.5>c?b:2/3>c?a+6*(b-a)*(2/3-c):a},toString:function(){var a=parseInt(this._color,10).toString(16);if(this.error)return"";if(a.length<6)for(var b=6-a.length-1;b>=0;b--)a="0"+a;return"#"+a},toCSS:function(a,b){switch(a=a||"hex",b=parseFloat(b||this._alpha),a){case"rgb":case"rgba":var c=this.toRgb();return 1>b?"rgba( "+c.r+", "+c.g+", "+c.b+", "+b+" )":"rgb( "+c.r+", "+c.g+", "+c.b+" )";case"hsl":case"hsla":var d=this.toHsl();return 1>b?"hsla( "+d.h+", "+d.s+"%, "+d.l+"%, "+b+" )":"hsl( "+d.h+", "+d.s+"%, "+d.l+"% )";default:return this.toString()}},toRgb:function(){return{r:255&this._color>>16,g:255&this._color>>8,b:255&this._color}},toHsl:function(){var a,b,c=this.toRgb(),d=c.r/255,e=c.g/255,f=c.b/255,g=Math.max(d,e,f),h=Math.min(d,e,f),i=(g+h)/2;if(g===h)a=b=0;else{var j=g-h;switch(b=i>.5?j/(2-g-h):j/(g+h),g){case d:a=(e-f)/j+(f>e?6:0);break;case e:a=(f-d)/j+2;break;case f:a=(d-e)/j+4}a/=6}return a=Math.round(360*a),0===a&&this._hsl.h!==a&&(a=this._hsl.h),b=Math.round(100*b),0===b&&this._hsl.s&&(b=this._hsl.s),{h:a,s:b,l:Math.round(100*i)}},toHsv:function(){var a,b,c=this.toRgb(),d=c.r/255,e=c.g/255,f=c.b/255,g=Math.max(d,e,f),h=Math.min(d,e,f),i=g,j=g-h;if(b=0===g?0:j/g,g===h)a=b=0;else{switch(g){case d:a=(e-f)/j+(f>e?6:0);break;case e:a=(f-d)/j+2;break;case f:a=(d-e)/j+4}a/=6}return a=Math.round(360*a),0===a&&this._hsv.h!==a&&(a=this._hsv.h),b=Math.round(100*b),0===b&&this._hsv.s&&(b=this._hsv.s),{h:a,s:b,v:Math.round(100*i)}},toInt:function(){return this._color},toIEOctoHex:function(){var a=this.toString(),b=parseInt(255*this._alpha,10).toString(16);return 1===b.length&&(b="0"+b),"#"+b+a.replace(/^#/,"")},toLuminosity:function(){var a=this.toRgb();return.2126*Math.pow(a.r/255,2.2)+.7152*Math.pow(a.g/255,2.2)+.0722*Math.pow(a.b/255,2.2)},getDistanceLuminosityFrom:function(a){if(!(a instanceof c))throw"getDistanceLuminosityFrom requires a Color object";var b=this.toLuminosity(),d=a.toLuminosity();return b>d?(b+.05)/(d+.05):(d+.05)/(b+.05)},getMaxContrastColor:function(){var a=this.toLuminosity(),b=a>=.5?"000000":"ffffff";return new c(b)},getReadableContrastingColor:function(a,d){if(!a instanceof c)return this;var e=d===b?5:d,f=a.getDistanceLuminosityFrom(this),g=a.getMaxContrastColor(),h=g.getDistanceLuminosityFrom(a);if(e>=h)return g;if(f>=e)return this;for(var i=0===g.toInt()?-1:1;e>f&&(this.l(i,!0),f=this.getDistanceLuminosityFrom(a),0!==this._color&&16777215!==this._color););return this},a:function(a){if(a===b)return this._alpha;var c=parseFloat(a);return isNaN(c)?this._error():(this._alpha=c,this)},darken:function(a){return a=a||5,this.l(-a,!0)},lighten:function(a){return a=a||5,this.l(a,!0)},saturate:function(a){return a=a||15,this.s(a,!0)},desaturate:function(a){return a=a||15,this.s(-a,!0)},toGrayscale:function(){return this.setHSpace("hsl").s(0)},getComplement:function(){return this.h(180,!0)},getSplitComplement:function(a){a=a||1;var b=180+30*a;return this.h(b,!0)},getAnalog:function(a){a=a||1;var b=30*a;return this.h(b,!0)},getTetrad:function(a){a=a||1;var b=60*a;return this.h(b,!0)},getTriad:function(a){a=a||1;var b=120*a;return this.h(b,!0)},_partial:function(a){var c=d[a];return function(d,e){var f=this._spaceFunc("to",c.space);return d===b?f[a]:(e===!0&&(d=f[a]+d),c.mod&&(d%=c.mod),c.range&&(d=d<c.range[0]?c.range[0]:d>c.range[1]?c.range[1]:d),f[a]=d,this._spaceFunc("from",c.space,f))}},_spaceFunc:function(a,b,c){var d=b||this._hSpace,e=a+d.charAt(0).toUpperCase()+d.substr(1);return this[e](c)}};var d={h:{mod:360},s:{range:[0,100]},l:{space:"hsl",range:[0,100]},v:{space:"hsv",range:[0,100]},r:{space:"rgb",range:[0,255]},g:{space:"rgb",range:[0,255]},b:{space:"rgb",range:[0,255]}};for(var e in d)d.hasOwnProperty(e)&&(c.fn[e]=c.fn._partial(e));"object"==typeof exports?module.exports=c:a.Color=c}(this);
1
+ /*! Iris Color Picker - v1.0.7 - 2014-11-28
2
+ * https://github.com/Automattic/Iris
3
+ * Copyright (c) 2014 Matt Wiebe; Licensed GPLv2 */
4
  !function(a,b){function c(){var b,c,d="backgroundImage";j?k="filter":(b=a('<div id="iris-gradtest" />'),c="linear-gradient(top,#fff,#000)",a.each(l,function(a,e){return b.css(d,e+c),b.css(d).match("gradient")?(k=a,!1):void 0}),k===!1&&(b.css("background","-webkit-gradient(linear,0% 0%,0% 100%,from(#fff),to(#000))"),b.css(d).match("gradient")&&(k="webkit")),b.remove())}function d(b,c){return b="top"===b?"top":"left",c=a.isArray(c)?c:Array.prototype.slice.call(arguments,1),"webkit"===k?f(b,c):l[k]+"linear-gradient("+b+", "+c.join(", ")+")"}function e(b,c){var d,e,f,h,i,j,k,l,m;b="top"===b?"top":"left",c=a.isArray(c)?c:Array.prototype.slice.call(arguments,1),d="top"===b?0:1,e=a(this),f=c.length-1,h="filter",i=1===d?"left":"top",j=1===d?"right":"bottom",k=1===d?"height":"width",l='<div class="iris-ie-gradient-shim" style="position:absolute;'+k+":100%;"+i+":%start%;"+j+":%end%;"+h+':%filter%;" data-color:"%color%"></div>',m="","static"===e.css("position")&&e.css({position:"relative"}),c=g(c),a.each(c,function(a,b){var e,g,h;return a===f?!1:(e=c[a+1],b.stop!==e.stop&&(g=100-parseFloat(e.stop)+"%",b.octoHex=new Color(b.color).toIEOctoHex(),e.octoHex=new Color(e.color).toIEOctoHex(),h="progid:DXImageTransform.Microsoft.Gradient(GradientType="+d+", StartColorStr='"+b.octoHex+"', EndColorStr='"+e.octoHex+"')",m+=l.replace("%start%",b.stop).replace("%end%",g).replace("%filter%",h)),void 0)}),e.find(".iris-ie-gradient-shim").remove(),a(m).prependTo(e)}function f(b,c){var d=[];return b="top"===b?"0% 0%,0% 100%,":"0% 100%,100% 100%,",c=g(c),a.each(c,function(a,b){d.push("color-stop("+parseFloat(b.stop)/100+", "+b.color+")")}),"-webkit-gradient(linear,"+b+d.join(",")+")"}function g(b){var c=[],d=[],e=[],f=b.length-1;return a.each(b,function(a,b){var e=b,f=!1,g=b.match(/1?[0-9]{1,2}%$/);g&&(e=b.replace(/\s?1?[0-9]{1,2}%$/,""),f=g.shift()),c.push(e),d.push(f)}),d[0]===!1&&(d[0]="0%"),d[f]===!1&&(d[f]="100%"),d=h(d),a.each(d,function(a){e[a]={color:c[a],stop:d[a]}}),e}function h(b){var c,d,e,f,g=0,i=b.length-1,j=0,k=!1;if(b.length<=2||a.inArray(!1,b)<0)return b;for(;j<b.length-1;)k||b[j]!==!1?k&&b[j]!==!1&&(i=j,j=b.length):(g=j-1,k=!0),j++;for(d=i-g,f=parseInt(b[g].replace("%"),10),c=(parseFloat(b[i].replace("%"))-f)/d,j=g+1,e=1;i>j;)b[j]=f+e*c+"%",e++,j++;return h(b)}var i,j,k,l,m,n,o,p,q;return i='<div class="iris-picker"><div class="iris-picker-inner"><div class="iris-square"><a class="iris-square-value" href="#"><span class="iris-square-handle ui-slider-handle"></span></a><div class="iris-square-inner iris-square-horiz"></div><div class="iris-square-inner iris-square-vert"></div></div><div class="iris-slider iris-strip"><div class="iris-slider-offset"></div></div></div></div>',m='.iris-picker{display:block;position:relative}.iris-picker,.iris-picker *{-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}input+.iris-picker{margin-top:4px}.iris-error{background-color:#ffafaf}.iris-border{border-radius:3px;border:1px solid #aaa;width:200px;background-color:#fff}.iris-picker-inner{position:absolute;top:0;right:0;left:0;bottom:0}.iris-border .iris-picker-inner{top:10px;right:10px;left:10px;bottom:10px}.iris-picker .iris-square-inner{position:absolute;left:0;right:0;top:0;bottom:0}.iris-picker .iris-square,.iris-picker .iris-slider,.iris-picker .iris-square-inner,.iris-picker .iris-palette{border-radius:3px;box-shadow:inset 0 0 5px rgba(0,0,0,.4);height:100%;width:12.5%;float:left;margin-right:5%}.iris-picker .iris-square{width:76%;margin-right:10%;position:relative}.iris-picker .iris-square-inner{width:auto;margin:0}.iris-ie-9 .iris-square,.iris-ie-9 .iris-slider,.iris-ie-9 .iris-square-inner,.iris-ie-9 .iris-palette{box-shadow:none;border-radius:0}.iris-ie-9 .iris-square,.iris-ie-9 .iris-slider,.iris-ie-9 .iris-palette{outline:1px solid rgba(0,0,0,.1)}.iris-ie-lt9 .iris-square,.iris-ie-lt9 .iris-slider,.iris-ie-lt9 .iris-square-inner,.iris-ie-lt9 .iris-palette{outline:1px solid #aaa}.iris-ie-lt9 .iris-square .ui-slider-handle{outline:1px solid #aaa;background-color:#fff;-ms-filter:"alpha(Opacity=30)"}.iris-ie-lt9 .iris-square .iris-square-handle{background:0;border:3px solid #fff;-ms-filter:"alpha(Opacity=50)"}.iris-picker .iris-strip{margin-right:0;position:relative}.iris-picker .iris-strip .ui-slider-handle{position:absolute;background:0;margin:0;right:-3px;left:-3px;border:4px solid #aaa;border-width:4px 3px;width:auto;height:6px;border-radius:4px;box-shadow:0 1px 2px rgba(0,0,0,.2);opacity:.9;z-index:5;cursor:ns-resize}.iris-strip .ui-slider-handle:before{content:" ";position:absolute;left:-2px;right:-2px;top:-3px;bottom:-3px;border:2px solid #fff;border-radius:3px}.iris-picker .iris-slider-offset{position:absolute;top:11px;left:0;right:0;bottom:-3px;width:auto;height:auto;background:transparent;border:0;border-radius:0}.iris-picker .iris-square-handle{background:transparent;border:5px solid #aaa;border-radius:50%;border-color:rgba(128,128,128,.5);box-shadow:none;width:12px;height:12px;position:absolute;left:-10px;top:-10px;cursor:move;opacity:1;z-index:10}.iris-picker .ui-state-focus .iris-square-handle{opacity:.8}.iris-picker .iris-square-handle:hover{border-color:#999}.iris-picker .iris-square-value:focus .iris-square-handle{box-shadow:0 0 2px rgba(0,0,0,.75);opacity:.8}.iris-picker .iris-square-handle:hover::after{border-color:#fff}.iris-picker .iris-square-handle::after{position:absolute;bottom:-4px;right:-4px;left:-4px;top:-4px;border:3px solid #f9f9f9;border-color:rgba(255,255,255,.8);border-radius:50%;content:" "}.iris-picker .iris-square-value{width:8px;height:8px;position:absolute}.iris-ie-lt9 .iris-square-value,.iris-mozilla .iris-square-value{width:1px;height:1px}.iris-palette-container{position:absolute;bottom:0;left:0;margin:0;padding:0}.iris-border .iris-palette-container{left:10px;bottom:10px}.iris-picker .iris-palette{margin:0;cursor:pointer}.iris-square-handle,.ui-slider-handle{border:0;outline:0}',o=navigator.userAgent.toLowerCase(),p="Microsoft Internet Explorer"===navigator.appName,q=p?parseFloat(o.match(/msie ([0-9]{1,}[\.0-9]{0,})/)[1]):0,j=p&&10>q,k=!1,l=["-moz-","-webkit-","-o-","-ms-"],j&&7>=q?(a.fn.iris=a.noop,a.support.iris=!1,void 0):(a.support.iris=!0,a.fn.gradient=function(){var b=arguments;return this.each(function(){j?e.apply(this,b):a(this).css("backgroundImage",d.apply(this,b))})},a.fn.raninbowGradient=function(b,c){var d,e,f,g;for(b=b||"top",d=a.extend({},{s:100,l:50},c),e="hsl(%h%,"+d.s+"%,"+d.l+"%)",f=0,g=[];360>=f;)g.push(e.replace("%h%",f)),f+=30;return this.each(function(){a(this).gradient(b,g)})},n={options:{color:!1,mode:"hsl",controls:{horiz:"s",vert:"l",strip:"h"},hide:!0,border:!0,target:!1,width:200,palettes:!1},_color:"",_palettes:["#000","#fff","#d33","#d93","#ee2","#81d742","#1e73be","#8224e3"],_inited:!1,_defaultHSLControls:{horiz:"s",vert:"l",strip:"h"},_defaultHSVControls:{horiz:"h",vert:"v",strip:"s"},_scale:{h:360,s:100,l:100,v:100},_create:function(){var b=this,d=b.element,e=b.options.color||d.val();k===!1&&c(),d.is("input")?(b.picker=b.options.target?a(i).appendTo(b.options.target):a(i).insertAfter(d),b._addInputListeners(d)):(d.append(i),b.picker=d.find(".iris-picker")),p?9===q?b.picker.addClass("iris-ie-9"):8>=q&&b.picker.addClass("iris-ie-lt9"):o.indexOf("compatible")<0&&o.indexOf("khtml")<0&&o.match(/mozilla/)&&b.picker.addClass("iris-mozilla"),b.options.palettes&&b._addPalettes(),b._color=new Color(e).setHSpace(b.options.mode),b.options.color=b._color.toString(),b.controls={square:b.picker.find(".iris-square"),squareDrag:b.picker.find(".iris-square-value"),horiz:b.picker.find(".iris-square-horiz"),vert:b.picker.find(".iris-square-vert"),strip:b.picker.find(".iris-strip"),stripSlider:b.picker.find(".iris-strip .iris-slider-offset")},"hsv"===b.options.mode&&b._has("l",b.options.controls)?b.options.controls=b._defaultHSVControls:"hsl"===b.options.mode&&b._has("v",b.options.controls)&&(b.options.controls=b._defaultHSLControls),b.hue=b._color.h(),b.options.hide&&b.picker.hide(),b.options.border&&b.picker.addClass("iris-border"),b._initControls(),b.active="external",b._dimensions(),b._change()},_has:function(b,c){var d=!1;return a.each(c,function(a,c){return b===c?(d=!0,!1):void 0}),d},_addPalettes:function(){var b=a('<div class="iris-palette-container" />'),c=a('<a class="iris-palette" tabindex="0" />'),d=a.isArray(this.options.palettes)?this.options.palettes:this._palettes;this.picker.find(".iris-palette-container").length&&(b=this.picker.find(".iris-palette-container").detach().html("")),a.each(d,function(a,d){c.clone().data("color",d).css("backgroundColor",d).appendTo(b).height(10).width(10)}),this.picker.append(b)},_paint:function(){var a=this;a._paintDimension("top","strip"),a._paintDimension("top","vert"),a._paintDimension("left","horiz")},_paintDimension:function(a,b){var c,d=this,e=d._color,f=d.options.mode,g=d._getHSpaceColor(),h=d.controls[b],i=d.options.controls;if(b!==d.active&&("square"!==d.active||"strip"===b))switch(i[b]){case"h":if("hsv"===f){switch(g=e.clone(),b){case"horiz":g[i.vert](100);break;case"vert":g[i.horiz](100);break;case"strip":g.setHSpace("hsl")}c=g.toHsl()}else c="strip"===b?{s:g.s,l:g.l}:{s:100,l:g.l};h.raninbowGradient(a,c);break;case"s":"hsv"===f?"vert"===b?c=[e.clone().a(0).s(0).toCSS("rgba"),e.clone().a(1).s(0).toCSS("rgba")]:"strip"===b?c=[e.clone().s(100).toCSS("hsl"),e.clone().s(0).toCSS("hsl")]:"horiz"===b&&(c=["#fff","hsl("+g.h+",100%,50%)"]):c="vert"===b&&"h"===d.options.controls.horiz?["hsla(0, 0%, "+g.l+"%, 0)","hsla(0, 0%, "+g.l+"%, 1)"]:["hsl("+g.h+",0%,50%)","hsl("+g.h+",100%,50%)"],h.gradient(a,c);break;case"l":c="strip"===b?["hsl("+g.h+",100%,100%)","hsl("+g.h+", "+g.s+"%,50%)","hsl("+g.h+",100%,0%)"]:["#fff","rgba(255,255,255,0) 50%","rgba(0,0,0,0) 50%","rgba(0,0,0,1)"],h.gradient(a,c);break;case"v":c="strip"===b?[e.clone().v(100).toCSS(),e.clone().v(0).toCSS()]:["rgba(0,0,0,0)","#000"],h.gradient(a,c)}},_getHSpaceColor:function(){return"hsv"===this.options.mode?this._color.toHsv():this._color.toHsl()},_dimensions:function(b){var c,d,e,f,g=this,h=g.options,i=g.controls,j=i.square,k=g.picker.find(".iris-strip"),l="77.5%",m="12%",n=20,o=h.border?h.width-n:h.width,p=a.isArray(h.palettes)?h.palettes.length:g._palettes.length;return b&&(j.css("width",""),k.css("width",""),g.picker.css({width:"",height:""})),l=o*(parseFloat(l)/100),m=o*(parseFloat(m)/100),c=h.border?l+n:l,j.width(l).height(l),k.height(l).width(m),g.picker.css({width:h.width,height:c}),h.palettes?(d=2*l/100,f=l-(p-1)*d,e=f/p,g.picker.find(".iris-palette").each(function(b){var c=0===b?0:d;a(this).css({width:e,height:e,marginLeft:c})}),g.picker.css("paddingBottom",e+d),k.height(e+d+l),void 0):g.picker.css("paddingBottom","")},_addInputListeners:function(a){var b=this,c=100,d=function(c){var d=new Color(a.val()),e=a.val().replace(/^#/,"");a.removeClass("iris-error"),d.error?""!==e&&a.addClass("iris-error"):d.toString()!==b._color.toString()&&("keyup"===c.type&&e.match(/^[0-9a-fA-F]{3}$/)||b._setOption("color",d.toString()))};a.on("change",d).on("keyup",b._debounce(d,c)),b.options.hide&&a.one("focus",function(){b.show()})},_initControls:function(){var b=this,c=b.controls,d=c.square,e=b.options.controls,f=b._scale[e.strip];c.stripSlider.slider({orientation:"vertical",max:f,slide:function(a,c){b.active="strip","h"===e.strip&&(c.value=f-c.value),b._color[e.strip](c.value),b._change.apply(b,arguments)}}),c.squareDrag.draggable({containment:c.square.find(".iris-square-inner"),zIndex:1e3,cursor:"move",drag:function(a,c){b._squareDrag(a,c)},start:function(){d.addClass("iris-dragging"),a(this).addClass("ui-state-focus")},stop:function(){d.removeClass("iris-dragging"),a(this).removeClass("ui-state-focus")}}).on("mousedown mouseup",function(c){var d="ui-state-focus";c.preventDefault(),"mousedown"===c.type?(b.picker.find("."+d).removeClass(d).blur(),a(this).addClass(d).focus()):a(this).removeClass(d)}).on("keydown",function(a){var d=c.square,e=c.squareDrag,f=e.position(),g=b.options.width/100;switch(a.altKey&&(g*=10),a.keyCode){case 37:f.left-=g;break;case 38:f.top-=g;break;case 39:f.left+=g;break;case 40:f.top+=g;break;default:return!0}f.left=Math.max(0,Math.min(f.left,d.width())),f.top=Math.max(0,Math.min(f.top,d.height())),e.css(f),b._squareDrag(a,{position:f}),a.preventDefault()}),d.mousedown(function(c){var d,e;1===c.which&&a(c.target).is("div")&&(d=b.controls.square.offset(),e={top:c.pageY-d.top,left:c.pageX-d.left},c.preventDefault(),b._squareDrag(c,{position:e}),c.target=b.controls.squareDrag.get(0),b.controls.squareDrag.css(e).trigger(c))}),b.options.palettes&&b._paletteListeners()},_paletteListeners:function(){var b=this;b.picker.find(".iris-palette-container").on("click.palette",".iris-palette",function(){b._color.fromCSS(a(this).data("color")),b.active="external",b._change()}).on("keydown.palette",".iris-palette",function(b){return 13!==b.keyCode&&32!==b.keyCode?!0:(b.stopPropagation(),a(this).click(),void 0)})},_squareDrag:function(a,b){var c=this,d=c.options.controls,e=c._squareDimensions(),f=Math.round((e.h-b.position.top)/e.h*c._scale[d.vert]),g=c._scale[d.horiz]-Math.round((e.w-b.position.left)/e.w*c._scale[d.horiz]);c._color[d.horiz](g)[d.vert](f),c.active="square",c._change.apply(c,arguments)},_setOption:function(b,c){var d,e,f,g=this,h=g.options[b],i=!1;switch(g.options[b]=c,b){case"color":c=""+c,d=c.replace(/^#/,""),e=new Color(c).setHSpace(g.options.mode),e.error?g.options[b]=h:(g._color=e,g.options.color=g.options[b]=g._color.toString(),g.active="external",g._change());break;case"palettes":i=!0,c?g._addPalettes():g.picker.find(".iris-palette-container").remove(),h||g._paletteListeners();break;case"width":i=!0;break;case"border":i=!0,f=c?"addClass":"removeClass",g.picker[f]("iris-border");break;case"mode":case"controls":if(h===c)return;return f=g.element,h=g.options,h.hide=!g.picker.is(":visible"),g.destroy(),g.picker.remove(),a(g.element).iris(h)}i&&g._dimensions(!0)},_squareDimensions:function(a){var c,d,e=this.controls.square;return a!==b&&e.data("dimensions")?e.data("dimensions"):(d=this.controls.squareDrag,c={w:e.width(),h:e.height()},e.data("dimensions",c),c)},_isNonHueControl:function(a,b){return"square"===a&&"h"===this.options.controls.strip?!0:"external"===b||"h"===b&&"strip"===a?!1:!0},_change:function(){var b=this,c=b.controls,d=b._getHSpaceColor(),e=["square","strip"],f=b.options.controls,g=f[b.active]||"external",h=b.hue;"strip"===b.active?e=[]:"external"!==b.active&&e.pop(),a.each(e,function(a,e){var g,h,i;if(e!==b.active)switch(e){case"strip":g="h"===f.strip?b._scale[f.strip]-d[f.strip]:d[f.strip],c.stripSlider.slider("value",g);break;case"square":h=b._squareDimensions(),i={left:d[f.horiz]/b._scale[f.horiz]*h.w,top:h.h-d[f.vert]/b._scale[f.vert]*h.h},b.controls.squareDrag.css(i)}}),d.h!==h&&b._isNonHueControl(b.active,g)&&b._color.h(h),b.hue=b._color.h(),b.options.color=b._color.toString(),b._inited&&b._trigger("change",{type:b.active},{color:b._color}),b.element.is(":input")&&!b._color.error&&(b.element.removeClass("iris-error"),b.element.val()!==b._color.toString()&&b.element.val(b._color.toString())),b._paint(),b._inited=!0,b.active=!1},_debounce:function(a,b,c){var d,e;return function(){var f,g,h=this,i=arguments;return f=function(){d=null,c||(e=a.apply(h,i))},g=c&&!d,clearTimeout(d),d=setTimeout(f,b),g&&(e=a.apply(h,i)),e}},show:function(){this.picker.show()},hide:function(){this.picker.hide()},toggle:function(){this.picker.toggle()},color:function(a){return a===!0?this._color.clone():a===b?this._color.toString():(this.option("color",a),void 0)}},a.widget("a8c.iris",n),a('<style id="iris-css">'+m+"</style>").appendTo("head"),void 0)}(jQuery),function(a,b){var c=function(a,b){return this instanceof c?this._init(a,b):new c(a,b)};c.fn=c.prototype={_color:0,_alpha:1,error:!1,_hsl:{h:0,s:0,l:0},_hsv:{h:0,s:0,v:0},_hSpace:"hsl",_init:function(a){var c="noop";switch(typeof a){case"object":return a.a!==b&&this.a(a.a),c=a.r!==b?"fromRgb":a.l!==b?"fromHsl":a.v!==b?"fromHsv":c,this[c](a);case"string":return this.fromCSS(a);case"number":return this.fromInt(parseInt(a,10))}return this},_error:function(){return this.error=!0,this},clone:function(){for(var a=new c(this.toInt()),b=["_alpha","_hSpace","_hsl","_hsv","error"],d=b.length-1;d>=0;d--)a[b[d]]=this[b[d]];return a},setHSpace:function(a){return this._hSpace="hsv"===a?a:"hsl",this},noop:function(){return this},fromCSS:function(a){var b,c=/^(rgb|hs(l|v))a?\(/;if(this.error=!1,a=a.replace(/^\s+/,"").replace(/\s+$/,"").replace(/;$/,""),a.match(c)&&a.match(/\)$/)){if(b=a.replace(/(\s|%)/g,"").replace(c,"").replace(/,?\);?$/,"").split(","),b.length<3)return this._error();if(4===b.length&&(this.a(parseFloat(b.pop())),this.error))return this;for(var d=b.length-1;d>=0;d--)if(b[d]=parseInt(b[d],10),isNaN(b[d]))return this._error();return a.match(/^rgb/)?this.fromRgb({r:b[0],g:b[1],b:b[2]}):a.match(/^hsv/)?this.fromHsv({h:b[0],s:b[1],v:b[2]}):this.fromHsl({h:b[0],s:b[1],l:b[2]})}return this.fromHex(a)},fromRgb:function(a,c){return"object"!=typeof a||a.r===b||a.g===b||a.b===b?this._error():(this.error=!1,this.fromInt(parseInt((a.r<<16)+(a.g<<8)+a.b,10),c))},fromHex:function(a){return a=a.replace(/^#/,"").replace(/^0x/,""),3===a.length&&(a=a[0]+a[0]+a[1]+a[1]+a[2]+a[2]),this.error=!/^[0-9A-F]{6}$/i.test(a),this.fromInt(parseInt(a,16))},fromHsl:function(a){var c,d,e,f,g,h,i,j;return"object"!=typeof a||a.h===b||a.s===b||a.l===b?this._error():(this._hsl=a,this._hSpace="hsl",h=a.h/360,i=a.s/100,j=a.l/100,0===i?c=d=e=j:(f=.5>j?j*(1+i):j+i-j*i,g=2*j-f,c=this.hue2rgb(g,f,h+1/3),d=this.hue2rgb(g,f,h),e=this.hue2rgb(g,f,h-1/3)),this.fromRgb({r:255*c,g:255*d,b:255*e},!0))},fromHsv:function(a){var c,d,e,f,g,h,i,j,k,l,m;if("object"!=typeof a||a.h===b||a.s===b||a.v===b)return this._error();switch(this._hsv=a,this._hSpace="hsv",c=a.h/360,d=a.s/100,e=a.v/100,i=Math.floor(6*c),j=6*c-i,k=e*(1-d),l=e*(1-j*d),m=e*(1-(1-j)*d),i%6){case 0:f=e,g=m,h=k;break;case 1:f=l,g=e,h=k;break;case 2:f=k,g=e,h=m;break;case 3:f=k,g=l,h=e;break;case 4:f=m,g=k,h=e;break;case 5:f=e,g=k,h=l}return this.fromRgb({r:255*f,g:255*g,b:255*h},!0)},fromInt:function(a,c){return this._color=parseInt(a,10),isNaN(this._color)&&(this._color=0),this._color>16777215?this._color=16777215:this._color<0&&(this._color=0),c===b&&(this._hsv.h=this._hsv.s=this._hsl.h=this._hsl.s=0),this},hue2rgb:function(a,b,c){return 0>c&&(c+=1),c>1&&(c-=1),1/6>c?a+6*(b-a)*c:.5>c?b:2/3>c?a+6*(b-a)*(2/3-c):a},toString:function(){var a=parseInt(this._color,10).toString(16);if(this.error)return"";if(a.length<6)for(var b=6-a.length-1;b>=0;b--)a="0"+a;return"#"+a},toCSS:function(a,b){switch(a=a||"hex",b=parseFloat(b||this._alpha),a){case"rgb":case"rgba":var c=this.toRgb();return 1>b?"rgba( "+c.r+", "+c.g+", "+c.b+", "+b+" )":"rgb( "+c.r+", "+c.g+", "+c.b+" )";case"hsl":case"hsla":var d=this.toHsl();return 1>b?"hsla( "+d.h+", "+d.s+"%, "+d.l+"%, "+b+" )":"hsl( "+d.h+", "+d.s+"%, "+d.l+"% )";default:return this.toString()}},toRgb:function(){return{r:255&this._color>>16,g:255&this._color>>8,b:255&this._color}},toHsl:function(){var a,b,c=this.toRgb(),d=c.r/255,e=c.g/255,f=c.b/255,g=Math.max(d,e,f),h=Math.min(d,e,f),i=(g+h)/2;if(g===h)a=b=0;else{var j=g-h;switch(b=i>.5?j/(2-g-h):j/(g+h),g){case d:a=(e-f)/j+(f>e?6:0);break;case e:a=(f-d)/j+2;break;case f:a=(d-e)/j+4}a/=6}return a=Math.round(360*a),0===a&&this._hsl.h!==a&&(a=this._hsl.h),b=Math.round(100*b),0===b&&this._hsl.s&&(b=this._hsl.s),{h:a,s:b,l:Math.round(100*i)}},toHsv:function(){var a,b,c=this.toRgb(),d=c.r/255,e=c.g/255,f=c.b/255,g=Math.max(d,e,f),h=Math.min(d,e,f),i=g,j=g-h;if(b=0===g?0:j/g,g===h)a=b=0;else{switch(g){case d:a=(e-f)/j+(f>e?6:0);break;case e:a=(f-d)/j+2;break;case f:a=(d-e)/j+4}a/=6}return a=Math.round(360*a),0===a&&this._hsv.h!==a&&(a=this._hsv.h),b=Math.round(100*b),0===b&&this._hsv.s&&(b=this._hsv.s),{h:a,s:b,v:Math.round(100*i)}},toInt:function(){return this._color},toIEOctoHex:function(){var a=this.toString(),b=parseInt(255*this._alpha,10).toString(16);return 1===b.length&&(b="0"+b),"#"+b+a.replace(/^#/,"")},toLuminosity:function(){var a=this.toRgb();return.2126*Math.pow(a.r/255,2.2)+.7152*Math.pow(a.g/255,2.2)+.0722*Math.pow(a.b/255,2.2)},getDistanceLuminosityFrom:function(a){if(!(a instanceof c))throw"getDistanceLuminosityFrom requires a Color object";var b=this.toLuminosity(),d=a.toLuminosity();return b>d?(b+.05)/(d+.05):(d+.05)/(b+.05)},getMaxContrastColor:function(){var a=this.toLuminosity(),b=a>=.5?"000000":"ffffff";return new c(b)},getReadableContrastingColor:function(a,d){if(!a instanceof c)return this;var e=d===b?5:d,f=a.getDistanceLuminosityFrom(this),g=a.getMaxContrastColor(),h=g.getDistanceLuminosityFrom(a);if(e>=h)return g;if(f>=e)return this;for(var i=0===g.toInt()?-1:1;e>f&&(this.l(i,!0),f=this.getDistanceLuminosityFrom(a),0!==this._color&&16777215!==this._color););return this},a:function(a){if(a===b)return this._alpha;var c=parseFloat(a);return isNaN(c)?this._error():(this._alpha=c,this)},darken:function(a){return a=a||5,this.l(-a,!0)},lighten:function(a){return a=a||5,this.l(a,!0)},saturate:function(a){return a=a||15,this.s(a,!0)},desaturate:function(a){return a=a||15,this.s(-a,!0)},toGrayscale:function(){return this.setHSpace("hsl").s(0)},getComplement:function(){return this.h(180,!0)},getSplitComplement:function(a){a=a||1;var b=180+30*a;return this.h(b,!0)},getAnalog:function(a){a=a||1;var b=30*a;return this.h(b,!0)},getTetrad:function(a){a=a||1;var b=60*a;return this.h(b,!0)},getTriad:function(a){a=a||1;var b=120*a;return this.h(b,!0)},_partial:function(a){var c=d[a];return function(d,e){var f=this._spaceFunc("to",c.space);return d===b?f[a]:(e===!0&&(d=f[a]+d),c.mod&&(d%=c.mod),c.range&&(d=d<c.range[0]?c.range[0]:d>c.range[1]?c.range[1]:d),f[a]=d,this._spaceFunc("from",c.space,f))}},_spaceFunc:function(a,b,c){var d=b||this._hSpace,e=a+d.charAt(0).toUpperCase()+d.substr(1);return this[e](c)}};var d={h:{mod:360},s:{range:[0,100]},l:{space:"hsl",range:[0,100]},v:{space:"hsv",range:[0,100]},r:{space:"rgb",range:[0,255]},g:{space:"rgb",range:[0,255]},b:{space:"rgb",range:[0,255]}};for(var e in d)d.hasOwnProperty(e)&&(c.fn[e]=c.fn._partial(e));"object"==typeof exports?module.exports=c:a.Color=c}(this);
assets/jquery.dataTables.min.css DELETED
@@ -1 +0,0 @@
1
- table.dataTable{width:100%;margin:0 auto;clear:both;border-collapse:separate;border-spacing:0}table.dataTable thead th,table.dataTable tfoot th{font-weight:bold}table.dataTable thead th,table.dataTable thead td{padding:10px 18px;border-bottom:1px solid #111}table.dataTable thead th:active,table.dataTable thead td:active{outline:none}table.dataTable tfoot th,table.dataTable tfoot td{padding:10px 18px 6px 18px;border-top:1px solid #111}table.dataTable thead .sorting,table.dataTable thead .sorting_asc,table.dataTable thead .sorting_desc,table.dataTable thead .sorting_asc_disabled,table.dataTable thead .sorting_desc_disabled{cursor:pointer;*cursor:hand;background-repeat:no-repeat;background-position:center right}table.dataTable thead .sorting{background-image:url("../images/sort_both.png")}table.dataTable thead .sorting_asc{background-image:url("../images/sort_asc.png")}table.dataTable thead .sorting_desc{background-image:url("../images/sort_desc.png")}table.dataTable thead .sorting_asc_disabled{background-image:url("../images/sort_asc_disabled.png")}table.dataTable thead .sorting_desc_disabled{background-image:url("../images/sort_desc_disabled.png")}table.dataTable tbody tr{background-color:#ffffff}table.dataTable tbody tr.selected{background-color:#B0BED9}table.dataTable tbody th,table.dataTable tbody td{padding:8px 10px}table.dataTable.row-border tbody th,table.dataTable.row-border tbody td,table.dataTable.display tbody th,table.dataTable.display tbody td{border-top:1px solid #ddd}table.dataTable.row-border tbody tr:first-child th,table.dataTable.row-border tbody tr:first-child td,table.dataTable.display tbody tr:first-child th,table.dataTable.display tbody tr:first-child td{border-top:none}table.dataTable.cell-border tbody th,table.dataTable.cell-border tbody td{border-top:1px solid #ddd;border-right:1px solid #ddd}table.dataTable.cell-border tbody tr th:first-child,table.dataTable.cell-border tbody tr td:first-child{border-left:1px solid #ddd}table.dataTable.cell-border tbody tr:first-child th,table.dataTable.cell-border tbody tr:first-child td{border-top:none}table.dataTable.stripe tbody tr.odd,table.dataTable.display tbody tr.odd{background-color:#f9f9f9}table.dataTable.stripe tbody tr.odd.selected,table.dataTable.display tbody tr.odd.selected{background-color:#acbad4}table.dataTable.hover tbody tr:hover,table.dataTable.display tbody tr:hover{background-color:#f6f6f6}table.dataTable.hover tbody tr:hover.selected,table.dataTable.display tbody tr:hover.selected{background-color:#aab7d1}table.dataTable.order-column tbody tr>.sorting_1,table.dataTable.order-column tbody tr>.sorting_2,table.dataTable.order-column tbody tr>.sorting_3,table.dataTable.display tbody tr>.sorting_1,table.dataTable.display tbody tr>.sorting_2,table.dataTable.display tbody tr>.sorting_3{background-color:#fafafa}table.dataTable.order-column tbody tr.selected>.sorting_1,table.dataTable.order-column tbody tr.selected>.sorting_2,table.dataTable.order-column tbody tr.selected>.sorting_3,table.dataTable.display tbody tr.selected>.sorting_1,table.dataTable.display tbody tr.selected>.sorting_2,table.dataTable.display tbody tr.selected>.sorting_3{background-color:#acbad5}table.dataTable.display tbody tr.odd>.sorting_1,table.dataTable.order-column.stripe tbody tr.odd>.sorting_1{background-color:#f1f1f1}table.dataTable.display tbody tr.odd>.sorting_2,table.dataTable.order-column.stripe tbody tr.odd>.sorting_2{background-color:#f3f3f3}table.dataTable.display tbody tr.odd>.sorting_3,table.dataTable.order-column.stripe tbody tr.odd>.sorting_3{background-color:whitesmoke}table.dataTable.display tbody tr.odd.selected>.sorting_1,table.dataTable.order-column.stripe tbody tr.odd.selected>.sorting_1{background-color:#a6b4cd}table.dataTable.display tbody tr.odd.selected>.sorting_2,table.dataTable.order-column.stripe tbody tr.odd.selected>.sorting_2{background-color:#a8b5cf}table.dataTable.display tbody tr.odd.selected>.sorting_3,table.dataTable.order-column.stripe tbody tr.odd.selected>.sorting_3{background-color:#a9b7d1}table.dataTable.display tbody tr.even>.sorting_1,table.dataTable.order-column.stripe tbody tr.even>.sorting_1{background-color:#fafafa}table.dataTable.display tbody tr.even>.sorting_2,table.dataTable.order-column.stripe tbody tr.even>.sorting_2{background-color:#fcfcfc}table.dataTable.display tbody tr.even>.sorting_3,table.dataTable.order-column.stripe tbody tr.even>.sorting_3{background-color:#fefefe}table.dataTable.display tbody tr.even.selected>.sorting_1,table.dataTable.order-column.stripe tbody tr.even.selected>.sorting_1{background-color:#acbad5}table.dataTable.display tbody tr.even.selected>.sorting_2,table.dataTable.order-column.stripe tbody tr.even.selected>.sorting_2{background-color:#aebcd6}table.dataTable.display tbody tr.even.selected>.sorting_3,table.dataTable.order-column.stripe tbody tr.even.selected>.sorting_3{background-color:#afbdd8}table.dataTable.display tbody tr:hover>.sorting_1,table.dataTable.order-column.hover tbody tr:hover>.sorting_1{background-color:#eaeaea}table.dataTable.display tbody tr:hover>.sorting_2,table.dataTable.order-column.hover tbody tr:hover>.sorting_2{background-color:#ececec}table.dataTable.display tbody tr:hover>.sorting_3,table.dataTable.order-column.hover tbody tr:hover>.sorting_3{background-color:#efefef}table.dataTable.display tbody tr:hover.selected>.sorting_1,table.dataTable.order-column.hover tbody tr:hover.selected>.sorting_1{background-color:#a2aec7}table.dataTable.display tbody tr:hover.selected>.sorting_2,table.dataTable.order-column.hover tbody tr:hover.selected>.sorting_2{background-color:#a3b0c9}table.dataTable.display tbody tr:hover.selected>.sorting_3,table.dataTable.order-column.hover tbody tr:hover.selected>.sorting_3{background-color:#a5b2cb}table.dataTable.no-footer{border-bottom:1px solid #111}table.dataTable.nowrap th,table.dataTable.nowrap td{white-space:nowrap}table.dataTable.compact thead th,table.dataTable.compact thead td{padding:4px 17px 4px 4px}table.dataTable.compact tfoot th,table.dataTable.compact tfoot td{padding:4px}table.dataTable.compact tbody th,table.dataTable.compact tbody td{padding:4px}table.dataTable th.dt-left,table.dataTable td.dt-left{text-align:left}table.dataTable th.dt-center,table.dataTable td.dt-center,table.dataTable td.dataTables_empty{text-align:center}table.dataTable th.dt-right,table.dataTable td.dt-right{text-align:right}table.dataTable th.dt-justify,table.dataTable td.dt-justify{text-align:justify}table.dataTable th.dt-nowrap,table.dataTable td.dt-nowrap{white-space:nowrap}table.dataTable thead th.dt-head-left,table.dataTable thead td.dt-head-left,table.dataTable tfoot th.dt-head-left,table.dataTable tfoot td.dt-head-left{text-align:left}table.dataTable thead th.dt-head-center,table.dataTable thead td.dt-head-center,table.dataTable tfoot th.dt-head-center,table.dataTable tfoot td.dt-head-center{text-align:center}table.dataTable thead th.dt-head-right,table.dataTable thead td.dt-head-right,table.dataTable tfoot th.dt-head-right,table.dataTable tfoot td.dt-head-right{text-align:right}table.dataTable thead th.dt-head-justify,table.dataTable thead td.dt-head-justify,table.dataTable tfoot th.dt-head-justify,table.dataTable tfoot td.dt-head-justify{text-align:justify}table.dataTable thead th.dt-head-nowrap,table.dataTable thead td.dt-head-nowrap,table.dataTable tfoot th.dt-head-nowrap,table.dataTable tfoot td.dt-head-nowrap{white-space:nowrap}table.dataTable tbody th.dt-body-left,table.dataTable tbody td.dt-body-left{text-align:left}table.dataTable tbody th.dt-body-center,table.dataTable tbody td.dt-body-center{text-align:center}table.dataTable tbody th.dt-body-right,table.dataTable tbody td.dt-body-right{text-align:right}table.dataTable tbody th.dt-body-justify,table.dataTable tbody td.dt-body-justify{text-align:justify}table.dataTable tbody th.dt-body-nowrap,table.dataTable tbody td.dt-body-nowrap{white-space:nowrap}table.dataTable,table.dataTable th,table.dataTable td{box-sizing:content-box}.dataTables_wrapper{position:relative;clear:both;*zoom:1;zoom:1}.dataTables_wrapper .dataTables_length{float:left}.dataTables_wrapper .dataTables_filter{float:right;text-align:right}.dataTables_wrapper .dataTables_filter input{margin-left:0.5em}.dataTables_wrapper .dataTables_info{clear:both;float:left;padding-top:0.755em}.dataTables_wrapper .dataTables_paginate{float:right;text-align:right;padding-top:0.25em}.dataTables_wrapper .dataTables_paginate .paginate_button{box-sizing:border-box;display:inline-block;min-width:1.5em;padding:0.5em 1em;margin-left:2px;text-align:center;text-decoration:none !important;cursor:pointer;*cursor:hand;color:#333 !important;border:1px solid transparent;border-radius:2px}.dataTables_wrapper .dataTables_paginate .paginate_button.current,.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover{color:#333 !important;border:1px solid #979797;background-color:white;background:-webkit-gradient(linear, left top, left bottom, color-stop(0%, #fff), color-stop(100%, #dcdcdc));background:-webkit-linear-gradient(top, #fff 0%, #dcdcdc 100%);background:-moz-linear-gradient(top, #fff 0%, #dcdcdc 100%);background:-ms-linear-gradient(top, #fff 0%, #dcdcdc 100%);background:-o-linear-gradient(top, #fff 0%, #dcdcdc 100%);background:linear-gradient(to bottom, #fff 0%, #dcdcdc 100%)}.dataTables_wrapper .dataTables_paginate .paginate_button.disabled,.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover,.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active{cursor:default;color:#666 !important;border:1px solid transparent;background:transparent;box-shadow:none}.dataTables_wrapper .dataTables_paginate .paginate_button:hover{color:white !important;border:1px solid #111;background-color:#585858;background:-webkit-gradient(linear, left top, left bottom, color-stop(0%, #585858), color-stop(100%, #111));background:-webkit-linear-gradient(top, #585858 0%, #111 100%);background:-moz-linear-gradient(top, #585858 0%, #111 100%);background:-ms-linear-gradient(top, #585858 0%, #111 100%);background:-o-linear-gradient(top, #585858 0%, #111 100%);background:linear-gradient(to bottom, #585858 0%, #111 100%)}.dataTables_wrapper .dataTables_paginate .paginate_button:active{outline:none;background-color:#2b2b2b;background:-webkit-gradient(linear, left top, left bottom, color-stop(0%, #2b2b2b), color-stop(100%, #0c0c0c));background:-webkit-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);background:-moz-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);background:-ms-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);background:-o-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);background:linear-gradient(to bottom, #2b2b2b 0%, #0c0c0c 100%);box-shadow:inset 0 0 3px #111}.dataTables_wrapper .dataTables_paginate .ellipsis{padding:0 1em}.dataTables_wrapper .dataTables_processing{position:absolute;top:50%;left:50%;width:100%;height:40px;margin-left:-50%;margin-top:-25px;padding-top:20px;text-align:center;font-size:1.2em;background-color:white;background:-webkit-gradient(linear, left top, right top, color-stop(0%, rgba(255,255,255,0)), color-stop(25%, rgba(255,255,255,0.9)), color-stop(75%, rgba(255,255,255,0.9)), color-stop(100%, rgba(255,255,255,0)));background:-webkit-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 25%, rgba(255,255,255,0.9) 75%, rgba(255,255,255,0) 100%);background:-moz-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 25%, rgba(255,255,255,0.9) 75%, rgba(255,255,255,0) 100%);background:-ms-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 25%, rgba(255,255,255,0.9) 75%, rgba(255,255,255,0) 100%);background:-o-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 25%, rgba(255,255,255,0.9) 75%, rgba(255,255,255,0) 100%);background:linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 25%, rgba(255,255,255,0.9) 75%, rgba(255,255,255,0) 100%)}.dataTables_wrapper .dataTables_length,.dataTables_wrapper .dataTables_filter,.dataTables_wrapper .dataTables_info,.dataTables_wrapper .dataTables_processing,.dataTables_wrapper .dataTables_paginate{color:#333}.dataTables_wrapper .dataTables_scroll{clear:both}.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody{*margin-top:-1px;-webkit-overflow-scrolling:touch}.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>thead>tr>th,.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>thead>tr>td,.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>tbody>tr>th,.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>tbody>tr>td{vertical-align:middle}.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>thead>tr>th>div.dataTables_sizing,.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>thead>tr>td>div.dataTables_sizing,.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>tbody>tr>th>div.dataTables_sizing,.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>tbody>tr>td>div.dataTables_sizing{height:0;overflow:hidden;margin:0 !important;padding:0 !important}.dataTables_wrapper.no-footer .dataTables_scrollBody{border-bottom:1px solid #111}.dataTables_wrapper.no-footer div.dataTables_scrollHead table.dataTable,.dataTables_wrapper.no-footer div.dataTables_scrollBody>table{border-bottom:none}.dataTables_wrapper:after{visibility:hidden;display:block;content:"";clear:both;height:0}@media screen and (max-width: 767px){.dataTables_wrapper .dataTables_info,.dataTables_wrapper .dataTables_paginate{float:none;text-align:center}.dataTables_wrapper .dataTables_paginate{margin-top:0.5em}}@media screen and (max-width: 640px){.dataTables_wrapper .dataTables_length,.dataTables_wrapper .dataTables_filter{float:none;text-align:center}.dataTables_wrapper .dataTables_filter{margin-top:0.5em}}
 
assets/jquery.dataTables.min.js DELETED
@@ -1,170 +0,0 @@
1
- /*!
2
- DataTables 1.10.19
3
- ©2008-2018 SpryMedia Ltd - datatables.net/license
4
- */
5
- (function(h){"function"===typeof define&&define.amd?define(["jquery"],function(E){return h(E,window,document)}):"object"===typeof exports?module.exports=function(E,H){E||(E=window);H||(H="undefined"!==typeof window?require("jquery"):require("jquery")(E));return h(H,E,E.document)}:h(jQuery,window,document)})(function(h,E,H,k){function Z(a){var b,c,d={};h.each(a,function(e){if((b=e.match(/^([^A-Z]+?)([A-Z])/))&&-1!=="a aa ai ao as b fn i m o s ".indexOf(b[1]+" "))c=e.replace(b[0],b[2].toLowerCase()),
6
- d[c]=e,"o"===b[1]&&Z(a[e])});a._hungarianMap=d}function J(a,b,c){a._hungarianMap||Z(a);var d;h.each(b,function(e){d=a._hungarianMap[e];if(d!==k&&(c||b[d]===k))"o"===d.charAt(0)?(b[d]||(b[d]={}),h.extend(!0,b[d],b[e]),J(a[d],b[d],c)):b[d]=b[e]})}function Ca(a){var b=n.defaults.oLanguage,c=b.sDecimal;c&&Da(c);if(a){var d=a.sZeroRecords;!a.sEmptyTable&&(d&&"No data available in table"===b.sEmptyTable)&&F(a,a,"sZeroRecords","sEmptyTable");!a.sLoadingRecords&&(d&&"Loading..."===b.sLoadingRecords)&&F(a,
7
- a,"sZeroRecords","sLoadingRecords");a.sInfoThousands&&(a.sThousands=a.sInfoThousands);(a=a.sDecimal)&&c!==a&&Da(a)}}function fb(a){A(a,"ordering","bSort");A(a,"orderMulti","bSortMulti");A(a,"orderClasses","bSortClasses");A(a,"orderCellsTop","bSortCellsTop");A(a,"order","aaSorting");A(a,"orderFixed","aaSortingFixed");A(a,"paging","bPaginate");A(a,"pagingType","sPaginationType");A(a,"pageLength","iDisplayLength");A(a,"searching","bFilter");"boolean"===typeof a.sScrollX&&(a.sScrollX=a.sScrollX?"100%":
8
- "");"boolean"===typeof a.scrollX&&(a.scrollX=a.scrollX?"100%":"");if(a=a.aoSearchCols)for(var b=0,c=a.length;b<c;b++)a[b]&&J(n.models.oSearch,a[b])}function gb(a){A(a,"orderable","bSortable");A(a,"orderData","aDataSort");A(a,"orderSequence","asSorting");A(a,"orderDataType","sortDataType");var b=a.aDataSort;"number"===typeof b&&!h.isArray(b)&&(a.aDataSort=[b])}function hb(a){if(!n.__browser){var b={};n.__browser=b;var c=h("<div/>").css({position:"fixed",top:0,left:-1*h(E).scrollLeft(),height:1,width:1,
9
- overflow:"hidden"}).append(h("<div/>").css({position:"absolute",top:1,left:1,width:100,overflow:"scroll"}).append(h("<div/>").css({width:"100%",height:10}))).appendTo("body"),d=c.children(),e=d.children();b.barWidth=d[0].offsetWidth-d[0].clientWidth;b.bScrollOversize=100===e[0].offsetWidth&&100!==d[0].clientWidth;b.bScrollbarLeft=1!==Math.round(e.offset().left);b.bBounding=c[0].getBoundingClientRect().width?!0:!1;c.remove()}h.extend(a.oBrowser,n.__browser);a.oScroll.iBarWidth=n.__browser.barWidth}
10
- function ib(a,b,c,d,e,f){var g,j=!1;c!==k&&(g=c,j=!0);for(;d!==e;)a.hasOwnProperty(d)&&(g=j?b(g,a[d],d,a):a[d],j=!0,d+=f);return g}function Ea(a,b){var c=n.defaults.column,d=a.aoColumns.length,c=h.extend({},n.models.oColumn,c,{nTh:b?b:H.createElement("th"),sTitle:c.sTitle?c.sTitle:b?b.innerHTML:"",aDataSort:c.aDataSort?c.aDataSort:[d],mData:c.mData?c.mData:d,idx:d});a.aoColumns.push(c);c=a.aoPreSearchCols;c[d]=h.extend({},n.models.oSearch,c[d]);ka(a,d,h(b).data())}function ka(a,b,c){var b=a.aoColumns[b],
11
- d=a.oClasses,e=h(b.nTh);if(!b.sWidthOrig){b.sWidthOrig=e.attr("width")||null;var f=(e.attr("style")||"").match(/width:\s*(\d+[pxem%]+)/);f&&(b.sWidthOrig=f[1])}c!==k&&null!==c&&(gb(c),J(n.defaults.column,c),c.mDataProp!==k&&!c.mData&&(c.mData=c.mDataProp),c.sType&&(b._sManualType=c.sType),c.className&&!c.sClass&&(c.sClass=c.className),c.sClass&&e.addClass(c.sClass),h.extend(b,c),F(b,c,"sWidth","sWidthOrig"),c.iDataSort!==k&&(b.aDataSort=[c.iDataSort]),F(b,c,"aDataSort"));var g=b.mData,j=S(g),i=b.mRender?
12
- S(b.mRender):null,c=function(a){return"string"===typeof a&&-1!==a.indexOf("@")};b._bAttrSrc=h.isPlainObject(g)&&(c(g.sort)||c(g.type)||c(g.filter));b._setter=null;b.fnGetData=function(a,b,c){var d=j(a,b,k,c);return i&&b?i(d,b,a,c):d};b.fnSetData=function(a,b,c){return N(g)(a,b,c)};"number"!==typeof g&&(a._rowReadObject=!0);a.oFeatures.bSort||(b.bSortable=!1,e.addClass(d.sSortableNone));a=-1!==h.inArray("asc",b.asSorting);c=-1!==h.inArray("desc",b.asSorting);!b.bSortable||!a&&!c?(b.sSortingClass=d.sSortableNone,
13
- b.sSortingClassJUI=""):a&&!c?(b.sSortingClass=d.sSortableAsc,b.sSortingClassJUI=d.sSortJUIAscAllowed):!a&&c?(b.sSortingClass=d.sSortableDesc,b.sSortingClassJUI=d.sSortJUIDescAllowed):(b.sSortingClass=d.sSortable,b.sSortingClassJUI=d.sSortJUI)}function $(a){if(!1!==a.oFeatures.bAutoWidth){var b=a.aoColumns;Fa(a);for(var c=0,d=b.length;c<d;c++)b[c].nTh.style.width=b[c].sWidth}b=a.oScroll;(""!==b.sY||""!==b.sX)&&la(a);r(a,null,"column-sizing",[a])}function aa(a,b){var c=ma(a,"bVisible");return"number"===
14
- typeof c[b]?c[b]:null}function ba(a,b){var c=ma(a,"bVisible"),c=h.inArray(b,c);return-1!==c?c:null}function V(a){var b=0;h.each(a.aoColumns,function(a,d){d.bVisible&&"none"!==h(d.nTh).css("display")&&b++});return b}function ma(a,b){var c=[];h.map(a.aoColumns,function(a,e){a[b]&&c.push(e)});return c}function Ga(a){var b=a.aoColumns,c=a.aoData,d=n.ext.type.detect,e,f,g,j,i,h,l,q,t;e=0;for(f=b.length;e<f;e++)if(l=b[e],t=[],!l.sType&&l._sManualType)l.sType=l._sManualType;else if(!l.sType){g=0;for(j=d.length;g<
15
- j;g++){i=0;for(h=c.length;i<h;i++){t[i]===k&&(t[i]=B(a,i,e,"type"));q=d[g](t[i],a);if(!q&&g!==d.length-1)break;if("html"===q)break}if(q){l.sType=q;break}}l.sType||(l.sType="string")}}function jb(a,b,c,d){var e,f,g,j,i,m,l=a.aoColumns;if(b)for(e=b.length-1;0<=e;e--){m=b[e];var q=m.targets!==k?m.targets:m.aTargets;h.isArray(q)||(q=[q]);f=0;for(g=q.length;f<g;f++)if("number"===typeof q[f]&&0<=q[f]){for(;l.length<=q[f];)Ea(a);d(q[f],m)}else if("number"===typeof q[f]&&0>q[f])d(l.length+q[f],m);else if("string"===
16
- typeof q[f]){j=0;for(i=l.length;j<i;j++)("_all"==q[f]||h(l[j].nTh).hasClass(q[f]))&&d(j,m)}}if(c){e=0;for(a=c.length;e<a;e++)d(e,c[e])}}function O(a,b,c,d){var e=a.aoData.length,f=h.extend(!0,{},n.models.oRow,{src:c?"dom":"data",idx:e});f._aData=b;a.aoData.push(f);for(var g=a.aoColumns,j=0,i=g.length;j<i;j++)g[j].sType=null;a.aiDisplayMaster.push(e);b=a.rowIdFn(b);b!==k&&(a.aIds[b]=f);(c||!a.oFeatures.bDeferRender)&&Ha(a,e,c,d);return e}function na(a,b){var c;b instanceof h||(b=h(b));return b.map(function(b,
17
- e){c=Ia(a,e);return O(a,c.data,e,c.cells)})}function B(a,b,c,d){var e=a.iDraw,f=a.aoColumns[c],g=a.aoData[b]._aData,j=f.sDefaultContent,i=f.fnGetData(g,d,{settings:a,row:b,col:c});if(i===k)return a.iDrawError!=e&&null===j&&(K(a,0,"Requested unknown parameter "+("function"==typeof f.mData?"{function}":"'"+f.mData+"'")+" for row "+b+", column "+c,4),a.iDrawError=e),j;if((i===g||null===i)&&null!==j&&d!==k)i=j;else if("function"===typeof i)return i.call(g);return null===i&&"display"==d?"":i}function kb(a,
18
- b,c,d){a.aoColumns[c].fnSetData(a.aoData[b]._aData,d,{settings:a,row:b,col:c})}function Ja(a){return h.map(a.match(/(\\.|[^\.])+/g)||[""],function(a){return a.replace(/\\\./g,".")})}function S(a){if(h.isPlainObject(a)){var b={};h.each(a,function(a,c){c&&(b[a]=S(c))});return function(a,c,f,g){var j=b[c]||b._;return j!==k?j(a,c,f,g):a}}if(null===a)return function(a){return a};if("function"===typeof a)return function(b,c,f,g){return a(b,c,f,g)};if("string"===typeof a&&(-1!==a.indexOf(".")||-1!==a.indexOf("[")||
19
- -1!==a.indexOf("("))){var c=function(a,b,f){var g,j;if(""!==f){j=Ja(f);for(var i=0,m=j.length;i<m;i++){f=j[i].match(ca);g=j[i].match(W);if(f){j[i]=j[i].replace(ca,"");""!==j[i]&&(a=a[j[i]]);g=[];j.splice(0,i+1);j=j.join(".");if(h.isArray(a)){i=0;for(m=a.length;i<m;i++)g.push(c(a[i],b,j))}a=f[0].substring(1,f[0].length-1);a=""===a?g:g.join(a);break}else if(g){j[i]=j[i].replace(W,"");a=a[j[i]]();continue}if(null===a||a[j[i]]===k)return k;a=a[j[i]]}}return a};return function(b,e){return c(b,e,a)}}return function(b){return b[a]}}
20
- function N(a){if(h.isPlainObject(a))return N(a._);if(null===a)return function(){};if("function"===typeof a)return function(b,d,e){a(b,"set",d,e)};if("string"===typeof a&&(-1!==a.indexOf(".")||-1!==a.indexOf("[")||-1!==a.indexOf("("))){var b=function(a,d,e){var e=Ja(e),f;f=e[e.length-1];for(var g,j,i=0,m=e.length-1;i<m;i++){g=e[i].match(ca);j=e[i].match(W);if(g){e[i]=e[i].replace(ca,"");a[e[i]]=[];f=e.slice();f.splice(0,i+1);g=f.join(".");if(h.isArray(d)){j=0;for(m=d.length;j<m;j++)f={},b(f,d[j],g),
21
- a[e[i]].push(f)}else a[e[i]]=d;return}j&&(e[i]=e[i].replace(W,""),a=a[e[i]](d));if(null===a[e[i]]||a[e[i]]===k)a[e[i]]={};a=a[e[i]]}if(f.match(W))a[f.replace(W,"")](d);else a[f.replace(ca,"")]=d};return function(c,d){return b(c,d,a)}}return function(b,d){b[a]=d}}function Ka(a){return D(a.aoData,"_aData")}function oa(a){a.aoData.length=0;a.aiDisplayMaster.length=0;a.aiDisplay.length=0;a.aIds={}}function pa(a,b,c){for(var d=-1,e=0,f=a.length;e<f;e++)a[e]==b?d=e:a[e]>b&&a[e]--; -1!=d&&c===k&&a.splice(d,
22
- 1)}function da(a,b,c,d){var e=a.aoData[b],f,g=function(c,d){for(;c.childNodes.length;)c.removeChild(c.firstChild);c.innerHTML=B(a,b,d,"display")};if("dom"===c||(!c||"auto"===c)&&"dom"===e.src)e._aData=Ia(a,e,d,d===k?k:e._aData).data;else{var j=e.anCells;if(j)if(d!==k)g(j[d],d);else{c=0;for(f=j.length;c<f;c++)g(j[c],c)}}e._aSortData=null;e._aFilterData=null;g=a.aoColumns;if(d!==k)g[d].sType=null;else{c=0;for(f=g.length;c<f;c++)g[c].sType=null;La(a,e)}}function Ia(a,b,c,d){var e=[],f=b.firstChild,g,
23
- j,i=0,m,l=a.aoColumns,q=a._rowReadObject,d=d!==k?d:q?{}:[],t=function(a,b){if("string"===typeof a){var c=a.indexOf("@");-1!==c&&(c=a.substring(c+1),N(a)(d,b.getAttribute(c)))}},G=function(a){if(c===k||c===i)j=l[i],m=h.trim(a.innerHTML),j&&j._bAttrSrc?(N(j.mData._)(d,m),t(j.mData.sort,a),t(j.mData.type,a),t(j.mData.filter,a)):q?(j._setter||(j._setter=N(j.mData)),j._setter(d,m)):d[i]=m;i++};if(f)for(;f;){g=f.nodeName.toUpperCase();if("TD"==g||"TH"==g)G(f),e.push(f);f=f.nextSibling}else{e=b.anCells;
24
- f=0;for(g=e.length;f<g;f++)G(e[f])}if(b=b.firstChild?b:b.nTr)(b=b.getAttribute("id"))&&N(a.rowId)(d,b);return{data:d,cells:e}}function Ha(a,b,c,d){var e=a.aoData[b],f=e._aData,g=[],j,i,m,l,q;if(null===e.nTr){j=c||H.createElement("tr");e.nTr=j;e.anCells=g;j._DT_RowIndex=b;La(a,e);l=0;for(q=a.aoColumns.length;l<q;l++){m=a.aoColumns[l];i=c?d[l]:H.createElement(m.sCellType);i._DT_CellIndex={row:b,column:l};g.push(i);if((!c||m.mRender||m.mData!==l)&&(!h.isPlainObject(m.mData)||m.mData._!==l+".display"))i.innerHTML=
25
- B(a,b,l,"display");m.sClass&&(i.className+=" "+m.sClass);m.bVisible&&!c?j.appendChild(i):!m.bVisible&&c&&i.parentNode.removeChild(i);m.fnCreatedCell&&m.fnCreatedCell.call(a.oInstance,i,B(a,b,l),f,b,l)}r(a,"aoRowCreatedCallback",null,[j,f,b,g])}e.nTr.setAttribute("role","row")}function La(a,b){var c=b.nTr,d=b._aData;if(c){var e=a.rowIdFn(d);e&&(c.id=e);d.DT_RowClass&&(e=d.DT_RowClass.split(" "),b.__rowc=b.__rowc?qa(b.__rowc.concat(e)):e,h(c).removeClass(b.__rowc.join(" ")).addClass(d.DT_RowClass));
26
- d.DT_RowAttr&&h(c).attr(d.DT_RowAttr);d.DT_RowData&&h(c).data(d.DT_RowData)}}function lb(a){var b,c,d,e,f,g=a.nTHead,j=a.nTFoot,i=0===h("th, td",g).length,m=a.oClasses,l=a.aoColumns;i&&(e=h("<tr/>").appendTo(g));b=0;for(c=l.length;b<c;b++)f=l[b],d=h(f.nTh).addClass(f.sClass),i&&d.appendTo(e),a.oFeatures.bSort&&(d.addClass(f.sSortingClass),!1!==f.bSortable&&(d.attr("tabindex",a.iTabIndex).attr("aria-controls",a.sTableId),Ma(a,f.nTh,b))),f.sTitle!=d[0].innerHTML&&d.html(f.sTitle),Na(a,"header")(a,d,
27
- f,m);i&&ea(a.aoHeader,g);h(g).find(">tr").attr("role","row");h(g).find(">tr>th, >tr>td").addClass(m.sHeaderTH);h(j).find(">tr>th, >tr>td").addClass(m.sFooterTH);if(null!==j){a=a.aoFooter[0];b=0;for(c=a.length;b<c;b++)f=l[b],f.nTf=a[b].cell,f.sClass&&h(f.nTf).addClass(f.sClass)}}function fa(a,b,c){var d,e,f,g=[],j=[],i=a.aoColumns.length,m;if(b){c===k&&(c=!1);d=0;for(e=b.length;d<e;d++){g[d]=b[d].slice();g[d].nTr=b[d].nTr;for(f=i-1;0<=f;f--)!a.aoColumns[f].bVisible&&!c&&g[d].splice(f,1);j.push([])}d=
28
- 0;for(e=g.length;d<e;d++){if(a=g[d].nTr)for(;f=a.firstChild;)a.removeChild(f);f=0;for(b=g[d].length;f<b;f++)if(m=i=1,j[d][f]===k){a.appendChild(g[d][f].cell);for(j[d][f]=1;g[d+i]!==k&&g[d][f].cell==g[d+i][f].cell;)j[d+i][f]=1,i++;for(;g[d][f+m]!==k&&g[d][f].cell==g[d][f+m].cell;){for(c=0;c<i;c++)j[d+c][f+m]=1;m++}h(g[d][f].cell).attr("rowspan",i).attr("colspan",m)}}}}function P(a){var b=r(a,"aoPreDrawCallback","preDraw",[a]);if(-1!==h.inArray(!1,b))C(a,!1);else{var b=[],c=0,d=a.asStripeClasses,e=
29
- d.length,f=a.oLanguage,g=a.iInitDisplayStart,j="ssp"==y(a),i=a.aiDisplay;a.bDrawing=!0;g!==k&&-1!==g&&(a._iDisplayStart=j?g:g>=a.fnRecordsDisplay()?0:g,a.iInitDisplayStart=-1);var g=a._iDisplayStart,m=a.fnDisplayEnd();if(a.bDeferLoading)a.bDeferLoading=!1,a.iDraw++,C(a,!1);else if(j){if(!a.bDestroying&&!mb(a))return}else a.iDraw++;if(0!==i.length){f=j?a.aoData.length:m;for(j=j?0:g;j<f;j++){var l=i[j],q=a.aoData[l];null===q.nTr&&Ha(a,l);var t=q.nTr;if(0!==e){var G=d[c%e];q._sRowStripe!=G&&(h(t).removeClass(q._sRowStripe).addClass(G),
30
- q._sRowStripe=G)}r(a,"aoRowCallback",null,[t,q._aData,c,j,l]);b.push(t);c++}}else c=f.sZeroRecords,1==a.iDraw&&"ajax"==y(a)?c=f.sLoadingRecords:f.sEmptyTable&&0===a.fnRecordsTotal()&&(c=f.sEmptyTable),b[0]=h("<tr/>",{"class":e?d[0]:""}).append(h("<td />",{valign:"top",colSpan:V(a),"class":a.oClasses.sRowEmpty}).html(c))[0];r(a,"aoHeaderCallback","header",[h(a.nTHead).children("tr")[0],Ka(a),g,m,i]);r(a,"aoFooterCallback","footer",[h(a.nTFoot).children("tr")[0],Ka(a),g,m,i]);d=h(a.nTBody);d.children().detach();
31
- d.append(h(b));r(a,"aoDrawCallback","draw",[a]);a.bSorted=!1;a.bFiltered=!1;a.bDrawing=!1}}function T(a,b){var c=a.oFeatures,d=c.bFilter;c.bSort&&nb(a);d?ga(a,a.oPreviousSearch):a.aiDisplay=a.aiDisplayMaster.slice();!0!==b&&(a._iDisplayStart=0);a._drawHold=b;P(a);a._drawHold=!1}function ob(a){var b=a.oClasses,c=h(a.nTable),c=h("<div/>").insertBefore(c),d=a.oFeatures,e=h("<div/>",{id:a.sTableId+"_wrapper","class":b.sWrapper+(a.nTFoot?"":" "+b.sNoFooter)});a.nHolding=c[0];a.nTableWrapper=e[0];a.nTableReinsertBefore=
32
- a.nTable.nextSibling;for(var f=a.sDom.split(""),g,j,i,m,l,q,k=0;k<f.length;k++){g=null;j=f[k];if("<"==j){i=h("<div/>")[0];m=f[k+1];if("'"==m||'"'==m){l="";for(q=2;f[k+q]!=m;)l+=f[k+q],q++;"H"==l?l=b.sJUIHeader:"F"==l&&(l=b.sJUIFooter);-1!=l.indexOf(".")?(m=l.split("."),i.id=m[0].substr(1,m[0].length-1),i.className=m[1]):"#"==l.charAt(0)?i.id=l.substr(1,l.length-1):i.className=l;k+=q}e.append(i);e=h(i)}else if(">"==j)e=e.parent();else if("l"==j&&d.bPaginate&&d.bLengthChange)g=pb(a);else if("f"==j&&
33
- d.bFilter)g=qb(a);else if("r"==j&&d.bProcessing)g=rb(a);else if("t"==j)g=sb(a);else if("i"==j&&d.bInfo)g=tb(a);else if("p"==j&&d.bPaginate)g=ub(a);else if(0!==n.ext.feature.length){i=n.ext.feature;q=0;for(m=i.length;q<m;q++)if(j==i[q].cFeature){g=i[q].fnInit(a);break}}g&&(i=a.aanFeatures,i[j]||(i[j]=[]),i[j].push(g),e.append(g))}c.replaceWith(e);a.nHolding=null}function ea(a,b){var c=h(b).children("tr"),d,e,f,g,j,i,m,l,q,k;a.splice(0,a.length);f=0;for(i=c.length;f<i;f++)a.push([]);f=0;for(i=c.length;f<
34
- i;f++){d=c[f];for(e=d.firstChild;e;){if("TD"==e.nodeName.toUpperCase()||"TH"==e.nodeName.toUpperCase()){l=1*e.getAttribute("colspan");q=1*e.getAttribute("rowspan");l=!l||0===l||1===l?1:l;q=!q||0===q||1===q?1:q;g=0;for(j=a[f];j[g];)g++;m=g;k=1===l?!0:!1;for(j=0;j<l;j++)for(g=0;g<q;g++)a[f+g][m+j]={cell:e,unique:k},a[f+g].nTr=d}e=e.nextSibling}}}function ra(a,b,c){var d=[];c||(c=a.aoHeader,b&&(c=[],ea(c,b)));for(var b=0,e=c.length;b<e;b++)for(var f=0,g=c[b].length;f<g;f++)if(c[b][f].unique&&(!d[f]||
35
- !a.bSortCellsTop))d[f]=c[b][f].cell;return d}function sa(a,b,c){r(a,"aoServerParams","serverParams",[b]);if(b&&h.isArray(b)){var d={},e=/(.*?)\[\]$/;h.each(b,function(a,b){var c=b.name.match(e);c?(c=c[0],d[c]||(d[c]=[]),d[c].push(b.value)):d[b.name]=b.value});b=d}var f,g=a.ajax,j=a.oInstance,i=function(b){r(a,null,"xhr",[a,b,a.jqXHR]);c(b)};if(h.isPlainObject(g)&&g.data){f=g.data;var m="function"===typeof f?f(b,a):f,b="function"===typeof f&&m?m:h.extend(!0,b,m);delete g.data}m={data:b,success:function(b){var c=
36
- b.error||b.sError;c&&K(a,0,c);a.json=b;i(b)},dataType:"json",cache:!1,type:a.sServerMethod,error:function(b,c){var d=r(a,null,"xhr",[a,null,a.jqXHR]);-1===h.inArray(!0,d)&&("parsererror"==c?K(a,0,"Invalid JSON response",1):4===b.readyState&&K(a,0,"Ajax error",7));C(a,!1)}};a.oAjaxData=b;r(a,null,"preXhr",[a,b]);a.fnServerData?a.fnServerData.call(j,a.sAjaxSource,h.map(b,function(a,b){return{name:b,value:a}}),i,a):a.sAjaxSource||"string"===typeof g?a.jqXHR=h.ajax(h.extend(m,{url:g||a.sAjaxSource})):
37
- "function"===typeof g?a.jqXHR=g.call(j,b,i,a):(a.jqXHR=h.ajax(h.extend(m,g)),g.data=f)}function mb(a){return a.bAjaxDataGet?(a.iDraw++,C(a,!0),sa(a,vb(a),function(b){wb(a,b)}),!1):!0}function vb(a){var b=a.aoColumns,c=b.length,d=a.oFeatures,e=a.oPreviousSearch,f=a.aoPreSearchCols,g,j=[],i,m,l,k=X(a);g=a._iDisplayStart;i=!1!==d.bPaginate?a._iDisplayLength:-1;var t=function(a,b){j.push({name:a,value:b})};t("sEcho",a.iDraw);t("iColumns",c);t("sColumns",D(b,"sName").join(","));t("iDisplayStart",g);t("iDisplayLength",
38
- i);var G={draw:a.iDraw,columns:[],order:[],start:g,length:i,search:{value:e.sSearch,regex:e.bRegex}};for(g=0;g<c;g++)m=b[g],l=f[g],i="function"==typeof m.mData?"function":m.mData,G.columns.push({data:i,name:m.sName,searchable:m.bSearchable,orderable:m.bSortable,search:{value:l.sSearch,regex:l.bRegex}}),t("mDataProp_"+g,i),d.bFilter&&(t("sSearch_"+g,l.sSearch),t("bRegex_"+g,l.bRegex),t("bSearchable_"+g,m.bSearchable)),d.bSort&&t("bSortable_"+g,m.bSortable);d.bFilter&&(t("sSearch",e.sSearch),t("bRegex",
39
- e.bRegex));d.bSort&&(h.each(k,function(a,b){G.order.push({column:b.col,dir:b.dir});t("iSortCol_"+a,b.col);t("sSortDir_"+a,b.dir)}),t("iSortingCols",k.length));b=n.ext.legacy.ajax;return null===b?a.sAjaxSource?j:G:b?j:G}function wb(a,b){var c=ta(a,b),d=b.sEcho!==k?b.sEcho:b.draw,e=b.iTotalRecords!==k?b.iTotalRecords:b.recordsTotal,f=b.iTotalDisplayRecords!==k?b.iTotalDisplayRecords:b.recordsFiltered;if(d){if(1*d<a.iDraw)return;a.iDraw=1*d}oa(a);a._iRecordsTotal=parseInt(e,10);a._iRecordsDisplay=parseInt(f,
40
- 10);d=0;for(e=c.length;d<e;d++)O(a,c[d]);a.aiDisplay=a.aiDisplayMaster.slice();a.bAjaxDataGet=!1;P(a);a._bInitComplete||ua(a,b);a.bAjaxDataGet=!0;C(a,!1)}function ta(a,b){var c=h.isPlainObject(a.ajax)&&a.ajax.dataSrc!==k?a.ajax.dataSrc:a.sAjaxDataProp;return"data"===c?b.aaData||b[c]:""!==c?S(c)(b):b}function qb(a){var b=a.oClasses,c=a.sTableId,d=a.oLanguage,e=a.oPreviousSearch,f=a.aanFeatures,g='<input type="search" class="'+b.sFilterInput+'"/>',j=d.sSearch,j=j.match(/_INPUT_/)?j.replace("_INPUT_",
41
- g):j+g,b=h("<div/>",{id:!f.f?c+"_filter":null,"class":b.sFilter}).append(h("<label/>").append(j)),f=function(){var b=!this.value?"":this.value;b!=e.sSearch&&(ga(a,{sSearch:b,bRegex:e.bRegex,bSmart:e.bSmart,bCaseInsensitive:e.bCaseInsensitive}),a._iDisplayStart=0,P(a))},g=null!==a.searchDelay?a.searchDelay:"ssp"===y(a)?400:0,i=h("input",b).val(e.sSearch).attr("placeholder",d.sSearchPlaceholder).on("keyup.DT search.DT input.DT paste.DT cut.DT",g?Oa(f,g):f).on("keypress.DT",function(a){if(13==a.keyCode)return!1}).attr("aria-controls",
42
- c);h(a.nTable).on("search.dt.DT",function(b,c){if(a===c)try{i[0]!==H.activeElement&&i.val(e.sSearch)}catch(d){}});return b[0]}function ga(a,b,c){var d=a.oPreviousSearch,e=a.aoPreSearchCols,f=function(a){d.sSearch=a.sSearch;d.bRegex=a.bRegex;d.bSmart=a.bSmart;d.bCaseInsensitive=a.bCaseInsensitive};Ga(a);if("ssp"!=y(a)){xb(a,b.sSearch,c,b.bEscapeRegex!==k?!b.bEscapeRegex:b.bRegex,b.bSmart,b.bCaseInsensitive);f(b);for(b=0;b<e.length;b++)yb(a,e[b].sSearch,b,e[b].bEscapeRegex!==k?!e[b].bEscapeRegex:e[b].bRegex,
43
- e[b].bSmart,e[b].bCaseInsensitive);zb(a)}else f(b);a.bFiltered=!0;r(a,null,"search",[a])}function zb(a){for(var b=n.ext.search,c=a.aiDisplay,d,e,f=0,g=b.length;f<g;f++){for(var j=[],i=0,m=c.length;i<m;i++)e=c[i],d=a.aoData[e],b[f](a,d._aFilterData,e,d._aData,i)&&j.push(e);c.length=0;h.merge(c,j)}}function yb(a,b,c,d,e,f){if(""!==b){for(var g=[],j=a.aiDisplay,d=Pa(b,d,e,f),e=0;e<j.length;e++)b=a.aoData[j[e]]._aFilterData[c],d.test(b)&&g.push(j[e]);a.aiDisplay=g}}function xb(a,b,c,d,e,f){var d=Pa(b,
44
- d,e,f),f=a.oPreviousSearch.sSearch,g=a.aiDisplayMaster,j,e=[];0!==n.ext.search.length&&(c=!0);j=Ab(a);if(0>=b.length)a.aiDisplay=g.slice();else{if(j||c||f.length>b.length||0!==b.indexOf(f)||a.bSorted)a.aiDisplay=g.slice();b=a.aiDisplay;for(c=0;c<b.length;c++)d.test(a.aoData[b[c]]._sFilterRow)&&e.push(b[c]);a.aiDisplay=e}}function Pa(a,b,c,d){a=b?a:Qa(a);c&&(a="^(?=.*?"+h.map(a.match(/"[^"]+"|[^ ]+/g)||[""],function(a){if('"'===a.charAt(0))var b=a.match(/^"(.*)"$/),a=b?b[1]:a;return a.replace('"',
45
- "")}).join(")(?=.*?")+").*$");return RegExp(a,d?"i":"")}function Ab(a){var b=a.aoColumns,c,d,e,f,g,j,i,h,l=n.ext.type.search;c=!1;d=0;for(f=a.aoData.length;d<f;d++)if(h=a.aoData[d],!h._aFilterData){j=[];e=0;for(g=b.length;e<g;e++)c=b[e],c.bSearchable?(i=B(a,d,e,"filter"),l[c.sType]&&(i=l[c.sType](i)),null===i&&(i=""),"string"!==typeof i&&i.toString&&(i=i.toString())):i="",i.indexOf&&-1!==i.indexOf("&")&&(va.innerHTML=i,i=Wb?va.textContent:va.innerText),i.replace&&(i=i.replace(/[\r\n]/g,"")),j.push(i);
46
- h._aFilterData=j;h._sFilterRow=j.join(" ");c=!0}return c}function Bb(a){return{search:a.sSearch,smart:a.bSmart,regex:a.bRegex,caseInsensitive:a.bCaseInsensitive}}function Cb(a){return{sSearch:a.search,bSmart:a.smart,bRegex:a.regex,bCaseInsensitive:a.caseInsensitive}}function tb(a){var b=a.sTableId,c=a.aanFeatures.i,d=h("<div/>",{"class":a.oClasses.sInfo,id:!c?b+"_info":null});c||(a.aoDrawCallback.push({fn:Db,sName:"information"}),d.attr("role","status").attr("aria-live","polite"),h(a.nTable).attr("aria-describedby",
47
- b+"_info"));return d[0]}function Db(a){var b=a.aanFeatures.i;if(0!==b.length){var c=a.oLanguage,d=a._iDisplayStart+1,e=a.fnDisplayEnd(),f=a.fnRecordsTotal(),g=a.fnRecordsDisplay(),j=g?c.sInfo:c.sInfoEmpty;g!==f&&(j+=" "+c.sInfoFiltered);j+=c.sInfoPostFix;j=Eb(a,j);c=c.fnInfoCallback;null!==c&&(j=c.call(a.oInstance,a,d,e,f,g,j));h(b).html(j)}}function Eb(a,b){var c=a.fnFormatNumber,d=a._iDisplayStart+1,e=a._iDisplayLength,f=a.fnRecordsDisplay(),g=-1===e;return b.replace(/_START_/g,c.call(a,d)).replace(/_END_/g,
48
- c.call(a,a.fnDisplayEnd())).replace(/_MAX_/g,c.call(a,a.fnRecordsTotal())).replace(/_TOTAL_/g,c.call(a,f)).replace(/_PAGE_/g,c.call(a,g?1:Math.ceil(d/e))).replace(/_PAGES_/g,c.call(a,g?1:Math.ceil(f/e)))}function ha(a){var b,c,d=a.iInitDisplayStart,e=a.aoColumns,f;c=a.oFeatures;var g=a.bDeferLoading;if(a.bInitialised){ob(a);lb(a);fa(a,a.aoHeader);fa(a,a.aoFooter);C(a,!0);c.bAutoWidth&&Fa(a);b=0;for(c=e.length;b<c;b++)f=e[b],f.sWidth&&(f.nTh.style.width=v(f.sWidth));r(a,null,"preInit",[a]);T(a);e=
49
- y(a);if("ssp"!=e||g)"ajax"==e?sa(a,[],function(c){var f=ta(a,c);for(b=0;b<f.length;b++)O(a,f[b]);a.iInitDisplayStart=d;T(a);C(a,!1);ua(a,c)},a):(C(a,!1),ua(a))}else setTimeout(function(){ha(a)},200)}function ua(a,b){a._bInitComplete=!0;(b||a.oInit.aaData)&&$(a);r(a,null,"plugin-init",[a,b]);r(a,"aoInitComplete","init",[a,b])}function Ra(a,b){var c=parseInt(b,10);a._iDisplayLength=c;Sa(a);r(a,null,"length",[a,c])}function pb(a){for(var b=a.oClasses,c=a.sTableId,d=a.aLengthMenu,e=h.isArray(d[0]),f=
50
- e?d[0]:d,d=e?d[1]:d,e=h("<select/>",{name:c+"_length","aria-controls":c,"class":b.sLengthSelect}),g=0,j=f.length;g<j;g++)e[0][g]=new Option("number"===typeof d[g]?a.fnFormatNumber(d[g]):d[g],f[g]);var i=h("<div><label/></div>").addClass(b.sLength);a.aanFeatures.l||(i[0].id=c+"_length");i.children().append(a.oLanguage.sLengthMenu.replace("_MENU_",e[0].outerHTML));h("select",i).val(a._iDisplayLength).on("change.DT",function(){Ra(a,h(this).val());P(a)});h(a.nTable).on("length.dt.DT",function(b,c,d){a===
51
- c&&h("select",i).val(d)});return i[0]}function ub(a){var b=a.sPaginationType,c=n.ext.pager[b],d="function"===typeof c,e=function(a){P(a)},b=h("<div/>").addClass(a.oClasses.sPaging+b)[0],f=a.aanFeatures;d||c.fnInit(a,b,e);f.p||(b.id=a.sTableId+"_paginate",a.aoDrawCallback.push({fn:function(a){if(d){var b=a._iDisplayStart,i=a._iDisplayLength,h=a.fnRecordsDisplay(),l=-1===i,b=l?0:Math.ceil(b/i),i=l?1:Math.ceil(h/i),h=c(b,i),k,l=0;for(k=f.p.length;l<k;l++)Na(a,"pageButton")(a,f.p[l],l,h,b,i)}else c.fnUpdate(a,
52
- e)},sName:"pagination"}));return b}function Ta(a,b,c){var d=a._iDisplayStart,e=a._iDisplayLength,f=a.fnRecordsDisplay();0===f||-1===e?d=0:"number"===typeof b?(d=b*e,d>f&&(d=0)):"first"==b?d=0:"previous"==b?(d=0<=e?d-e:0,0>d&&(d=0)):"next"==b?d+e<f&&(d+=e):"last"==b?d=Math.floor((f-1)/e)*e:K(a,0,"Unknown paging action: "+b,5);b=a._iDisplayStart!==d;a._iDisplayStart=d;b&&(r(a,null,"page",[a]),c&&P(a));return b}function rb(a){return h("<div/>",{id:!a.aanFeatures.r?a.sTableId+"_processing":null,"class":a.oClasses.sProcessing}).html(a.oLanguage.sProcessing).insertBefore(a.nTable)[0]}
53
- function C(a,b){a.oFeatures.bProcessing&&h(a.aanFeatures.r).css("display",b?"block":"none");r(a,null,"processing",[a,b])}function sb(a){var b=h(a.nTable);b.attr("role","grid");var c=a.oScroll;if(""===c.sX&&""===c.sY)return a.nTable;var d=c.sX,e=c.sY,f=a.oClasses,g=b.children("caption"),j=g.length?g[0]._captionSide:null,i=h(b[0].cloneNode(!1)),m=h(b[0].cloneNode(!1)),l=b.children("tfoot");l.length||(l=null);i=h("<div/>",{"class":f.sScrollWrapper}).append(h("<div/>",{"class":f.sScrollHead}).css({overflow:"hidden",
54
- position:"relative",border:0,width:d?!d?null:v(d):"100%"}).append(h("<div/>",{"class":f.sScrollHeadInner}).css({"box-sizing":"content-box",width:c.sXInner||"100%"}).append(i.removeAttr("id").css("margin-left",0).append("top"===j?g:null).append(b.children("thead"))))).append(h("<div/>",{"class":f.sScrollBody}).css({position:"relative",overflow:"auto",width:!d?null:v(d)}).append(b));l&&i.append(h("<div/>",{"class":f.sScrollFoot}).css({overflow:"hidden",border:0,width:d?!d?null:v(d):"100%"}).append(h("<div/>",
55
- {"class":f.sScrollFootInner}).append(m.removeAttr("id").css("margin-left",0).append("bottom"===j?g:null).append(b.children("tfoot")))));var b=i.children(),k=b[0],f=b[1],t=l?b[2]:null;if(d)h(f).on("scroll.DT",function(){var a=this.scrollLeft;k.scrollLeft=a;l&&(t.scrollLeft=a)});h(f).css(e&&c.bCollapse?"max-height":"height",e);a.nScrollHead=k;a.nScrollBody=f;a.nScrollFoot=t;a.aoDrawCallback.push({fn:la,sName:"scrolling"});return i[0]}function la(a){var b=a.oScroll,c=b.sX,d=b.sXInner,e=b.sY,b=b.iBarWidth,
56
- f=h(a.nScrollHead),g=f[0].style,j=f.children("div"),i=j[0].style,m=j.children("table"),j=a.nScrollBody,l=h(j),q=j.style,t=h(a.nScrollFoot).children("div"),n=t.children("table"),o=h(a.nTHead),p=h(a.nTable),s=p[0],r=s.style,u=a.nTFoot?h(a.nTFoot):null,x=a.oBrowser,U=x.bScrollOversize,Xb=D(a.aoColumns,"nTh"),Q,L,R,w,Ua=[],y=[],z=[],A=[],B,C=function(a){a=a.style;a.paddingTop="0";a.paddingBottom="0";a.borderTopWidth="0";a.borderBottomWidth="0";a.height=0};L=j.scrollHeight>j.clientHeight;if(a.scrollBarVis!==
57
- L&&a.scrollBarVis!==k)a.scrollBarVis=L,$(a);else{a.scrollBarVis=L;p.children("thead, tfoot").remove();u&&(R=u.clone().prependTo(p),Q=u.find("tr"),R=R.find("tr"));w=o.clone().prependTo(p);o=o.find("tr");L=w.find("tr");w.find("th, td").removeAttr("tabindex");c||(q.width="100%",f[0].style.width="100%");h.each(ra(a,w),function(b,c){B=aa(a,b);c.style.width=a.aoColumns[B].sWidth});u&&I(function(a){a.style.width=""},R);f=p.outerWidth();if(""===c){r.width="100%";if(U&&(p.find("tbody").height()>j.offsetHeight||
58
- "scroll"==l.css("overflow-y")))r.width=v(p.outerWidth()-b);f=p.outerWidth()}else""!==d&&(r.width=v(d),f=p.outerWidth());I(C,L);I(function(a){z.push(a.innerHTML);Ua.push(v(h(a).css("width")))},L);I(function(a,b){if(h.inArray(a,Xb)!==-1)a.style.width=Ua[b]},o);h(L).height(0);u&&(I(C,R),I(function(a){A.push(a.innerHTML);y.push(v(h(a).css("width")))},R),I(function(a,b){a.style.width=y[b]},Q),h(R).height(0));I(function(a,b){a.innerHTML='<div class="dataTables_sizing">'+z[b]+"</div>";a.childNodes[0].style.height=
59
- "0";a.childNodes[0].style.overflow="hidden";a.style.width=Ua[b]},L);u&&I(function(a,b){a.innerHTML='<div class="dataTables_sizing">'+A[b]+"</div>";a.childNodes[0].style.height="0";a.childNodes[0].style.overflow="hidden";a.style.width=y[b]},R);if(p.outerWidth()<f){Q=j.scrollHeight>j.offsetHeight||"scroll"==l.css("overflow-y")?f+b:f;if(U&&(j.scrollHeight>j.offsetHeight||"scroll"==l.css("overflow-y")))r.width=v(Q-b);(""===c||""!==d)&&K(a,1,"Possible column misalignment",6)}else Q="100%";q.width=v(Q);
60
- g.width=v(Q);u&&(a.nScrollFoot.style.width=v(Q));!e&&U&&(q.height=v(s.offsetHeight+b));c=p.outerWidth();m[0].style.width=v(c);i.width=v(c);d=p.height()>j.clientHeight||"scroll"==l.css("overflow-y");e="padding"+(x.bScrollbarLeft?"Left":"Right");i[e]=d?b+"px":"0px";u&&(n[0].style.width=v(c),t[0].style.width=v(c),t[0].style[e]=d?b+"px":"0px");p.children("colgroup").insertBefore(p.children("thead"));l.scroll();if((a.bSorted||a.bFiltered)&&!a._drawHold)j.scrollTop=0}}function I(a,b,c){for(var d=0,e=0,
61
- f=b.length,g,j;e<f;){g=b[e].firstChild;for(j=c?c[e].firstChild:null;g;)1===g.nodeType&&(c?a(g,j,d):a(g,d),d++),g=g.nextSibling,j=c?j.nextSibling:null;e++}}function Fa(a){var b=a.nTable,c=a.aoColumns,d=a.oScroll,e=d.sY,f=d.sX,g=d.sXInner,j=c.length,i=ma(a,"bVisible"),m=h("th",a.nTHead),l=b.getAttribute("width"),k=b.parentNode,t=!1,n,o,p=a.oBrowser,d=p.bScrollOversize;(n=b.style.width)&&-1!==n.indexOf("%")&&(l=n);for(n=0;n<i.length;n++)o=c[i[n]],null!==o.sWidth&&(o.sWidth=Fb(o.sWidthOrig,k),t=!0);if(d||
62
- !t&&!f&&!e&&j==V(a)&&j==m.length)for(n=0;n<j;n++)i=aa(a,n),null!==i&&(c[i].sWidth=v(m.eq(n).width()));else{j=h(b).clone().css("visibility","hidden").removeAttr("id");j.find("tbody tr").remove();var s=h("<tr/>").appendTo(j.find("tbody"));j.find("thead, tfoot").remove();j.append(h(a.nTHead).clone()).append(h(a.nTFoot).clone());j.find("tfoot th, tfoot td").css("width","");m=ra(a,j.find("thead")[0]);for(n=0;n<i.length;n++)o=c[i[n]],m[n].style.width=null!==o.sWidthOrig&&""!==o.sWidthOrig?v(o.sWidthOrig):
63
- "",o.sWidthOrig&&f&&h(m[n]).append(h("<div/>").css({width:o.sWidthOrig,margin:0,padding:0,border:0,height:1}));if(a.aoData.length)for(n=0;n<i.length;n++)t=i[n],o=c[t],h(Gb(a,t)).clone(!1).append(o.sContentPadding).appendTo(s);h("[name]",j).removeAttr("name");o=h("<div/>").css(f||e?{position:"absolute",top:0,left:0,height:1,right:0,overflow:"hidden"}:{}).append(j).appendTo(k);f&&g?j.width(g):f?(j.css("width","auto"),j.removeAttr("width"),j.width()<k.clientWidth&&l&&j.width(k.clientWidth)):e?j.width(k.clientWidth):
64
- l&&j.width(l);for(n=e=0;n<i.length;n++)k=h(m[n]),g=k.outerWidth()-k.width(),k=p.bBounding?Math.ceil(m[n].getBoundingClientRect().width):k.outerWidth(),e+=k,c[i[n]].sWidth=v(k-g);b.style.width=v(e);o.remove()}l&&(b.style.width=v(l));if((l||f)&&!a._reszEvt)b=function(){h(E).on("resize.DT-"+a.sInstance,Oa(function(){$(a)}))},d?setTimeout(b,1E3):b(),a._reszEvt=!0}function Fb(a,b){if(!a)return 0;var c=h("<div/>").css("width",v(a)).appendTo(b||H.body),d=c[0].offsetWidth;c.remove();return d}function Gb(a,
65
- b){var c=Hb(a,b);if(0>c)return null;var d=a.aoData[c];return!d.nTr?h("<td/>").html(B(a,c,b,"display"))[0]:d.anCells[b]}function Hb(a,b){for(var c,d=-1,e=-1,f=0,g=a.aoData.length;f<g;f++)c=B(a,f,b,"display")+"",c=c.replace(Yb,""),c=c.replace(/&nbsp;/g," "),c.length>d&&(d=c.length,e=f);return e}function v(a){return null===a?"0px":"number"==typeof a?0>a?"0px":a+"px":a.match(/\d$/)?a+"px":a}function X(a){var b,c,d=[],e=a.aoColumns,f,g,j,i;b=a.aaSortingFixed;c=h.isPlainObject(b);var m=[];f=function(a){a.length&&
66
- !h.isArray(a[0])?m.push(a):h.merge(m,a)};h.isArray(b)&&f(b);c&&b.pre&&f(b.pre);f(a.aaSorting);c&&b.post&&f(b.post);for(a=0;a<m.length;a++){i=m[a][0];f=e[i].aDataSort;b=0;for(c=f.length;b<c;b++)g=f[b],j=e[g].sType||"string",m[a]._idx===k&&(m[a]._idx=h.inArray(m[a][1],e[g].asSorting)),d.push({src:i,col:g,dir:m[a][1],index:m[a]._idx,type:j,formatter:n.ext.type.order[j+"-pre"]})}return d}function nb(a){var b,c,d=[],e=n.ext.type.order,f=a.aoData,g=0,j,i=a.aiDisplayMaster,h;Ga(a);h=X(a);b=0;for(c=h.length;b<
67
- c;b++)j=h[b],j.formatter&&g++,Ib(a,j.col);if("ssp"!=y(a)&&0!==h.length){b=0;for(c=i.length;b<c;b++)d[i[b]]=b;g===h.length?i.sort(function(a,b){var c,e,g,j,i=h.length,k=f[a]._aSortData,n=f[b]._aSortData;for(g=0;g<i;g++)if(j=h[g],c=k[j.col],e=n[j.col],c=c<e?-1:c>e?1:0,0!==c)return"asc"===j.dir?c:-c;c=d[a];e=d[b];return c<e?-1:c>e?1:0}):i.sort(function(a,b){var c,g,j,i,k=h.length,n=f[a]._aSortData,o=f[b]._aSortData;for(j=0;j<k;j++)if(i=h[j],c=n[i.col],g=o[i.col],i=e[i.type+"-"+i.dir]||e["string-"+i.dir],
68
- c=i(c,g),0!==c)return c;c=d[a];g=d[b];return c<g?-1:c>g?1:0})}a.bSorted=!0}function Jb(a){for(var b,c,d=a.aoColumns,e=X(a),a=a.oLanguage.oAria,f=0,g=d.length;f<g;f++){c=d[f];var j=c.asSorting;b=c.sTitle.replace(/<.*?>/g,"");var i=c.nTh;i.removeAttribute("aria-sort");c.bSortable&&(0<e.length&&e[0].col==f?(i.setAttribute("aria-sort","asc"==e[0].dir?"ascending":"descending"),c=j[e[0].index+1]||j[0]):c=j[0],b+="asc"===c?a.sSortAscending:a.sSortDescending);i.setAttribute("aria-label",b)}}function Va(a,
69
- b,c,d){var e=a.aaSorting,f=a.aoColumns[b].asSorting,g=function(a,b){var c=a._idx;c===k&&(c=h.inArray(a[1],f));return c+1<f.length?c+1:b?null:0};"number"===typeof e[0]&&(e=a.aaSorting=[e]);c&&a.oFeatures.bSortMulti?(c=h.inArray(b,D(e,"0")),-1!==c?(b=g(e[c],!0),null===b&&1===e.length&&(b=0),null===b?e.splice(c,1):(e[c][1]=f[b],e[c]._idx=b)):(e.push([b,f[0],0]),e[e.length-1]._idx=0)):e.length&&e[0][0]==b?(b=g(e[0]),e.length=1,e[0][1]=f[b],e[0]._idx=b):(e.length=0,e.push([b,f[0]]),e[0]._idx=0);T(a);"function"==
70
- typeof d&&d(a)}function Ma(a,b,c,d){var e=a.aoColumns[c];Wa(b,{},function(b){!1!==e.bSortable&&(a.oFeatures.bProcessing?(C(a,!0),setTimeout(function(){Va(a,c,b.shiftKey,d);"ssp"!==y(a)&&C(a,!1)},0)):Va(a,c,b.shiftKey,d))})}function wa(a){var b=a.aLastSort,c=a.oClasses.sSortColumn,d=X(a),e=a.oFeatures,f,g;if(e.bSort&&e.bSortClasses){e=0;for(f=b.length;e<f;e++)g=b[e].src,h(D(a.aoData,"anCells",g)).removeClass(c+(2>e?e+1:3));e=0;for(f=d.length;e<f;e++)g=d[e].src,h(D(a.aoData,"anCells",g)).addClass(c+
71
- (2>e?e+1:3))}a.aLastSort=d}function Ib(a,b){var c=a.aoColumns[b],d=n.ext.order[c.sSortDataType],e;d&&(e=d.call(a.oInstance,a,b,ba(a,b)));for(var f,g=n.ext.type.order[c.sType+"-pre"],j=0,i=a.aoData.length;j<i;j++)if(c=a.aoData[j],c._aSortData||(c._aSortData=[]),!c._aSortData[b]||d)f=d?e[j]:B(a,j,b,"sort"),c._aSortData[b]=g?g(f):f}function xa(a){if(a.oFeatures.bStateSave&&!a.bDestroying){var b={time:+new Date,start:a._iDisplayStart,length:a._iDisplayLength,order:h.extend(!0,[],a.aaSorting),search:Bb(a.oPreviousSearch),
72
- columns:h.map(a.aoColumns,function(b,d){return{visible:b.bVisible,search:Bb(a.aoPreSearchCols[d])}})};r(a,"aoStateSaveParams","stateSaveParams",[a,b]);a.oSavedState=b;a.fnStateSaveCallback.call(a.oInstance,a,b)}}function Kb(a,b,c){var d,e,f=a.aoColumns,b=function(b){if(b&&b.time){var g=r(a,"aoStateLoadParams","stateLoadParams",[a,b]);if(-1===h.inArray(!1,g)&&(g=a.iStateDuration,!(0<g&&b.time<+new Date-1E3*g)&&!(b.columns&&f.length!==b.columns.length))){a.oLoadedState=h.extend(!0,{},b);b.start!==k&&
73
- (a._iDisplayStart=b.start,a.iInitDisplayStart=b.start);b.length!==k&&(a._iDisplayLength=b.length);b.order!==k&&(a.aaSorting=[],h.each(b.order,function(b,c){a.aaSorting.push(c[0]>=f.length?[0,c[1]]:c)}));b.search!==k&&h.extend(a.oPreviousSearch,Cb(b.search));if(b.columns){d=0;for(e=b.columns.length;d<e;d++)g=b.columns[d],g.visible!==k&&(f[d].bVisible=g.visible),g.search!==k&&h.extend(a.aoPreSearchCols[d],Cb(g.search))}r(a,"aoStateLoaded","stateLoaded",[a,b])}}c()};if(a.oFeatures.bStateSave){var g=
74
- a.fnStateLoadCallback.call(a.oInstance,a,b);g!==k&&b(g)}else c()}function ya(a){var b=n.settings,a=h.inArray(a,D(b,"nTable"));return-1!==a?b[a]:null}function K(a,b,c,d){c="DataTables warning: "+(a?"table id="+a.sTableId+" - ":"")+c;d&&(c+=". For more information about this error, please see http://datatables.net/tn/"+d);if(b)E.console&&console.log&&console.log(c);else if(b=n.ext,b=b.sErrMode||b.errMode,a&&r(a,null,"error",[a,d,c]),"alert"==b)alert(c);else{if("throw"==b)throw Error(c);"function"==
75
- typeof b&&b(a,d,c)}}function F(a,b,c,d){h.isArray(c)?h.each(c,function(c,d){h.isArray(d)?F(a,b,d[0],d[1]):F(a,b,d)}):(d===k&&(d=c),b[c]!==k&&(a[d]=b[c]))}function Xa(a,b,c){var d,e;for(e in b)b.hasOwnProperty(e)&&(d=b[e],h.isPlainObject(d)?(h.isPlainObject(a[e])||(a[e]={}),h.extend(!0,a[e],d)):a[e]=c&&"data"!==e&&"aaData"!==e&&h.isArray(d)?d.slice():d);return a}function Wa(a,b,c){h(a).on("click.DT",b,function(b){h(a).blur();c(b)}).on("keypress.DT",b,function(a){13===a.which&&(a.preventDefault(),c(a))}).on("selectstart.DT",
76
- function(){return!1})}function z(a,b,c,d){c&&a[b].push({fn:c,sName:d})}function r(a,b,c,d){var e=[];b&&(e=h.map(a[b].slice().reverse(),function(b){return b.fn.apply(a.oInstance,d)}));null!==c&&(b=h.Event(c+".dt"),h(a.nTable).trigger(b,d),e.push(b.result));return e}function Sa(a){var b=a._iDisplayStart,c=a.fnDisplayEnd(),d=a._iDisplayLength;b>=c&&(b=c-d);b-=b%d;if(-1===d||0>b)b=0;a._iDisplayStart=b}function Na(a,b){var c=a.renderer,d=n.ext.renderer[b];return h.isPlainObject(c)&&c[b]?d[c[b]]||d._:"string"===
77
- typeof c?d[c]||d._:d._}function y(a){return a.oFeatures.bServerSide?"ssp":a.ajax||a.sAjaxSource?"ajax":"dom"}function ia(a,b){var c=[],c=Lb.numbers_length,d=Math.floor(c/2);b<=c?c=Y(0,b):a<=d?(c=Y(0,c-2),c.push("ellipsis"),c.push(b-1)):(a>=b-1-d?c=Y(b-(c-2),b):(c=Y(a-d+2,a+d-1),c.push("ellipsis"),c.push(b-1)),c.splice(0,0,"ellipsis"),c.splice(0,0,0));c.DT_el="span";return c}function Da(a){h.each({num:function(b){return za(b,a)},"num-fmt":function(b){return za(b,a,Ya)},"html-num":function(b){return za(b,
78
- a,Aa)},"html-num-fmt":function(b){return za(b,a,Aa,Ya)}},function(b,c){x.type.order[b+a+"-pre"]=c;b.match(/^html\-/)&&(x.type.search[b+a]=x.type.search.html)})}function Mb(a){return function(){var b=[ya(this[n.ext.iApiIndex])].concat(Array.prototype.slice.call(arguments));return n.ext.internal[a].apply(this,b)}}var n=function(a){this.$=function(a,b){return this.api(!0).$(a,b)};this._=function(a,b){return this.api(!0).rows(a,b).data()};this.api=function(a){return a?new s(ya(this[x.iApiIndex])):new s(this)};
79
- this.fnAddData=function(a,b){var c=this.api(!0),d=h.isArray(a)&&(h.isArray(a[0])||h.isPlainObject(a[0]))?c.rows.add(a):c.row.add(a);(b===k||b)&&c.draw();return d.flatten().toArray()};this.fnAdjustColumnSizing=function(a){var b=this.api(!0).columns.adjust(),c=b.settings()[0],d=c.oScroll;a===k||a?b.draw(!1):(""!==d.sX||""!==d.sY)&&la(c)};this.fnClearTable=function(a){var b=this.api(!0).clear();(a===k||a)&&b.draw()};this.fnClose=function(a){this.api(!0).row(a).child.hide()};this.fnDeleteRow=function(a,
80
- b,c){var d=this.api(!0),a=d.rows(a),e=a.settings()[0],h=e.aoData[a[0][0]];a.remove();b&&b.call(this,e,h);(c===k||c)&&d.draw();return h};this.fnDestroy=function(a){this.api(!0).destroy(a)};this.fnDraw=function(a){this.api(!0).draw(a)};this.fnFilter=function(a,b,c,d,e,h){e=this.api(!0);null===b||b===k?e.search(a,c,d,h):e.column(b).search(a,c,d,h);e.draw()};this.fnGetData=function(a,b){var c=this.api(!0);if(a!==k){var d=a.nodeName?a.nodeName.toLowerCase():"";return b!==k||"td"==d||"th"==d?c.cell(a,b).data():
81
- c.row(a).data()||null}return c.data().toArray()};this.fnGetNodes=function(a){var b=this.api(!0);return a!==k?b.row(a).node():b.rows().nodes().flatten().toArray()};this.fnGetPosition=function(a){var b=this.api(!0),c=a.nodeName.toUpperCase();return"TR"==c?b.row(a).index():"TD"==c||"TH"==c?(a=b.cell(a).index(),[a.row,a.columnVisible,a.column]):null};this.fnIsOpen=function(a){return this.api(!0).row(a).child.isShown()};this.fnOpen=function(a,b,c){return this.api(!0).row(a).child(b,c).show().child()[0]};
82
- this.fnPageChange=function(a,b){var c=this.api(!0).page(a);(b===k||b)&&c.draw(!1)};this.fnSetColumnVis=function(a,b,c){a=this.api(!0).column(a).visible(b);(c===k||c)&&a.columns.adjust().draw()};this.fnSettings=function(){return ya(this[x.iApiIndex])};this.fnSort=function(a){this.api(!0).order(a).draw()};this.fnSortListener=function(a,b,c){this.api(!0).order.listener(a,b,c)};this.fnUpdate=function(a,b,c,d,e){var h=this.api(!0);c===k||null===c?h.row(b).data(a):h.cell(b,c).data(a);(e===k||e)&&h.columns.adjust();
83
- (d===k||d)&&h.draw();return 0};this.fnVersionCheck=x.fnVersionCheck;var b=this,c=a===k,d=this.length;c&&(a={});this.oApi=this.internal=x.internal;for(var e in n.ext.internal)e&&(this[e]=Mb(e));this.each(function(){var e={},g=1<d?Xa(e,a,!0):a,j=0,i,e=this.getAttribute("id"),m=!1,l=n.defaults,q=h(this);if("table"!=this.nodeName.toLowerCase())K(null,0,"Non-table node initialisation ("+this.nodeName+")",2);else{fb(l);gb(l.column);J(l,l,!0);J(l.column,l.column,!0);J(l,h.extend(g,q.data()));var t=n.settings,
84
- j=0;for(i=t.length;j<i;j++){var o=t[j];if(o.nTable==this||o.nTHead&&o.nTHead.parentNode==this||o.nTFoot&&o.nTFoot.parentNode==this){var s=g.bRetrieve!==k?g.bRetrieve:l.bRetrieve;if(c||s)return o.oInstance;if(g.bDestroy!==k?g.bDestroy:l.bDestroy){o.oInstance.fnDestroy();break}else{K(o,0,"Cannot reinitialise DataTable",3);return}}if(o.sTableId==this.id){t.splice(j,1);break}}if(null===e||""===e)this.id=e="DataTables_Table_"+n.ext._unique++;var p=h.extend(!0,{},n.models.oSettings,{sDestroyWidth:q[0].style.width,
85
- sInstance:e,sTableId:e});p.nTable=this;p.oApi=b.internal;p.oInit=g;t.push(p);p.oInstance=1===b.length?b:q.dataTable();fb(g);Ca(g.oLanguage);g.aLengthMenu&&!g.iDisplayLength&&(g.iDisplayLength=h.isArray(g.aLengthMenu[0])?g.aLengthMenu[0][0]:g.aLengthMenu[0]);g=Xa(h.extend(!0,{},l),g);F(p.oFeatures,g,"bPaginate bLengthChange bFilter bSort bSortMulti bInfo bProcessing bAutoWidth bSortClasses bServerSide bDeferRender".split(" "));F(p,g,["asStripeClasses","ajax","fnServerData","fnFormatNumber","sServerMethod",
86
- "aaSorting","aaSortingFixed","aLengthMenu","sPaginationType","sAjaxSource","sAjaxDataProp","iStateDuration","sDom","bSortCellsTop","iTabIndex","fnStateLoadCallback","fnStateSaveCallback","renderer","searchDelay","rowId",["iCookieDuration","iStateDuration"],["oSearch","oPreviousSearch"],["aoSearchCols","aoPreSearchCols"],["iDisplayLength","_iDisplayLength"]]);F(p.oScroll,g,[["sScrollX","sX"],["sScrollXInner","sXInner"],["sScrollY","sY"],["bScrollCollapse","bCollapse"]]);F(p.oLanguage,g,"fnInfoCallback");
87
- z(p,"aoDrawCallback",g.fnDrawCallback,"user");z(p,"aoServerParams",g.fnServerParams,"user");z(p,"aoStateSaveParams",g.fnStateSaveParams,"user");z(p,"aoStateLoadParams",g.fnStateLoadParams,"user");z(p,"aoStateLoaded",g.fnStateLoaded,"user");z(p,"aoRowCallback",g.fnRowCallback,"user");z(p,"aoRowCreatedCallback",g.fnCreatedRow,"user");z(p,"aoHeaderCallback",g.fnHeaderCallback,"user");z(p,"aoFooterCallback",g.fnFooterCallback,"user");z(p,"aoInitComplete",g.fnInitComplete,"user");z(p,"aoPreDrawCallback",
88
- g.fnPreDrawCallback,"user");p.rowIdFn=S(g.rowId);hb(p);var u=p.oClasses;h.extend(u,n.ext.classes,g.oClasses);q.addClass(u.sTable);p.iInitDisplayStart===k&&(p.iInitDisplayStart=g.iDisplayStart,p._iDisplayStart=g.iDisplayStart);null!==g.iDeferLoading&&(p.bDeferLoading=!0,e=h.isArray(g.iDeferLoading),p._iRecordsDisplay=e?g.iDeferLoading[0]:g.iDeferLoading,p._iRecordsTotal=e?g.iDeferLoading[1]:g.iDeferLoading);var v=p.oLanguage;h.extend(!0,v,g.oLanguage);v.sUrl&&(h.ajax({dataType:"json",url:v.sUrl,success:function(a){Ca(a);
89
- J(l.oLanguage,a);h.extend(true,v,a);ha(p)},error:function(){ha(p)}}),m=!0);null===g.asStripeClasses&&(p.asStripeClasses=[u.sStripeOdd,u.sStripeEven]);var e=p.asStripeClasses,x=q.children("tbody").find("tr").eq(0);-1!==h.inArray(!0,h.map(e,function(a){return x.hasClass(a)}))&&(h("tbody tr",this).removeClass(e.join(" ")),p.asDestroyStripes=e.slice());e=[];t=this.getElementsByTagName("thead");0!==t.length&&(ea(p.aoHeader,t[0]),e=ra(p));if(null===g.aoColumns){t=[];j=0;for(i=e.length;j<i;j++)t.push(null)}else t=
90
- g.aoColumns;j=0;for(i=t.length;j<i;j++)Ea(p,e?e[j]:null);jb(p,g.aoColumnDefs,t,function(a,b){ka(p,a,b)});if(x.length){var w=function(a,b){return a.getAttribute("data-"+b)!==null?b:null};h(x[0]).children("th, td").each(function(a,b){var c=p.aoColumns[a];if(c.mData===a){var d=w(b,"sort")||w(b,"order"),e=w(b,"filter")||w(b,"search");if(d!==null||e!==null){c.mData={_:a+".display",sort:d!==null?a+".@data-"+d:k,type:d!==null?a+".@data-"+d:k,filter:e!==null?a+".@data-"+e:k};ka(p,a)}}})}var U=p.oFeatures,
91
- e=function(){if(g.aaSorting===k){var a=p.aaSorting;j=0;for(i=a.length;j<i;j++)a[j][1]=p.aoColumns[j].asSorting[0]}wa(p);U.bSort&&z(p,"aoDrawCallback",function(){if(p.bSorted){var a=X(p),b={};h.each(a,function(a,c){b[c.src]=c.dir});r(p,null,"order",[p,a,b]);Jb(p)}});z(p,"aoDrawCallback",function(){(p.bSorted||y(p)==="ssp"||U.bDeferRender)&&wa(p)},"sc");var a=q.children("caption").each(function(){this._captionSide=h(this).css("caption-side")}),b=q.children("thead");b.length===0&&(b=h("<thead/>").appendTo(q));
92
- p.nTHead=b[0];b=q.children("tbody");b.length===0&&(b=h("<tbody/>").appendTo(q));p.nTBody=b[0];b=q.children("tfoot");if(b.length===0&&a.length>0&&(p.oScroll.sX!==""||p.oScroll.sY!==""))b=h("<tfoot/>").appendTo(q);if(b.length===0||b.children().length===0)q.addClass(u.sNoFooter);else if(b.length>0){p.nTFoot=b[0];ea(p.aoFooter,p.nTFoot)}if(g.aaData)for(j=0;j<g.aaData.length;j++)O(p,g.aaData[j]);else(p.bDeferLoading||y(p)=="dom")&&na(p,h(p.nTBody).children("tr"));p.aiDisplay=p.aiDisplayMaster.slice();
93
- p.bInitialised=true;m===false&&ha(p)};g.bStateSave?(U.bStateSave=!0,z(p,"aoDrawCallback",xa,"state_save"),Kb(p,g,e)):e()}});b=null;return this},x,s,o,u,Za={},Nb=/[\r\n]/g,Aa=/<.*?>/g,Zb=/^\d{2,4}[\.\/\-]\d{1,2}[\.\/\-]\d{1,2}([T ]{1}\d{1,2}[:\.]\d{2}([\.:]\d{2})?)?$/,$b=RegExp("(\\/|\\.|\\*|\\+|\\?|\\||\\(|\\)|\\[|\\]|\\{|\\}|\\\\|\\$|\\^|\\-)","g"),Ya=/[',$£€¥%\u2009\u202F\u20BD\u20a9\u20BArfkɃΞ]/gi,M=function(a){return!a||!0===a||"-"===a?!0:!1},Ob=function(a){var b=parseInt(a,10);return!isNaN(b)&&
94
- isFinite(a)?b:null},Pb=function(a,b){Za[b]||(Za[b]=RegExp(Qa(b),"g"));return"string"===typeof a&&"."!==b?a.replace(/\./g,"").replace(Za[b],"."):a},$a=function(a,b,c){var d="string"===typeof a;if(M(a))return!0;b&&d&&(a=Pb(a,b));c&&d&&(a=a.replace(Ya,""));return!isNaN(parseFloat(a))&&isFinite(a)},Qb=function(a,b,c){return M(a)?!0:!(M(a)||"string"===typeof a)?null:$a(a.replace(Aa,""),b,c)?!0:null},D=function(a,b,c){var d=[],e=0,f=a.length;if(c!==k)for(;e<f;e++)a[e]&&a[e][b]&&d.push(a[e][b][c]);else for(;e<
95
- f;e++)a[e]&&d.push(a[e][b]);return d},ja=function(a,b,c,d){var e=[],f=0,g=b.length;if(d!==k)for(;f<g;f++)a[b[f]][c]&&e.push(a[b[f]][c][d]);else for(;f<g;f++)e.push(a[b[f]][c]);return e},Y=function(a,b){var c=[],d;b===k?(b=0,d=a):(d=b,b=a);for(var e=b;e<d;e++)c.push(e);return c},Rb=function(a){for(var b=[],c=0,d=a.length;c<d;c++)a[c]&&b.push(a[c]);return b},qa=function(a){var b;a:{if(!(2>a.length)){b=a.slice().sort();for(var c=b[0],d=1,e=b.length;d<e;d++){if(b[d]===c){b=!1;break a}c=b[d]}}b=!0}if(b)return a.slice();
96
- b=[];var e=a.length,f,g=0,d=0;a:for(;d<e;d++){c=a[d];for(f=0;f<g;f++)if(b[f]===c)continue a;b.push(c);g++}return b};n.util={throttle:function(a,b){var c=b!==k?b:200,d,e;return function(){var b=this,g=+new Date,j=arguments;d&&g<d+c?(clearTimeout(e),e=setTimeout(function(){d=k;a.apply(b,j)},c)):(d=g,a.apply(b,j))}},escapeRegex:function(a){return a.replace($b,"\\$1")}};var A=function(a,b,c){a[b]!==k&&(a[c]=a[b])},ca=/\[.*?\]$/,W=/\(\)$/,Qa=n.util.escapeRegex,va=h("<div>")[0],Wb=va.textContent!==k,Yb=
97
- /<.*?>/g,Oa=n.util.throttle,Sb=[],w=Array.prototype,ac=function(a){var b,c,d=n.settings,e=h.map(d,function(a){return a.nTable});if(a){if(a.nTable&&a.oApi)return[a];if(a.nodeName&&"table"===a.nodeName.toLowerCase())return b=h.inArray(a,e),-1!==b?[d[b]]:null;if(a&&"function"===typeof a.settings)return a.settings().toArray();"string"===typeof a?c=h(a):a instanceof h&&(c=a)}else return[];if(c)return c.map(function(){b=h.inArray(this,e);return-1!==b?d[b]:null}).toArray()};s=function(a,b){if(!(this instanceof
98
- s))return new s(a,b);var c=[],d=function(a){(a=ac(a))&&(c=c.concat(a))};if(h.isArray(a))for(var e=0,f=a.length;e<f;e++)d(a[e]);else d(a);this.context=qa(c);b&&h.merge(this,b);this.selector={rows:null,cols:null,opts:null};s.extend(this,this,Sb)};n.Api=s;h.extend(s.prototype,{any:function(){return 0!==this.count()},concat:w.concat,context:[],count:function(){return this.flatten().length},each:function(a){for(var b=0,c=this.length;b<c;b++)a.call(this,this[b],b,this);return this},eq:function(a){var b=
99
- this.context;return b.length>a?new s(b[a],this[a]):null},filter:function(a){var b=[];if(w.filter)b=w.filter.call(this,a,this);else for(var c=0,d=this.length;c<d;c++)a.call(this,this[c],c,this)&&b.push(this[c]);return new s(this.context,b)},flatten:function(){var a=[];return new s(this.context,a.concat.apply(a,this.toArray()))},join:w.join,indexOf:w.indexOf||function(a,b){for(var c=b||0,d=this.length;c<d;c++)if(this[c]===a)return c;return-1},iterator:function(a,b,c,d){var e=[],f,g,j,h,m,l=this.context,
100
- n,o,u=this.selector;"string"===typeof a&&(d=c,c=b,b=a,a=!1);g=0;for(j=l.length;g<j;g++){var r=new s(l[g]);if("table"===b)f=c.call(r,l[g],g),f!==k&&e.push(f);else if("columns"===b||"rows"===b)f=c.call(r,l[g],this[g],g),f!==k&&e.push(f);else if("column"===b||"column-rows"===b||"row"===b||"cell"===b){o=this[g];"column-rows"===b&&(n=Ba(l[g],u.opts));h=0;for(m=o.length;h<m;h++)f=o[h],f="cell"===b?c.call(r,l[g],f.row,f.column,g,h):c.call(r,l[g],f,g,h,n),f!==k&&e.push(f)}}return e.length||d?(a=new s(l,a?
101
- e.concat.apply([],e):e),b=a.selector,b.rows=u.rows,b.cols=u.cols,b.opts=u.opts,a):this},lastIndexOf:w.lastIndexOf||function(a,b){return this.indexOf.apply(this.toArray.reverse(),arguments)},length:0,map:function(a){var b=[];if(w.map)b=w.map.call(this,a,this);else for(var c=0,d=this.length;c<d;c++)b.push(a.call(this,this[c],c));return new s(this.context,b)},pluck:function(a){return this.map(function(b){return b[a]})},pop:w.pop,push:w.push,reduce:w.reduce||function(a,b){return ib(this,a,b,0,this.length,
102
- 1)},reduceRight:w.reduceRight||function(a,b){return ib(this,a,b,this.length-1,-1,-1)},reverse:w.reverse,selector:null,shift:w.shift,slice:function(){return new s(this.context,this)},sort:w.sort,splice:w.splice,toArray:function(){return w.slice.call(this)},to$:function(){return h(this)},toJQuery:function(){return h(this)},unique:function(){return new s(this.context,qa(this))},unshift:w.unshift});s.extend=function(a,b,c){if(c.length&&b&&(b instanceof s||b.__dt_wrapper)){var d,e,f,g=function(a,b,c){return function(){var d=
103
- b.apply(a,arguments);s.extend(d,d,c.methodExt);return d}};d=0;for(e=c.length;d<e;d++)f=c[d],b[f.name]="function"===typeof f.val?g(a,f.val,f):h.isPlainObject(f.val)?{}:f.val,b[f.name].__dt_wrapper=!0,s.extend(a,b[f.name],f.propExt)}};s.register=o=function(a,b){if(h.isArray(a))for(var c=0,d=a.length;c<d;c++)s.register(a[c],b);else for(var e=a.split("."),f=Sb,g,j,c=0,d=e.length;c<d;c++){g=(j=-1!==e[c].indexOf("()"))?e[c].replace("()",""):e[c];var i;a:{i=0;for(var m=f.length;i<m;i++)if(f[i].name===g){i=
104
- f[i];break a}i=null}i||(i={name:g,val:{},methodExt:[],propExt:[]},f.push(i));c===d-1?i.val=b:f=j?i.methodExt:i.propExt}};s.registerPlural=u=function(a,b,c){s.register(a,c);s.register(b,function(){var a=c.apply(this,arguments);return a===this?this:a instanceof s?a.length?h.isArray(a[0])?new s(a.context,a[0]):a[0]:k:a})};o("tables()",function(a){var b;if(a){b=s;var c=this.context;if("number"===typeof a)a=[c[a]];else var d=h.map(c,function(a){return a.nTable}),a=h(d).filter(a).map(function(){var a=h.inArray(this,
105
- d);return c[a]}).toArray();b=new b(a)}else b=this;return b});o("table()",function(a){var a=this.tables(a),b=a.context;return b.length?new s(b[0]):a});u("tables().nodes()","table().node()",function(){return this.iterator("table",function(a){return a.nTable},1)});u("tables().body()","table().body()",function(){return this.iterator("table",function(a){return a.nTBody},1)});u("tables().header()","table().header()",function(){return this.iterator("table",function(a){return a.nTHead},1)});u("tables().footer()",
106
- "table().footer()",function(){return this.iterator("table",function(a){return a.nTFoot},1)});u("tables().containers()","table().container()",function(){return this.iterator("table",function(a){return a.nTableWrapper},1)});o("draw()",function(a){return this.iterator("table",function(b){"page"===a?P(b):("string"===typeof a&&(a="full-hold"===a?!1:!0),T(b,!1===a))})});o("page()",function(a){return a===k?this.page.info().page:this.iterator("table",function(b){Ta(b,a)})});o("page.info()",function(){if(0===
107
- this.context.length)return k;var a=this.context[0],b=a._iDisplayStart,c=a.oFeatures.bPaginate?a._iDisplayLength:-1,d=a.fnRecordsDisplay(),e=-1===c;return{page:e?0:Math.floor(b/c),pages:e?1:Math.ceil(d/c),start:b,end:a.fnDisplayEnd(),length:c,recordsTotal:a.fnRecordsTotal(),recordsDisplay:d,serverSide:"ssp"===y(a)}});o("page.len()",function(a){return a===k?0!==this.context.length?this.context[0]._iDisplayLength:k:this.iterator("table",function(b){Ra(b,a)})});var Tb=function(a,b,c){if(c){var d=new s(a);
108
- d.one("draw",function(){c(d.ajax.json())})}if("ssp"==y(a))T(a,b);else{C(a,!0);var e=a.jqXHR;e&&4!==e.readyState&&e.abort();sa(a,[],function(c){oa(a);for(var c=ta(a,c),d=0,e=c.length;d<e;d++)O(a,c[d]);T(a,b);C(a,!1)})}};o("ajax.json()",function(){var a=this.context;if(0<a.length)return a[0].json});o("ajax.params()",function(){var a=this.context;if(0<a.length)return a[0].oAjaxData});o("ajax.reload()",function(a,b){return this.iterator("table",function(c){Tb(c,!1===b,a)})});o("ajax.url()",function(a){var b=
109
- this.context;if(a===k){if(0===b.length)return k;b=b[0];return b.ajax?h.isPlainObject(b.ajax)?b.ajax.url:b.ajax:b.sAjaxSource}return this.iterator("table",function(b){h.isPlainObject(b.ajax)?b.ajax.url=a:b.ajax=a})});o("ajax.url().load()",function(a,b){return this.iterator("table",function(c){Tb(c,!1===b,a)})});var ab=function(a,b,c,d,e){var f=[],g,j,i,m,l,n;i=typeof b;if(!b||"string"===i||"function"===i||b.length===k)b=[b];i=0;for(m=b.length;i<m;i++){j=b[i]&&b[i].split&&!b[i].match(/[\[\(:]/)?b[i].split(","):
110
- [b[i]];l=0;for(n=j.length;l<n;l++)(g=c("string"===typeof j[l]?h.trim(j[l]):j[l]))&&g.length&&(f=f.concat(g))}a=x.selector[a];if(a.length){i=0;for(m=a.length;i<m;i++)f=a[i](d,e,f)}return qa(f)},bb=function(a){a||(a={});a.filter&&a.search===k&&(a.search=a.filter);return h.extend({search:"none",order:"current",page:"all"},a)},cb=function(a){for(var b=0,c=a.length;b<c;b++)if(0<a[b].length)return a[0]=a[b],a[0].length=1,a.length=1,a.context=[a.context[b]],a;a.length=0;return a},Ba=function(a,b){var c,
111
- d,e,f=[],g=a.aiDisplay;e=a.aiDisplayMaster;var j=b.search;c=b.order;d=b.page;if("ssp"==y(a))return"removed"===j?[]:Y(0,e.length);if("current"==d){c=a._iDisplayStart;for(d=a.fnDisplayEnd();c<d;c++)f.push(g[c])}else if("current"==c||"applied"==c)if("none"==j)f=e.slice();else if("applied"==j)f=g.slice();else{if("removed"==j){var i={};c=0;for(d=g.length;c<d;c++)i[g[c]]=null;f=h.map(e,function(a){return!i.hasOwnProperty(a)?a:null})}}else if("index"==c||"original"==c){c=0;for(d=a.aoData.length;c<d;c++)"none"==
112
- j?f.push(c):(e=h.inArray(c,g),(-1===e&&"removed"==j||0<=e&&"applied"==j)&&f.push(c))}return f};o("rows()",function(a,b){a===k?a="":h.isPlainObject(a)&&(b=a,a="");var b=bb(b),c=this.iterator("table",function(c){var e=b,f;return ab("row",a,function(a){var b=Ob(a),i=c.aoData;if(b!==null&&!e)return[b];f||(f=Ba(c,e));if(b!==null&&h.inArray(b,f)!==-1)return[b];if(a===null||a===k||a==="")return f;if(typeof a==="function")return h.map(f,function(b){var c=i[b];return a(b,c._aData,c.nTr)?b:null});if(a.nodeName){var b=
113
- a._DT_RowIndex,m=a._DT_CellIndex;if(b!==k)return i[b]&&i[b].nTr===a?[b]:[];if(m)return i[m.row]&&i[m.row].nTr===a?[m.row]:[];b=h(a).closest("*[data-dt-row]");return b.length?[b.data("dt-row")]:[]}if(typeof a==="string"&&a.charAt(0)==="#"){b=c.aIds[a.replace(/^#/,"")];if(b!==k)return[b.idx]}b=Rb(ja(c.aoData,f,"nTr"));return h(b).filter(a).map(function(){return this._DT_RowIndex}).toArray()},c,e)},1);c.selector.rows=a;c.selector.opts=b;return c});o("rows().nodes()",function(){return this.iterator("row",
114
- function(a,b){return a.aoData[b].nTr||k},1)});o("rows().data()",function(){return this.iterator(!0,"rows",function(a,b){return ja(a.aoData,b,"_aData")},1)});u("rows().cache()","row().cache()",function(a){return this.iterator("row",function(b,c){var d=b.aoData[c];return"search"===a?d._aFilterData:d._aSortData},1)});u("rows().invalidate()","row().invalidate()",function(a){return this.iterator("row",function(b,c){da(b,c,a)})});u("rows().indexes()","row().index()",function(){return this.iterator("row",
115
- function(a,b){return b},1)});u("rows().ids()","row().id()",function(a){for(var b=[],c=this.context,d=0,e=c.length;d<e;d++)for(var f=0,g=this[d].length;f<g;f++){var h=c[d].rowIdFn(c[d].aoData[this[d][f]]._aData);b.push((!0===a?"#":"")+h)}return new s(c,b)});u("rows().remove()","row().remove()",function(){var a=this;this.iterator("row",function(b,c,d){var e=b.aoData,f=e[c],g,h,i,m,l;e.splice(c,1);g=0;for(h=e.length;g<h;g++)if(i=e[g],l=i.anCells,null!==i.nTr&&(i.nTr._DT_RowIndex=g),null!==l){i=0;for(m=
116
- l.length;i<m;i++)l[i]._DT_CellIndex.row=g}pa(b.aiDisplayMaster,c);pa(b.aiDisplay,c);pa(a[d],c,!1);0<b._iRecordsDisplay&&b._iRecordsDisplay--;Sa(b);c=b.rowIdFn(f._aData);c!==k&&delete b.aIds[c]});this.iterator("table",function(a){for(var c=0,d=a.aoData.length;c<d;c++)a.aoData[c].idx=c});return this});o("rows.add()",function(a){var b=this.iterator("table",function(b){var c,f,g,h=[];f=0;for(g=a.length;f<g;f++)c=a[f],c.nodeName&&"TR"===c.nodeName.toUpperCase()?h.push(na(b,c)[0]):h.push(O(b,c));return h},
117
- 1),c=this.rows(-1);c.pop();h.merge(c,b);return c});o("row()",function(a,b){return cb(this.rows(a,b))});o("row().data()",function(a){var b=this.context;if(a===k)return b.length&&this.length?b[0].aoData[this[0]]._aData:k;var c=b[0].aoData[this[0]];c._aData=a;h.isArray(a)&&c.nTr.id&&N(b[0].rowId)(a,c.nTr.id);da(b[0],this[0],"data");return this});o("row().node()",function(){var a=this.context;return a.length&&this.length?a[0].aoData[this[0]].nTr||null:null});o("row.add()",function(a){a instanceof h&&
118
- a.length&&(a=a[0]);var b=this.iterator("table",function(b){return a.nodeName&&"TR"===a.nodeName.toUpperCase()?na(b,a)[0]:O(b,a)});return this.row(b[0])});var db=function(a,b){var c=a.context;if(c.length&&(c=c[0].aoData[b!==k?b:a[0]])&&c._details)c._details.remove(),c._detailsShow=k,c._details=k},Ub=function(a,b){var c=a.context;if(c.length&&a.length){var d=c[0].aoData[a[0]];if(d._details){(d._detailsShow=b)?d._details.insertAfter(d.nTr):d._details.detach();var e=c[0],f=new s(e),g=e.aoData;f.off("draw.dt.DT_details column-visibility.dt.DT_details destroy.dt.DT_details");
119
- 0<D(g,"_details").length&&(f.on("draw.dt.DT_details",function(a,b){e===b&&f.rows({page:"current"}).eq(0).each(function(a){a=g[a];a._detailsShow&&a._details.insertAfter(a.nTr)})}),f.on("column-visibility.dt.DT_details",function(a,b){if(e===b)for(var c,d=V(b),f=0,h=g.length;f<h;f++)c=g[f],c._details&&c._details.children("td[colspan]").attr("colspan",d)}),f.on("destroy.dt.DT_details",function(a,b){if(e===b)for(var c=0,d=g.length;c<d;c++)g[c]._details&&db(f,c)}))}}};o("row().child()",function(a,b){var c=
120
- this.context;if(a===k)return c.length&&this.length?c[0].aoData[this[0]]._details:k;if(!0===a)this.child.show();else if(!1===a)db(this);else if(c.length&&this.length){var d=c[0],c=c[0].aoData[this[0]],e=[],f=function(a,b){if(h.isArray(a)||a instanceof h)for(var c=0,k=a.length;c<k;c++)f(a[c],b);else a.nodeName&&"tr"===a.nodeName.toLowerCase()?e.push(a):(c=h("<tr><td/></tr>").addClass(b),h("td",c).addClass(b).html(a)[0].colSpan=V(d),e.push(c[0]))};f(a,b);c._details&&c._details.detach();c._details=h(e);
121
- c._detailsShow&&c._details.insertAfter(c.nTr)}return this});o(["row().child.show()","row().child().show()"],function(){Ub(this,!0);return this});o(["row().child.hide()","row().child().hide()"],function(){Ub(this,!1);return this});o(["row().child.remove()","row().child().remove()"],function(){db(this);return this});o("row().child.isShown()",function(){var a=this.context;return a.length&&this.length?a[0].aoData[this[0]]._detailsShow||!1:!1});var bc=/^([^:]+):(name|visIdx|visible)$/,Vb=function(a,b,
122
- c,d,e){for(var c=[],d=0,f=e.length;d<f;d++)c.push(B(a,e[d],b));return c};o("columns()",function(a,b){a===k?a="":h.isPlainObject(a)&&(b=a,a="");var b=bb(b),c=this.iterator("table",function(c){var e=a,f=b,g=c.aoColumns,j=D(g,"sName"),i=D(g,"nTh");return ab("column",e,function(a){var b=Ob(a);if(a==="")return Y(g.length);if(b!==null)return[b>=0?b:g.length+b];if(typeof a==="function"){var e=Ba(c,f);return h.map(g,function(b,f){return a(f,Vb(c,f,0,0,e),i[f])?f:null})}var k=typeof a==="string"?a.match(bc):
123
- "";if(k)switch(k[2]){case "visIdx":case "visible":b=parseInt(k[1],10);if(b<0){var n=h.map(g,function(a,b){return a.bVisible?b:null});return[n[n.length+b]]}return[aa(c,b)];case "name":return h.map(j,function(a,b){return a===k[1]?b:null});default:return[]}if(a.nodeName&&a._DT_CellIndex)return[a._DT_CellIndex.column];b=h(i).filter(a).map(function(){return h.inArray(this,i)}).toArray();if(b.length||!a.nodeName)return b;b=h(a).closest("*[data-dt-column]");return b.length?[b.data("dt-column")]:[]},c,f)},
124
- 1);c.selector.cols=a;c.selector.opts=b;return c});u("columns().header()","column().header()",function(){return this.iterator("column",function(a,b){return a.aoColumns[b].nTh},1)});u("columns().footer()","column().footer()",function(){return this.iterator("column",function(a,b){return a.aoColumns[b].nTf},1)});u("columns().data()","column().data()",function(){return this.iterator("column-rows",Vb,1)});u("columns().dataSrc()","column().dataSrc()",function(){return this.iterator("column",function(a,b){return a.aoColumns[b].mData},
125
- 1)});u("columns().cache()","column().cache()",function(a){return this.iterator("column-rows",function(b,c,d,e,f){return ja(b.aoData,f,"search"===a?"_aFilterData":"_aSortData",c)},1)});u("columns().nodes()","column().nodes()",function(){return this.iterator("column-rows",function(a,b,c,d,e){return ja(a.aoData,e,"anCells",b)},1)});u("columns().visible()","column().visible()",function(a,b){var c=this.iterator("column",function(b,c){if(a===k)return b.aoColumns[c].bVisible;var f=b.aoColumns,g=f[c],j=b.aoData,
126
- i,m,l;if(a!==k&&g.bVisible!==a){if(a){var n=h.inArray(!0,D(f,"bVisible"),c+1);i=0;for(m=j.length;i<m;i++)l=j[i].nTr,f=j[i].anCells,l&&l.insertBefore(f[c],f[n]||null)}else h(D(b.aoData,"anCells",c)).detach();g.bVisible=a;fa(b,b.aoHeader);fa(b,b.aoFooter);b.aiDisplay.length||h(b.nTBody).find("td[colspan]").attr("colspan",V(b));xa(b)}});a!==k&&(this.iterator("column",function(c,e){r(c,null,"column-visibility",[c,e,a,b])}),(b===k||b)&&this.columns.adjust());return c});u("columns().indexes()","column().index()",
127
- function(a){return this.iterator("column",function(b,c){return"visible"===a?ba(b,c):c},1)});o("columns.adjust()",function(){return this.iterator("table",function(a){$(a)},1)});o("column.index()",function(a,b){if(0!==this.context.length){var c=this.context[0];if("fromVisible"===a||"toData"===a)return aa(c,b);if("fromData"===a||"toVisible"===a)return ba(c,b)}});o("column()",function(a,b){return cb(this.columns(a,b))});o("cells()",function(a,b,c){h.isPlainObject(a)&&(a.row===k?(c=a,a=null):(c=b,b=null));
128
- h.isPlainObject(b)&&(c=b,b=null);if(null===b||b===k)return this.iterator("table",function(b){var d=a,e=bb(c),f=b.aoData,g=Ba(b,e),j=Rb(ja(f,g,"anCells")),i=h([].concat.apply([],j)),l,m=b.aoColumns.length,n,o,u,s,r,v;return ab("cell",d,function(a){var c=typeof a==="function";if(a===null||a===k||c){n=[];o=0;for(u=g.length;o<u;o++){l=g[o];for(s=0;s<m;s++){r={row:l,column:s};if(c){v=f[l];a(r,B(b,l,s),v.anCells?v.anCells[s]:null)&&n.push(r)}else n.push(r)}}return n}if(h.isPlainObject(a))return a.column!==
129
- k&&a.row!==k&&h.inArray(a.row,g)!==-1?[a]:[];c=i.filter(a).map(function(a,b){return{row:b._DT_CellIndex.row,column:b._DT_CellIndex.column}}).toArray();if(c.length||!a.nodeName)return c;v=h(a).closest("*[data-dt-row]");return v.length?[{row:v.data("dt-row"),column:v.data("dt-column")}]:[]},b,e)});var d=this.columns(b),e=this.rows(a),f,g,j,i,m;this.iterator("table",function(a,b){f=[];g=0;for(j=e[b].length;g<j;g++){i=0;for(m=d[b].length;i<m;i++)f.push({row:e[b][g],column:d[b][i]})}},1);var l=this.cells(f,
130
- c);h.extend(l.selector,{cols:b,rows:a,opts:c});return l});u("cells().nodes()","cell().node()",function(){return this.iterator("cell",function(a,b,c){return(a=a.aoData[b])&&a.anCells?a.anCells[c]:k},1)});o("cells().data()",function(){return this.iterator("cell",function(a,b,c){return B(a,b,c)},1)});u("cells().cache()","cell().cache()",function(a){a="search"===a?"_aFilterData":"_aSortData";return this.iterator("cell",function(b,c,d){return b.aoData[c][a][d]},1)});u("cells().render()","cell().render()",
131
- function(a){return this.iterator("cell",function(b,c,d){return B(b,c,d,a)},1)});u("cells().indexes()","cell().index()",function(){return this.iterator("cell",function(a,b,c){return{row:b,column:c,columnVisible:ba(a,c)}},1)});u("cells().invalidate()","cell().invalidate()",function(a){return this.iterator("cell",function(b,c,d){da(b,c,a,d)})});o("cell()",function(a,b,c){return cb(this.cells(a,b,c))});o("cell().data()",function(a){var b=this.context,c=this[0];if(a===k)return b.length&&c.length?B(b[0],
132
- c[0].row,c[0].column):k;kb(b[0],c[0].row,c[0].column,a);da(b[0],c[0].row,"data",c[0].column);return this});o("order()",function(a,b){var c=this.context;if(a===k)return 0!==c.length?c[0].aaSorting:k;"number"===typeof a?a=[[a,b]]:a.length&&!h.isArray(a[0])&&(a=Array.prototype.slice.call(arguments));return this.iterator("table",function(b){b.aaSorting=a.slice()})});o("order.listener()",function(a,b,c){return this.iterator("table",function(d){Ma(d,a,b,c)})});o("order.fixed()",function(a){if(!a){var b=
133
- this.context,b=b.length?b[0].aaSortingFixed:k;return h.isArray(b)?{pre:b}:b}return this.iterator("table",function(b){b.aaSortingFixed=h.extend(!0,{},a)})});o(["columns().order()","column().order()"],function(a){var b=this;return this.iterator("table",function(c,d){var e=[];h.each(b[d],function(b,c){e.push([c,a])});c.aaSorting=e})});o("search()",function(a,b,c,d){var e=this.context;return a===k?0!==e.length?e[0].oPreviousSearch.sSearch:k:this.iterator("table",function(e){e.oFeatures.bFilter&&ga(e,
134
- h.extend({},e.oPreviousSearch,{sSearch:a+"",bRegex:null===b?!1:b,bSmart:null===c?!0:c,bCaseInsensitive:null===d?!0:d}),1)})});u("columns().search()","column().search()",function(a,b,c,d){return this.iterator("column",function(e,f){var g=e.aoPreSearchCols;if(a===k)return g[f].sSearch;e.oFeatures.bFilter&&(h.extend(g[f],{sSearch:a+"",bRegex:null===b?!1:b,bSmart:null===c?!0:c,bCaseInsensitive:null===d?!0:d}),ga(e,e.oPreviousSearch,1))})});o("state()",function(){return this.context.length?this.context[0].oSavedState:
135
- null});o("state.clear()",function(){return this.iterator("table",function(a){a.fnStateSaveCallback.call(a.oInstance,a,{})})});o("state.loaded()",function(){return this.context.length?this.context[0].oLoadedState:null});o("state.save()",function(){return this.iterator("table",function(a){xa(a)})});n.versionCheck=n.fnVersionCheck=function(a){for(var b=n.version.split("."),a=a.split("."),c,d,e=0,f=a.length;e<f;e++)if(c=parseInt(b[e],10)||0,d=parseInt(a[e],10)||0,c!==d)return c>d;return!0};n.isDataTable=
136
- n.fnIsDataTable=function(a){var b=h(a).get(0),c=!1;if(a instanceof n.Api)return!0;h.each(n.settings,function(a,e){var f=e.nScrollHead?h("table",e.nScrollHead)[0]:null,g=e.nScrollFoot?h("table",e.nScrollFoot)[0]:null;if(e.nTable===b||f===b||g===b)c=!0});return c};n.tables=n.fnTables=function(a){var b=!1;h.isPlainObject(a)&&(b=a.api,a=a.visible);var c=h.map(n.settings,function(b){if(!a||a&&h(b.nTable).is(":visible"))return b.nTable});return b?new s(c):c};n.camelToHungarian=J;o("$()",function(a,b){var c=
137
- this.rows(b).nodes(),c=h(c);return h([].concat(c.filter(a).toArray(),c.find(a).toArray()))});h.each(["on","one","off"],function(a,b){o(b+"()",function(){var a=Array.prototype.slice.call(arguments);a[0]=h.map(a[0].split(/\s/),function(a){return!a.match(/\.dt\b/)?a+".dt":a}).join(" ");var d=h(this.tables().nodes());d[b].apply(d,a);return this})});o("clear()",function(){return this.iterator("table",function(a){oa(a)})});o("settings()",function(){return new s(this.context,this.context)});o("init()",function(){var a=
138
- this.context;return a.length?a[0].oInit:null});o("data()",function(){return this.iterator("table",function(a){return D(a.aoData,"_aData")}).flatten()});o("destroy()",function(a){a=a||!1;return this.iterator("table",function(b){var c=b.nTableWrapper.parentNode,d=b.oClasses,e=b.nTable,f=b.nTBody,g=b.nTHead,j=b.nTFoot,i=h(e),f=h(f),k=h(b.nTableWrapper),l=h.map(b.aoData,function(a){return a.nTr}),o;b.bDestroying=!0;r(b,"aoDestroyCallback","destroy",[b]);a||(new s(b)).columns().visible(!0);k.off(".DT").find(":not(tbody *)").off(".DT");
139
- h(E).off(".DT-"+b.sInstance);e!=g.parentNode&&(i.children("thead").detach(),i.append(g));j&&e!=j.parentNode&&(i.children("tfoot").detach(),i.append(j));b.aaSorting=[];b.aaSortingFixed=[];wa(b);h(l).removeClass(b.asStripeClasses.join(" "));h("th, td",g).removeClass(d.sSortable+" "+d.sSortableAsc+" "+d.sSortableDesc+" "+d.sSortableNone);f.children().detach();f.append(l);g=a?"remove":"detach";i[g]();k[g]();!a&&c&&(c.insertBefore(e,b.nTableReinsertBefore),i.css("width",b.sDestroyWidth).removeClass(d.sTable),
140
- (o=b.asDestroyStripes.length)&&f.children().each(function(a){h(this).addClass(b.asDestroyStripes[a%o])}));c=h.inArray(b,n.settings);-1!==c&&n.settings.splice(c,1)})});h.each(["column","row","cell"],function(a,b){o(b+"s().every()",function(a){var d=this.selector.opts,e=this;return this.iterator(b,function(f,g,h,i,m){a.call(e[b](g,"cell"===b?h:d,"cell"===b?d:k),g,h,i,m)})})});o("i18n()",function(a,b,c){var d=this.context[0],a=S(a)(d.oLanguage);a===k&&(a=b);c!==k&&h.isPlainObject(a)&&(a=a[c]!==k?a[c]:
141
- a._);return a.replace("%d",c)});n.version="1.10.19";n.settings=[];n.models={};n.models.oSearch={bCaseInsensitive:!0,sSearch:"",bRegex:!1,bSmart:!0};n.models.oRow={nTr:null,anCells:null,_aData:[],_aSortData:null,_aFilterData:null,_sFilterRow:null,_sRowStripe:"",src:null,idx:-1};n.models.oColumn={idx:null,aDataSort:null,asSorting:null,bSearchable:null,bSortable:null,bVisible:null,_sManualType:null,_bAttrSrc:!1,fnCreatedCell:null,fnGetData:null,fnSetData:null,mData:null,mRender:null,nTh:null,nTf:null,
142
- sClass:null,sContentPadding:null,sDefaultContent:null,sName:null,sSortDataType:"std",sSortingClass:null,sSortingClassJUI:null,sTitle:null,sType:null,sWidth:null,sWidthOrig:null};n.defaults={aaData:null,aaSorting:[[0,"asc"]],aaSortingFixed:[],ajax:null,aLengthMenu:[10,25,50,100],aoColumns:null,aoColumnDefs:null,aoSearchCols:[],asStripeClasses:null,bAutoWidth:!0,bDeferRender:!1,bDestroy:!1,bFilter:!0,bInfo:!0,bLengthChange:!0,bPaginate:!0,bProcessing:!1,bRetrieve:!1,bScrollCollapse:!1,bServerSide:!1,
143
- bSort:!0,bSortMulti:!0,bSortCellsTop:!1,bSortClasses:!0,bStateSave:!1,fnCreatedRow:null,fnDrawCallback:null,fnFooterCallback:null,fnFormatNumber:function(a){return a.toString().replace(/\B(?=(\d{3})+(?!\d))/g,this.oLanguage.sThousands)},fnHeaderCallback:null,fnInfoCallback:null,fnInitComplete:null,fnPreDrawCallback:null,fnRowCallback:null,fnServerData:null,fnServerParams:null,fnStateLoadCallback:function(a){try{return JSON.parse((-1===a.iStateDuration?sessionStorage:localStorage).getItem("DataTables_"+
144
- a.sInstance+"_"+location.pathname))}catch(b){}},fnStateLoadParams:null,fnStateLoaded:null,fnStateSaveCallback:function(a,b){try{(-1===a.iStateDuration?sessionStorage:localStorage).setItem("DataTables_"+a.sInstance+"_"+location.pathname,JSON.stringify(b))}catch(c){}},fnStateSaveParams:null,iStateDuration:7200,iDeferLoading:null,iDisplayLength:10,iDisplayStart:0,iTabIndex:0,oClasses:{},oLanguage:{oAria:{sSortAscending:": activate to sort column ascending",sSortDescending:": activate to sort column descending"},
145
- oPaginate:{sFirst:"First",sLast:"Last",sNext:"Next",sPrevious:"Previous"},sEmptyTable:"No data available in table",sInfo:"Showing _START_ to _END_ of _TOTAL_ entries",sInfoEmpty:"Showing 0 to 0 of 0 entries",sInfoFiltered:"(filtered from _MAX_ total entries)",sInfoPostFix:"",sDecimal:"",sThousands:",",sLengthMenu:"Show _MENU_ entries",sLoadingRecords:"Loading...",sProcessing:"Processing...",sSearch:"Search:",sSearchPlaceholder:"",sUrl:"",sZeroRecords:"No matching records found"},oSearch:h.extend({},
146
- n.models.oSearch),sAjaxDataProp:"data",sAjaxSource:null,sDom:"lfrtip",searchDelay:null,sPaginationType:"simple_numbers",sScrollX:"",sScrollXInner:"",sScrollY:"",sServerMethod:"GET",renderer:null,rowId:"DT_RowId"};Z(n.defaults);n.defaults.column={aDataSort:null,iDataSort:-1,asSorting:["asc","desc"],bSearchable:!0,bSortable:!0,bVisible:!0,fnCreatedCell:null,mData:null,mRender:null,sCellType:"td",sClass:"",sContentPadding:"",sDefaultContent:null,sName:"",sSortDataType:"std",sTitle:null,sType:null,sWidth:null};
147
- Z(n.defaults.column);n.models.oSettings={oFeatures:{bAutoWidth:null,bDeferRender:null,bFilter:null,bInfo:null,bLengthChange:null,bPaginate:null,bProcessing:null,bServerSide:null,bSort:null,bSortMulti:null,bSortClasses:null,bStateSave:null},oScroll:{bCollapse:null,iBarWidth:0,sX:null,sXInner:null,sY:null},oLanguage:{fnInfoCallback:null},oBrowser:{bScrollOversize:!1,bScrollbarLeft:!1,bBounding:!1,barWidth:0},ajax:null,aanFeatures:[],aoData:[],aiDisplay:[],aiDisplayMaster:[],aIds:{},aoColumns:[],aoHeader:[],
148
- aoFooter:[],oPreviousSearch:{},aoPreSearchCols:[],aaSorting:null,aaSortingFixed:[],asStripeClasses:null,asDestroyStripes:[],sDestroyWidth:0,aoRowCallback:[],aoHeaderCallback:[],aoFooterCallback:[],aoDrawCallback:[],aoRowCreatedCallback:[],aoPreDrawCallback:[],aoInitComplete:[],aoStateSaveParams:[],aoStateLoadParams:[],aoStateLoaded:[],sTableId:"",nTable:null,nTHead:null,nTFoot:null,nTBody:null,nTableWrapper:null,bDeferLoading:!1,bInitialised:!1,aoOpenRows:[],sDom:null,searchDelay:null,sPaginationType:"two_button",
149
- iStateDuration:0,aoStateSave:[],aoStateLoad:[],oSavedState:null,oLoadedState:null,sAjaxSource:null,sAjaxDataProp:null,bAjaxDataGet:!0,jqXHR:null,json:k,oAjaxData:k,fnServerData:null,aoServerParams:[],sServerMethod:null,fnFormatNumber:null,aLengthMenu:null,iDraw:0,bDrawing:!1,iDrawError:-1,_iDisplayLength:10,_iDisplayStart:0,_iRecordsTotal:0,_iRecordsDisplay:0,oClasses:{},bFiltered:!1,bSorted:!1,bSortCellsTop:null,oInit:null,aoDestroyCallback:[],fnRecordsTotal:function(){return"ssp"==y(this)?1*this._iRecordsTotal:
150
- this.aiDisplayMaster.length},fnRecordsDisplay:function(){return"ssp"==y(this)?1*this._iRecordsDisplay:this.aiDisplay.length},fnDisplayEnd:function(){var a=this._iDisplayLength,b=this._iDisplayStart,c=b+a,d=this.aiDisplay.length,e=this.oFeatures,f=e.bPaginate;return e.bServerSide?!1===f||-1===a?b+d:Math.min(b+a,this._iRecordsDisplay):!f||c>d||-1===a?d:c},oInstance:null,sInstance:null,iTabIndex:0,nScrollHead:null,nScrollFoot:null,aLastSort:[],oPlugins:{},rowIdFn:null,rowId:null};n.ext=x={buttons:{},
151
- classes:{},builder:"-source-",errMode:"alert",feature:[],search:[],selector:{cell:[],column:[],row:[]},internal:{},legacy:{ajax:null},pager:{},renderer:{pageButton:{},header:{}},order:{},type:{detect:[],search:{},order:{}},_unique:0,fnVersionCheck:n.fnVersionCheck,iApiIndex:0,oJUIClasses:{},sVersion:n.version};h.extend(x,{afnFiltering:x.search,aTypes:x.type.detect,ofnSearch:x.type.search,oSort:x.type.order,afnSortData:x.order,aoFeatures:x.feature,oApi:x.internal,oStdClasses:x.classes,oPagination:x.pager});
152
- h.extend(n.ext.classes,{sTable:"dataTable",sNoFooter:"no-footer",sPageButton:"paginate_button",sPageButtonActive:"current",sPageButtonDisabled:"disabled",sStripeOdd:"odd",sStripeEven:"even",sRowEmpty:"dataTables_empty",sWrapper:"dataTables_wrapper",sFilter:"dataTables_filter",sInfo:"dataTables_info",sPaging:"dataTables_paginate paging_",sLength:"dataTables_length",sProcessing:"dataTables_processing",sSortAsc:"sorting_asc",sSortDesc:"sorting_desc",sSortable:"sorting",sSortableAsc:"sorting_asc_disabled",
153
- sSortableDesc:"sorting_desc_disabled",sSortableNone:"sorting_disabled",sSortColumn:"sorting_",sFilterInput:"",sLengthSelect:"",sScrollWrapper:"dataTables_scroll",sScrollHead:"dataTables_scrollHead",sScrollHeadInner:"dataTables_scrollHeadInner",sScrollBody:"dataTables_scrollBody",sScrollFoot:"dataTables_scrollFoot",sScrollFootInner:"dataTables_scrollFootInner",sHeaderTH:"",sFooterTH:"",sSortJUIAsc:"",sSortJUIDesc:"",sSortJUI:"",sSortJUIAscAllowed:"",sSortJUIDescAllowed:"",sSortJUIWrapper:"",sSortIcon:"",
154
- sJUIHeader:"",sJUIFooter:""});var Lb=n.ext.pager;h.extend(Lb,{simple:function(){return["previous","next"]},full:function(){return["first","previous","next","last"]},numbers:function(a,b){return[ia(a,b)]},simple_numbers:function(a,b){return["previous",ia(a,b),"next"]},full_numbers:function(a,b){return["first","previous",ia(a,b),"next","last"]},first_last_numbers:function(a,b){return["first",ia(a,b),"last"]},_numbers:ia,numbers_length:7});h.extend(!0,n.ext.renderer,{pageButton:{_:function(a,b,c,d,e,
155
- f){var g=a.oClasses,j=a.oLanguage.oPaginate,i=a.oLanguage.oAria.paginate||{},m,l,n=0,o=function(b,d){var k,s,u,r,v=function(b){Ta(a,b.data.action,true)};k=0;for(s=d.length;k<s;k++){r=d[k];if(h.isArray(r)){u=h("<"+(r.DT_el||"div")+"/>").appendTo(b);o(u,r)}else{m=null;l="";switch(r){case "ellipsis":b.append('<span class="ellipsis">&#x2026;</span>');break;case "first":m=j.sFirst;l=r+(e>0?"":" "+g.sPageButtonDisabled);break;case "previous":m=j.sPrevious;l=r+(e>0?"":" "+g.sPageButtonDisabled);break;case "next":m=
156
- j.sNext;l=r+(e<f-1?"":" "+g.sPageButtonDisabled);break;case "last":m=j.sLast;l=r+(e<f-1?"":" "+g.sPageButtonDisabled);break;default:m=r+1;l=e===r?g.sPageButtonActive:""}if(m!==null){u=h("<a>",{"class":g.sPageButton+" "+l,"aria-controls":a.sTableId,"aria-label":i[r],"data-dt-idx":n,tabindex:a.iTabIndex,id:c===0&&typeof r==="string"?a.sTableId+"_"+r:null}).html(m).appendTo(b);Wa(u,{action:r},v);n++}}}},s;try{s=h(b).find(H.activeElement).data("dt-idx")}catch(u){}o(h(b).empty(),d);s!==k&&h(b).find("[data-dt-idx="+
157
- s+"]").focus()}}});h.extend(n.ext.type.detect,[function(a,b){var c=b.oLanguage.sDecimal;return $a(a,c)?"num"+c:null},function(a){if(a&&!(a instanceof Date)&&!Zb.test(a))return null;var b=Date.parse(a);return null!==b&&!isNaN(b)||M(a)?"date":null},function(a,b){var c=b.oLanguage.sDecimal;return $a(a,c,!0)?"num-fmt"+c:null},function(a,b){var c=b.oLanguage.sDecimal;return Qb(a,c)?"html-num"+c:null},function(a,b){var c=b.oLanguage.sDecimal;return Qb(a,c,!0)?"html-num-fmt"+c:null},function(a){return M(a)||
158
- "string"===typeof a&&-1!==a.indexOf("<")?"html":null}]);h.extend(n.ext.type.search,{html:function(a){return M(a)?a:"string"===typeof a?a.replace(Nb," ").replace(Aa,""):""},string:function(a){return M(a)?a:"string"===typeof a?a.replace(Nb," "):a}});var za=function(a,b,c,d){if(0!==a&&(!a||"-"===a))return-Infinity;b&&(a=Pb(a,b));a.replace&&(c&&(a=a.replace(c,"")),d&&(a=a.replace(d,"")));return 1*a};h.extend(x.type.order,{"date-pre":function(a){a=Date.parse(a);return isNaN(a)?-Infinity:a},"html-pre":function(a){return M(a)?
159
- "":a.replace?a.replace(/<.*?>/g,"").toLowerCase():a+""},"string-pre":function(a){return M(a)?"":"string"===typeof a?a.toLowerCase():!a.toString?"":a.toString()},"string-asc":function(a,b){return a<b?-1:a>b?1:0},"string-desc":function(a,b){return a<b?1:a>b?-1:0}});Da("");h.extend(!0,n.ext.renderer,{header:{_:function(a,b,c,d){h(a.nTable).on("order.dt.DT",function(e,f,g,h){if(a===f){e=c.idx;b.removeClass(c.sSortingClass+" "+d.sSortAsc+" "+d.sSortDesc).addClass(h[e]=="asc"?d.sSortAsc:h[e]=="desc"?d.sSortDesc:
160
- c.sSortingClass)}})},jqueryui:function(a,b,c,d){h("<div/>").addClass(d.sSortJUIWrapper).append(b.contents()).append(h("<span/>").addClass(d.sSortIcon+" "+c.sSortingClassJUI)).appendTo(b);h(a.nTable).on("order.dt.DT",function(e,f,g,h){if(a===f){e=c.idx;b.removeClass(d.sSortAsc+" "+d.sSortDesc).addClass(h[e]=="asc"?d.sSortAsc:h[e]=="desc"?d.sSortDesc:c.sSortingClass);b.find("span."+d.sSortIcon).removeClass(d.sSortJUIAsc+" "+d.sSortJUIDesc+" "+d.sSortJUI+" "+d.sSortJUIAscAllowed+" "+d.sSortJUIDescAllowed).addClass(h[e]==
161
- "asc"?d.sSortJUIAsc:h[e]=="desc"?d.sSortJUIDesc:c.sSortingClassJUI)}})}}});var eb=function(a){return"string"===typeof a?a.replace(/</g,"&lt;").replace(/>/g,"&gt;").replace(/"/g,"&quot;"):a};n.render={number:function(a,b,c,d,e){return{display:function(f){if("number"!==typeof f&&"string"!==typeof f)return f;var g=0>f?"-":"",h=parseFloat(f);if(isNaN(h))return eb(f);h=h.toFixed(c);f=Math.abs(h);h=parseInt(f,10);f=c?b+(f-h).toFixed(c).substring(2):"";return g+(d||"")+h.toString().replace(/\B(?=(\d{3})+(?!\d))/g,
162
- a)+f+(e||"")}}},text:function(){return{display:eb,filter:eb}}};h.extend(n.ext.internal,{_fnExternApiFunc:Mb,_fnBuildAjax:sa,_fnAjaxUpdate:mb,_fnAjaxParameters:vb,_fnAjaxUpdateDraw:wb,_fnAjaxDataSrc:ta,_fnAddColumn:Ea,_fnColumnOptions:ka,_fnAdjustColumnSizing:$,_fnVisibleToColumnIndex:aa,_fnColumnIndexToVisible:ba,_fnVisbleColumns:V,_fnGetColumns:ma,_fnColumnTypes:Ga,_fnApplyColumnDefs:jb,_fnHungarianMap:Z,_fnCamelToHungarian:J,_fnLanguageCompat:Ca,_fnBrowserDetect:hb,_fnAddData:O,_fnAddTr:na,_fnNodeToDataIndex:function(a,
163
- b){return b._DT_RowIndex!==k?b._DT_RowIndex:null},_fnNodeToColumnIndex:function(a,b,c){return h.inArray(c,a.aoData[b].anCells)},_fnGetCellData:B,_fnSetCellData:kb,_fnSplitObjNotation:Ja,_fnGetObjectDataFn:S,_fnSetObjectDataFn:N,_fnGetDataMaster:Ka,_fnClearTable:oa,_fnDeleteIndex:pa,_fnInvalidate:da,_fnGetRowElements:Ia,_fnCreateTr:Ha,_fnBuildHead:lb,_fnDrawHead:fa,_fnDraw:P,_fnReDraw:T,_fnAddOptionsHtml:ob,_fnDetectHeader:ea,_fnGetUniqueThs:ra,_fnFeatureHtmlFilter:qb,_fnFilterComplete:ga,_fnFilterCustom:zb,
164
- _fnFilterColumn:yb,_fnFilter:xb,_fnFilterCreateSearch:Pa,_fnEscapeRegex:Qa,_fnFilterData:Ab,_fnFeatureHtmlInfo:tb,_fnUpdateInfo:Db,_fnInfoMacros:Eb,_fnInitialise:ha,_fnInitComplete:ua,_fnLengthChange:Ra,_fnFeatureHtmlLength:pb,_fnFeatureHtmlPaginate:ub,_fnPageChange:Ta,_fnFeatureHtmlProcessing:rb,_fnProcessingDisplay:C,_fnFeatureHtmlTable:sb,_fnScrollDraw:la,_fnApplyToChildren:I,_fnCalculateColumnWidths:Fa,_fnThrottle:Oa,_fnConvertToWidth:Fb,_fnGetWidestNode:Gb,_fnGetMaxLenString:Hb,_fnStringToCss:v,
165
- _fnSortFlatten:X,_fnSort:nb,_fnSortAria:Jb,_fnSortListener:Va,_fnSortAttachListener:Ma,_fnSortingClasses:wa,_fnSortData:Ib,_fnSaveState:xa,_fnLoadState:Kb,_fnSettingsFromNode:ya,_fnLog:K,_fnMap:F,_fnBindAction:Wa,_fnCallbackReg:z,_fnCallbackFire:r,_fnLengthOverflow:Sa,_fnRenderer:Na,_fnDataSource:y,_fnRowAttributes:La,_fnExtend:Xa,_fnCalculateEnd:function(){}});h.fn.dataTable=n;n.$=h;h.fn.dataTableSettings=n.settings;h.fn.dataTableExt=n.ext;h.fn.DataTable=function(a){return h(this).dataTable(a).api()};
166
- h.each(n,function(a,b){h.fn.DataTable[a]=b});return h.fn.dataTable});
167
- /**
168
- * add datatable frontend.
169
- */
170
- jQuery(document).ready( function () {jQuery('#classiDocs_dataTable').DataTable( {"autoWidth": false,"scrollX": true});} );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
assets/jquery.repeater.min.js CHANGED
@@ -1,5 +1,5 @@
1
- // jquery.repeater version 1.2.1
2
- // https://github.com/DubFriend/jquery.repeater
3
- // (MIT) 09-10-2016
4
- // Brian Detering <BDeterin@gmail.com> (http://www.briandetering.net/)
5
  !function(a){"use strict";var b=function(a){return a},c=function(b){return a.isArray(b)},d=function(a){return!c(a)&&a instanceof Object},e=function(b,c){return a.inArray(c,b)},f=function(a,b){return e(a,b)!==-1},g=function(a,b){for(var c in a)a.hasOwnProperty(c)&&b(a[c],c,a)},h=function(a){return a[a.length-1]},i=function(a){return Array.prototype.slice.call(a)},j=function(){var a={};return g(i(arguments),function(b){g(b,function(b,c){a[c]=b})}),a},k=function(a,b){var c=[];return g(a,function(a,d,e){c.push(b(a,d,e))}),c},l=function(a,b,c){var d={};return g(a,function(a,e,f){e=c?c(e,a):e,d[e]=b(a,e,f)}),d},m=function(a,b,d){return c(a)?k(a,b):l(a,b,d)},n=function(a,b){return m(a,function(a){return a[b]})},o=function(a,b){var d;return c(a)?(d=[],g(a,function(a,c,e){b(a,c,e)&&d.push(a)})):(d={},g(a,function(a,c,e){b(a,c,e)&&(d[c]=a)})),d},p=function(a,b,c){return m(a,function(a,d){return a[b].apply(a,c||[])})},q=function(a){a=a||{};var b={};return a.publish=function(a,c){g(b[a],function(a){a(c)})},a.subscribe=function(a,c){b[a]=b[a]||[],b[a].push(c)},a.unsubscribe=function(a){g(b,function(b){var c=e(b,a);c!==-1&&b.splice(c,1)})},a};!function(a){var b=function(a,b){var c=q(),d=a.$;return c.getType=function(){throw'implement me (return type. "text", "radio", etc.)'},c.$=function(a){return a?d.find(a):d},c.disable=function(){c.$().prop("disabled",!0),c.publish("isEnabled",!1)},c.enable=function(){c.$().prop("disabled",!1),c.publish("isEnabled",!0)},b.equalTo=function(a,b){return a===b},b.publishChange=function(){var a;return function(d,e){var f=c.get();b.equalTo(f,a)||c.publish("change",{e:d,domElement:e}),a=f}}(),c},i=function(a,c){var d=b(a,c);return d.get=function(){return d.$().val()},d.set=function(a){d.$().val(a)},d.clear=function(){d.set("")},c.buildSetter=function(a){return function(b){a.call(d,b)}},d},j=function(a,b){a=c(a)?a:[a],b=c(b)?b:[b];var d=!0;return a.length!==b.length?d=!1:g(a,function(a){f(b,a)||(d=!1)}),d},k=function(a){var b={},c=i(a,b);return c.getType=function(){return"button"},c.$().on("change",function(a){b.publishChange(a,this)}),c},l=function(b){var d={},e=i(b,d);return e.getType=function(){return"checkbox"},e.get=function(){var b=[];return e.$().filter(":checked").each(function(){b.push(a(this).val())}),b},e.set=function(b){b=c(b)?b:[b],e.$().each(function(){a(this).prop("checked",!1)}),g(b,function(a){e.$().filter('[value="'+a+'"]').prop("checked",!0)})},d.equalTo=j,e.$().change(function(a){d.publishChange(a,this)}),e},m=function(a){var b={},c=x(a,b);return c.getType=function(){return"email"},c},n=function(c){var d={},e=b(c,d);return e.getType=function(){return"file"},e.get=function(){return h(e.$().val().split("\\"))},e.clear=function(){this.$().each(function(){a(this).wrap("<form>").closest("form").get(0).reset(),a(this).unwrap()})},e.$().change(function(a){d.publishChange(a,this)}),e},o=function(a){var b={},c=i(a,b);return c.getType=function(){return"hidden"},c.$().change(function(a){b.publishChange(a,this)}),c},r=function(c){var d={},e=b(c,d);return e.getType=function(){return"file[multiple]"},e.get=function(){var a,b=e.$().get(0).files||[],c=[];for(a=0;a<(b.length||0);a+=1)c.push(b[a].name);return c},e.clear=function(){this.$().each(function(){a(this).wrap("<form>").closest("form").get(0).reset(),a(this).unwrap()})},e.$().change(function(a){d.publishChange(a,this)}),e},s=function(a){var b={},d=i(a,b);return d.getType=function(){return"select[multiple]"},d.get=function(){return d.$().val()||[]},d.set=function(a){d.$().val(""===a?[]:c(a)?a:[a])},b.equalTo=j,d.$().change(function(a){b.publishChange(a,this)}),d},t=function(a){var b={},c=x(a,b);return c.getType=function(){return"password"},c},u=function(b){var c={},d=i(b,c);return d.getType=function(){return"radio"},d.get=function(){return d.$().filter(":checked").val()||null},d.set=function(b){b?d.$().filter('[value="'+b+'"]').prop("checked",!0):d.$().each(function(){a(this).prop("checked",!1)})},d.$().change(function(a){c.publishChange(a,this)}),d},v=function(a){var b={},c=i(a,b);return c.getType=function(){return"range"},c.$().change(function(a){b.publishChange(a,this)}),c},w=function(a){var b={},c=i(a,b);return c.getType=function(){return"select"},c.$().change(function(a){b.publishChange(a,this)}),c},x=function(a){var b={},c=i(a,b);return c.getType=function(){return"text"},c.$().on("change keyup keydown",function(a){b.publishChange(a,this)}),c},y=function(a){var b={},c=i(a,b);return c.getType=function(){return"textarea"},c.$().on("change keyup keydown",function(a){b.publishChange(a,this)}),c},z=function(a){var b={},c=x(a,b);return c.getType=function(){return"url"},c},A=function(b){var c={},f=b.$,h=b.constructorOverride||{button:k,text:x,url:z,email:m,password:t,range:v,textarea:y,select:w,"select[multiple]":s,radio:u,checkbox:l,file:n,"file[multiple]":r,hidden:o},i=function(b,e){var g=d(e)?e:f.find(e);g.each(function(){var d=a(this).attr("name");c[d]=h[b]({$:a(this)})})},j=function(b,i){var j=[],k=d(i)?i:f.find(i);d(i)?c[k.attr("name")]=h[b]({$:k}):(k.each(function(){e(j,a(this).attr("name"))===-1&&j.push(a(this).attr("name"))}),g(j,function(a){c[a]=h[b]({$:f.find('input[name="'+a+'"]')})}))};return f.is("input, select, textarea")?f.is('input[type="button"], button, input[type="submit"]')?i("button",f):f.is("textarea")?i("textarea",f):f.is('input[type="text"]')||f.is("input")&&!f.attr("type")?i("text",f):f.is('input[type="password"]')?i("password",f):f.is('input[type="email"]')?i("email",f):f.is('input[type="url"]')?i("url",f):f.is('input[type="range"]')?i("range",f):f.is("select")?f.is("[multiple]")?i("select[multiple]",f):i("select",f):f.is('input[type="file"]')?f.is("[multiple]")?i("file[multiple]",f):i("file",f):f.is('input[type="hidden"]')?i("hidden",f):f.is('input[type="radio"]')?j("radio",f):f.is('input[type="checkbox"]')?j("checkbox",f):i("text",f):(i("button",'input[type="button"], button, input[type="submit"]'),i("text",'input[type="text"]'),i("password",'input[type="password"]'),i("email",'input[type="email"]'),i("url",'input[type="url"]'),i("range",'input[type="range"]'),i("textarea","textarea"),i("select","select:not([multiple])"),i("select[multiple]","select[multiple]"),i("file",'input[type="file"]:not([multiple])'),i("file[multiple]",'input[type="file"][multiple]'),i("hidden",'input[type="hidden"]'),j("radio",'input[type="radio"]'),j("checkbox",'input[type="checkbox"]')),c};a.fn.inputVal=function(b){var c=a(this),d=A({$:c});return c.is("input, textarea, select")?"undefined"==typeof b?d[c.attr("name")].get():(d[c.attr("name")].set(b),c):"undefined"==typeof b?p(d,"get"):(g(b,function(a,b){d[b].set(a)}),c)},a.fn.inputOnChange=function(b){var c=a(this),d=A({$:c});return g(d,function(a){a.subscribe("change",function(a){b.call(a.domElement,a.e)})}),c},a.fn.inputDisable=function(){var b=a(this);return p(A({$:b}),"disable"),b},a.fn.inputEnable=function(){var b=a(this);return p(A({$:b}),"enable"),b},a.fn.inputClear=function(){var b=a(this);return p(A({$:b}),"clear"),b}}(jQuery),a.fn.repeaterVal=function(){var b=function(a){var b=[];return g(a,function(a,c){var d=[];"undefined"!==c&&(d.push(c.match(/^[^\[]*/)[0]),d=d.concat(m(c.match(/\[[^\]]*\]/g),function(a){return a.replace(/[\[\]]/g,"")})),b.push({val:a,key:d}))}),b},c=function(a){if(1===a.length&&(0===a[0].key.length||1===a[0].key.length&&!a[0].key[0]))return a[0].val;g(a,function(a){a.head=a.key.shift()});var b,d=function(){var b={};return g(a,function(a){b[a.head]||(b[a.head]=[]),b[a.head].push(a)}),b}();return/^[0-9]+$/.test(a[0].head)?(b=[],g(d,function(a){b.push(c(a))})):(b={},g(d,function(a,d){b[d]=c(a)})),b};return c(b(a(this).inputVal()))},a.fn.repeater=function(c){c=c||{};var d;return a(this).each(function(){var e=a(this),f=c.show||function(){a(this).show()},i=c.hide||function(a){a()},k=e.find("[data-repeater-list]").first(),l=function(b,c){return b.filter(function(){return!c||0===a(this).closest(n(c,"selector").join(",")).length})},p=function(){return l(k.find("[data-repeater-item]"),c.repeaters)},q=k.find("[data-repeater-item]").first().clone().hide(),r=l(l(a(this).find("[data-repeater-item]"),c.repeaters).first().find("[data-repeater-delete]"),c.repeaters);c.isFirstItemUndeletable&&r&&r.remove();var s=function(){var a=k.data("repeater-list");return c.$parent?c.$parent.data("item-name")+"["+a+"]":a},t=function(b){c.repeaters&&b.each(function(){var b=a(this);g(c.repeaters,function(a){b.find(a.selector).repeater(j(a,{$parent:b}))})})},u=function(a,b,c){a&&g(a,function(a){c.call(b.find(a.selector)[0],a)})},v=function(b,c,d){b.each(function(b){var e=a(this);e.data("item-name",c+"["+b+"]"),l(e.find("[name]"),d).each(function(){var f=a(this),g=f.attr("name").match(/\[[^\]]+\]/g),i=g?h(g).replace(/\[|\]/g,""):f.attr("name"),j=c+"["+b+"]["+i+"]"+(f.is(":checkbox")||f.attr("multiple")?"[]":"");f.attr("name",j),u(d,e,function(d){var e=a(this);v(l(e.find("[data-repeater-item]"),d.repeaters||[]),c+"["+b+"]["+e.find("[data-repeater-list]").first().data("repeater-list")+"]",d.repeaters)})})}),k.find("input[name][checked]").removeAttr("checked").prop("checked",!0)};v(p(),s(),c.repeaters),t(p()),c.initEmpty&&p().remove(),c.ready&&c.ready(function(){v(p(),s(),c.repeaters)});var w=function(){var d=function(e,f,h){if(f||c.defaultValues){var i={};l(e.find("[name]"),h).each(function(){var b=a(this).attr("name").match(/\[([^\]]*)(\]|\]\[\])$/)[1];i[b]=a(this).attr("name")}),e.inputVal(m(o(f||c.defaultValues,function(a,b){return i[b]}),b,function(a){return i[a]}))}u(h,e,function(b){var c=a(this);l(c.find("[data-repeater-item]"),b.repeaters).each(function(){var e=c.find("[data-repeater-list]").data("repeater-list");if(f&&f[e]){var h=a(this).clone();c.find("[data-repeater-item]").remove(),g(f[e],function(a){var e=h.clone();d(e,a,b.repeaters||[]),c.find("[data-repeater-list]").append(e)})}else d(a(this),b.defaultValues,b.repeaters||[])})})};return function(b,e){k.append(b),v(p(),s(),c.repeaters),b.find("[name]").each(function(){a(this).inputClear()}),d(b,e||c.defaultValues,c.repeaters)}}(),x=function(a){var b=q.clone();w(b,a),c.repeaters&&t(b),f.call(b.get(0))};d=function(a){p().remove(),g(a,x)},l(e.find("[data-repeater-create]"),c.repeaters).click(function(){x()}),k.on("click","[data-repeater-delete]",function(){var b=a(this).closest("[data-repeater-item]").get(0);i.call(b,function(){a(b).remove(),v(p(),s(),c.repeaters)})})}),this.setList=d,this}}(jQuery);
1
+ // jquery.repeater version 1.2.1
2
+ // https://github.com/DubFriend/jquery.repeater
3
+ // (MIT) 09-10-2016
4
+ // Brian Detering <BDeterin@gmail.com> (http://www.briandetering.net/)
5
  !function(a){"use strict";var b=function(a){return a},c=function(b){return a.isArray(b)},d=function(a){return!c(a)&&a instanceof Object},e=function(b,c){return a.inArray(c,b)},f=function(a,b){return e(a,b)!==-1},g=function(a,b){for(var c in a)a.hasOwnProperty(c)&&b(a[c],c,a)},h=function(a){return a[a.length-1]},i=function(a){return Array.prototype.slice.call(a)},j=function(){var a={};return g(i(arguments),function(b){g(b,function(b,c){a[c]=b})}),a},k=function(a,b){var c=[];return g(a,function(a,d,e){c.push(b(a,d,e))}),c},l=function(a,b,c){var d={};return g(a,function(a,e,f){e=c?c(e,a):e,d[e]=b(a,e,f)}),d},m=function(a,b,d){return c(a)?k(a,b):l(a,b,d)},n=function(a,b){return m(a,function(a){return a[b]})},o=function(a,b){var d;return c(a)?(d=[],g(a,function(a,c,e){b(a,c,e)&&d.push(a)})):(d={},g(a,function(a,c,e){b(a,c,e)&&(d[c]=a)})),d},p=function(a,b,c){return m(a,function(a,d){return a[b].apply(a,c||[])})},q=function(a){a=a||{};var b={};return a.publish=function(a,c){g(b[a],function(a){a(c)})},a.subscribe=function(a,c){b[a]=b[a]||[],b[a].push(c)},a.unsubscribe=function(a){g(b,function(b){var c=e(b,a);c!==-1&&b.splice(c,1)})},a};!function(a){var b=function(a,b){var c=q(),d=a.$;return c.getType=function(){throw'implement me (return type. "text", "radio", etc.)'},c.$=function(a){return a?d.find(a):d},c.disable=function(){c.$().prop("disabled",!0),c.publish("isEnabled",!1)},c.enable=function(){c.$().prop("disabled",!1),c.publish("isEnabled",!0)},b.equalTo=function(a,b){return a===b},b.publishChange=function(){var a;return function(d,e){var f=c.get();b.equalTo(f,a)||c.publish("change",{e:d,domElement:e}),a=f}}(),c},i=function(a,c){var d=b(a,c);return d.get=function(){return d.$().val()},d.set=function(a){d.$().val(a)},d.clear=function(){d.set("")},c.buildSetter=function(a){return function(b){a.call(d,b)}},d},j=function(a,b){a=c(a)?a:[a],b=c(b)?b:[b];var d=!0;return a.length!==b.length?d=!1:g(a,function(a){f(b,a)||(d=!1)}),d},k=function(a){var b={},c=i(a,b);return c.getType=function(){return"button"},c.$().on("change",function(a){b.publishChange(a,this)}),c},l=function(b){var d={},e=i(b,d);return e.getType=function(){return"checkbox"},e.get=function(){var b=[];return e.$().filter(":checked").each(function(){b.push(a(this).val())}),b},e.set=function(b){b=c(b)?b:[b],e.$().each(function(){a(this).prop("checked",!1)}),g(b,function(a){e.$().filter('[value="'+a+'"]').prop("checked",!0)})},d.equalTo=j,e.$().change(function(a){d.publishChange(a,this)}),e},m=function(a){var b={},c=x(a,b);return c.getType=function(){return"email"},c},n=function(c){var d={},e=b(c,d);return e.getType=function(){return"file"},e.get=function(){return h(e.$().val().split("\\"))},e.clear=function(){this.$().each(function(){a(this).wrap("<form>").closest("form").get(0).reset(),a(this).unwrap()})},e.$().change(function(a){d.publishChange(a,this)}),e},o=function(a){var b={},c=i(a,b);return c.getType=function(){return"hidden"},c.$().change(function(a){b.publishChange(a,this)}),c},r=function(c){var d={},e=b(c,d);return e.getType=function(){return"file[multiple]"},e.get=function(){var a,b=e.$().get(0).files||[],c=[];for(a=0;a<(b.length||0);a+=1)c.push(b[a].name);return c},e.clear=function(){this.$().each(function(){a(this).wrap("<form>").closest("form").get(0).reset(),a(this).unwrap()})},e.$().change(function(a){d.publishChange(a,this)}),e},s=function(a){var b={},d=i(a,b);return d.getType=function(){return"select[multiple]"},d.get=function(){return d.$().val()||[]},d.set=function(a){d.$().val(""===a?[]:c(a)?a:[a])},b.equalTo=j,d.$().change(function(a){b.publishChange(a,this)}),d},t=function(a){var b={},c=x(a,b);return c.getType=function(){return"password"},c},u=function(b){var c={},d=i(b,c);return d.getType=function(){return"radio"},d.get=function(){return d.$().filter(":checked").val()||null},d.set=function(b){b?d.$().filter('[value="'+b+'"]').prop("checked",!0):d.$().each(function(){a(this).prop("checked",!1)})},d.$().change(function(a){c.publishChange(a,this)}),d},v=function(a){var b={},c=i(a,b);return c.getType=function(){return"range"},c.$().change(function(a){b.publishChange(a,this)}),c},w=function(a){var b={},c=i(a,b);return c.getType=function(){return"select"},c.$().change(function(a){b.publishChange(a,this)}),c},x=function(a){var b={},c=i(a,b);return c.getType=function(){return"text"},c.$().on("change keyup keydown",function(a){b.publishChange(a,this)}),c},y=function(a){var b={},c=i(a,b);return c.getType=function(){return"textarea"},c.$().on("change keyup keydown",function(a){b.publishChange(a,this)}),c},z=function(a){var b={},c=x(a,b);return c.getType=function(){return"url"},c},A=function(b){var c={},f=b.$,h=b.constructorOverride||{button:k,text:x,url:z,email:m,password:t,range:v,textarea:y,select:w,"select[multiple]":s,radio:u,checkbox:l,file:n,"file[multiple]":r,hidden:o},i=function(b,e){var g=d(e)?e:f.find(e);g.each(function(){var d=a(this).attr("name");c[d]=h[b]({$:a(this)})})},j=function(b,i){var j=[],k=d(i)?i:f.find(i);d(i)?c[k.attr("name")]=h[b]({$:k}):(k.each(function(){e(j,a(this).attr("name"))===-1&&j.push(a(this).attr("name"))}),g(j,function(a){c[a]=h[b]({$:f.find('input[name="'+a+'"]')})}))};return f.is("input, select, textarea")?f.is('input[type="button"], button, input[type="submit"]')?i("button",f):f.is("textarea")?i("textarea",f):f.is('input[type="text"]')||f.is("input")&&!f.attr("type")?i("text",f):f.is('input[type="password"]')?i("password",f):f.is('input[type="email"]')?i("email",f):f.is('input[type="url"]')?i("url",f):f.is('input[type="range"]')?i("range",f):f.is("select")?f.is("[multiple]")?i("select[multiple]",f):i("select",f):f.is('input[type="file"]')?f.is("[multiple]")?i("file[multiple]",f):i("file",f):f.is('input[type="hidden"]')?i("hidden",f):f.is('input[type="radio"]')?j("radio",f):f.is('input[type="checkbox"]')?j("checkbox",f):i("text",f):(i("button",'input[type="button"], button, input[type="submit"]'),i("text",'input[type="text"]'),i("password",'input[type="password"]'),i("email",'input[type="email"]'),i("url",'input[type="url"]'),i("range",'input[type="range"]'),i("textarea","textarea"),i("select","select:not([multiple])"),i("select[multiple]","select[multiple]"),i("file",'input[type="file"]:not([multiple])'),i("file[multiple]",'input[type="file"][multiple]'),i("hidden",'input[type="hidden"]'),j("radio",'input[type="radio"]'),j("checkbox",'input[type="checkbox"]')),c};a.fn.inputVal=function(b){var c=a(this),d=A({$:c});return c.is("input, textarea, select")?"undefined"==typeof b?d[c.attr("name")].get():(d[c.attr("name")].set(b),c):"undefined"==typeof b?p(d,"get"):(g(b,function(a,b){d[b].set(a)}),c)},a.fn.inputOnChange=function(b){var c=a(this),d=A({$:c});return g(d,function(a){a.subscribe("change",function(a){b.call(a.domElement,a.e)})}),c},a.fn.inputDisable=function(){var b=a(this);return p(A({$:b}),"disable"),b},a.fn.inputEnable=function(){var b=a(this);return p(A({$:b}),"enable"),b},a.fn.inputClear=function(){var b=a(this);return p(A({$:b}),"clear"),b}}(jQuery),a.fn.repeaterVal=function(){var b=function(a){var b=[];return g(a,function(a,c){var d=[];"undefined"!==c&&(d.push(c.match(/^[^\[]*/)[0]),d=d.concat(m(c.match(/\[[^\]]*\]/g),function(a){return a.replace(/[\[\]]/g,"")})),b.push({val:a,key:d}))}),b},c=function(a){if(1===a.length&&(0===a[0].key.length||1===a[0].key.length&&!a[0].key[0]))return a[0].val;g(a,function(a){a.head=a.key.shift()});var b,d=function(){var b={};return g(a,function(a){b[a.head]||(b[a.head]=[]),b[a.head].push(a)}),b}();return/^[0-9]+$/.test(a[0].head)?(b=[],g(d,function(a){b.push(c(a))})):(b={},g(d,function(a,d){b[d]=c(a)})),b};return c(b(a(this).inputVal()))},a.fn.repeater=function(c){c=c||{};var d;return a(this).each(function(){var e=a(this),f=c.show||function(){a(this).show()},i=c.hide||function(a){a()},k=e.find("[data-repeater-list]").first(),l=function(b,c){return b.filter(function(){return!c||0===a(this).closest(n(c,"selector").join(",")).length})},p=function(){return l(k.find("[data-repeater-item]"),c.repeaters)},q=k.find("[data-repeater-item]").first().clone().hide(),r=l(l(a(this).find("[data-repeater-item]"),c.repeaters).first().find("[data-repeater-delete]"),c.repeaters);c.isFirstItemUndeletable&&r&&r.remove();var s=function(){var a=k.data("repeater-list");return c.$parent?c.$parent.data("item-name")+"["+a+"]":a},t=function(b){c.repeaters&&b.each(function(){var b=a(this);g(c.repeaters,function(a){b.find(a.selector).repeater(j(a,{$parent:b}))})})},u=function(a,b,c){a&&g(a,function(a){c.call(b.find(a.selector)[0],a)})},v=function(b,c,d){b.each(function(b){var e=a(this);e.data("item-name",c+"["+b+"]"),l(e.find("[name]"),d).each(function(){var f=a(this),g=f.attr("name").match(/\[[^\]]+\]/g),i=g?h(g).replace(/\[|\]/g,""):f.attr("name"),j=c+"["+b+"]["+i+"]"+(f.is(":checkbox")||f.attr("multiple")?"[]":"");f.attr("name",j),u(d,e,function(d){var e=a(this);v(l(e.find("[data-repeater-item]"),d.repeaters||[]),c+"["+b+"]["+e.find("[data-repeater-list]").first().data("repeater-list")+"]",d.repeaters)})})}),k.find("input[name][checked]").removeAttr("checked").prop("checked",!0)};v(p(),s(),c.repeaters),t(p()),c.initEmpty&&p().remove(),c.ready&&c.ready(function(){v(p(),s(),c.repeaters)});var w=function(){var d=function(e,f,h){if(f||c.defaultValues){var i={};l(e.find("[name]"),h).each(function(){var b=a(this).attr("name").match(/\[([^\]]*)(\]|\]\[\])$/)[1];i[b]=a(this).attr("name")}),e.inputVal(m(o(f||c.defaultValues,function(a,b){return i[b]}),b,function(a){return i[a]}))}u(h,e,function(b){var c=a(this);l(c.find("[data-repeater-item]"),b.repeaters).each(function(){var e=c.find("[data-repeater-list]").data("repeater-list");if(f&&f[e]){var h=a(this).clone();c.find("[data-repeater-item]").remove(),g(f[e],function(a){var e=h.clone();d(e,a,b.repeaters||[]),c.find("[data-repeater-list]").append(e)})}else d(a(this),b.defaultValues,b.repeaters||[])})})};return function(b,e){k.append(b),v(p(),s(),c.repeaters),b.find("[name]").each(function(){a(this).inputClear()}),d(b,e||c.defaultValues,c.repeaters)}}(),x=function(a){var b=q.clone();w(b,a),c.repeaters&&t(b),f.call(b.get(0))};d=function(a){p().remove(),g(a,x)},l(e.find("[data-repeater-create]"),c.repeaters).click(function(){x()}),k.on("click","[data-repeater-delete]",function(){var b=a(this).closest("[data-repeater-item]").get(0);i.call(b,function(){a(b).remove(),v(p(),s(),c.repeaters)})})}),this.setList=d,this}}(jQuery);
assets/js/cccpa-donotsell.js CHANGED
@@ -1,64 +1,64 @@
1
- (function ($) {
2
-
3
- var el_form = $('#form-new-post'),
4
- el_form_submit = $('.submit', el_form);
5
-
6
- // Fires when the form is submitted.
7
- el_form.on('submit', function (e) {
8
- e.preventDefault();
9
-
10
- el_form_submit.attr('disabled', 'disabled');
11
- //var donotsell_email= jQuery('input[name="donotsell_email"]').val();
12
- //console.log(isEmail(donotsell_email));
13
- new_post();
14
- });
15
- /* function isEmail(email) {
16
- var regex = /^([a-zA-Z0-9_.+-])+\@(([a-zA-Z0-9-])+\.)+([a-zA-Z0-9]{2,4})+$/;
17
- return regex.test(email);
18
- } */
19
- // Ajax request.
20
- function new_post() {
21
- $.ajax({
22
- url: localized_donot_sell_form.admin_donot_sell_ajax_url,
23
- type: 'POST',
24
- dataType: 'json',
25
- data: {
26
- action: 'donot_sell_save_post', // Set action without prefix 'wp_ajax_'.
27
- form_data: el_form.serialize()
28
- },
29
- cache: false
30
- }).done(function (r) {
31
- console.log(r);
32
- if (r.donotsellrequests !== '') {
33
- console.log('complete')
34
- jQuery('#donotsellmsg').addClass('donotsell-msg');
35
- jQuery('#donotsellmsg').removeClass('donotsell-error-msg');
36
- jQuery('#donotsellmsg').text('Request has been submitted successfully!!').delay(10000).fadeOut();
37
- //el_form_submit.attr('data-is-updated', 'true');
38
- //el_form_submit.text(el_form_submit.data('is-update-text'));
39
- }
40
- console.log(r.error)
41
- if(r.error !=='' && r.error != undefined){
42
- jQuery('#donotsellmsg').removeClass('donotsell-msg');
43
- jQuery('#donotsellmsg').addClass('donotsell-error-msg');
44
- jQuery('.donotsell-error-msg').text(r.error).delay(10000).fadeOut();
45
- }
46
- el_form_submit.removeAttr('disabled');
47
- });
48
- }
49
-
50
- // Used to trigger/simulate post submission without user action.
51
- function trigger_new_post() {
52
- el_form.trigger('submit');
53
- }
54
-
55
- // Sets interval so the post the can be updated automatically provided that it was already created.
56
- /* setInterval(function () {
57
- if (el_form_submit.attr('data-is-updated') === 'false') {
58
- return false;
59
- }
60
-
61
- trigger_new_post();
62
- }, 5000); // Set to 5 seconds. */
63
-
64
  })(jQuery);
1
+ (function ($) {
2
+
3
+ var el_form = $('#form-new-post'),
4
+ el_form_submit = $('.submit', el_form);
5
+
6
+ // Fires when the form is submitted.
7
+ el_form.on('submit', function (e) {
8
+ e.preventDefault();
9
+
10
+ el_form_submit.attr('disabled', 'disabled');
11
+ //var donotsell_email= jQuery('input[name="donotsell_email"]').val();
12
+ //console.log(isEmail(donotsell_email));
13
+ new_post();
14
+ });
15
+ /* function isEmail(email) {
16
+ var regex = /^([a-zA-Z0-9_.+-])+\@(([a-zA-Z0-9-])+\.)+([a-zA-Z0-9]{2,4})+$/;
17
+ return regex.test(email);
18
+ } */
19
+ // Ajax request.
20
+ function new_post() {
21
+ $.ajax({
22
+ url: localized_donot_sell_form.admin_donot_sell_ajax_url,
23
+ type: 'POST',
24
+ dataType: 'json',
25
+ data: {
26
+ action: 'donot_sell_save_post', // Set action without prefix 'wp_ajax_'.
27
+ form_data: el_form.serialize()
28
+ },
29
+ cache: false
30
+ }).done(function (r) {
31
+ console.log(r);
32
+ if (r.donotsellrequests !== '') {
33
+ console.log('complete')
34
+ jQuery('#donotsellmsg').addClass('donotsell-msg');
35
+ jQuery('#donotsellmsg').removeClass('donotsell-error-msg');
36
+ jQuery('#donotsellmsg').text('Request has been submitted successfully!!').delay(10000).fadeOut();
37
+ //el_form_submit.attr('data-is-updated', 'true');
38
+ //el_form_submit.text(el_form_submit.data('is-update-text'));
39
+ }
40
+ console.log(r.error)
41
+ if(r.error !=='' && r.error != undefined){
42
+ jQuery('#donotsellmsg').removeClass('donotsell-msg');
43
+ jQuery('#donotsellmsg').addClass('donotsell-error-msg');
44
+ jQuery('.donotsell-error-msg').text(r.error).delay(10000).fadeOut();
45
+ }
46
+ el_form_submit.removeAttr('disabled');
47
+ });
48
+ }
49
+
50
+ // Used to trigger/simulate post submission without user action.
51
+ function trigger_new_post() {
52
+ el_form.trigger('submit');
53
+ }
54
+
55
+ // Sets interval so the post the can be updated automatically provided that it was already created.
56
+ /* setInterval(function () {
57
+ if (el_form_submit.attr('data-is-updated') === 'false') {
58
+ return false;
59
+ }
60
+
61
+ trigger_new_post();
62
+ }, 5000); // Set to 5 seconds. */
63
+
64
  })(jQuery);
assets/js/consentuntil.js CHANGED
@@ -1,16 +1,16 @@
1
- jQuery(function ($) {
2
- var calvisible = false;
3
- $('.gdpr-consent-until-cal').click(function(){
4
- if(calvisible == false){
5
- $('.gdpr-consent-until').css('opacity', 1);
6
- calvisible = true;
7
- }else{
8
- $('.gdpr-consent-until').css('opacity', 0);
9
- calvisible = false;
10
- }
11
- });
12
- $('.gdpr-consent-until').change(function(){
13
- $('.gdpr-consent-until').css('opacity', 0);
14
-
15
- });
16
  });
1
+ jQuery(function ($) {
2
+ var calvisible = false;
3
+ $('.gdpr-consent-until-cal').click(function(){
4
+ if(calvisible == false){
5
+ $('.gdpr-consent-until').css('opacity', 1);
6
+ calvisible = true;
7
+ }else{
8
+ $('.gdpr-consent-until').css('opacity', 0);
9
+ calvisible = false;
10
+ }
11
+ });
12
+ $('.gdpr-consent-until').change(function(){
13
+ $('.gdpr-consent-until').css('opacity', 0);
14
+
15
+ });
16
  });
assets/js/gdpr-donotsell.js CHANGED
@@ -1,64 +1,64 @@
1
- (function ($) {
2
-
3
- var el_form = $('#form-new-post'),
4
- el_form_submit = $('.submit', el_form);
5
-
6
- // Fires when the form is submitted.
7
- el_form.on('submit', function (e) {
8
- e.preventDefault();
9
-
10
- el_form_submit.attr('disabled', 'disabled');
11
- //var donotsell_email= jQuery('input[name="donotsell_email"]').val();
12
- //console.log(isEmail(donotsell_email));
13
- new_post();
14
- });
15
- /* function isEmail(email) {
16
- var regex = /^([a-zA-Z0-9_.+-])+\@(([a-zA-Z0-9-])+\.)+([a-zA-Z0-9]{2,4})+$/;
17
- return regex.test(email);
18
- } */
19
- // Ajax request.
20
- function new_post() {
21
- $.ajax({
22
- url: localized_donot_sell_form.admin_donot_sell_ajax_url,
23
- type: 'POST',
24
- dataType: 'json',
25
- data: {
26
- action: 'donot_sell_save_post', // Set action without prefix 'wp_ajax_'.
27
- form_data: el_form.serialize()
28
- },
29
- cache: false
30
- }).done(function (r) {
31
- console.log(r);
32
- if (r.donotsellrequests !== '') {
33
- console.log('complete')
34
- jQuery('#donotsellmsg').addClass('donotsell-msg');
35
- jQuery('#donotsellmsg').removeClass('donotsell-error-msg');
36
- jQuery('#donotsellmsg').text('Request has been submitted successfully!!').delay(10000).fadeOut();
37
- //el_form_submit.attr('data-is-updated', 'true');
38
- //el_form_submit.text(el_form_submit.data('is-update-text'));
39
- }
40
- console.log(r.error)
41
- if(r.error !=='' && r.error != undefined){
42
- jQuery('#donotsellmsg').removeClass('donotsell-msg');
43
- jQuery('#donotsellmsg').addClass('donotsell-error-msg');
44
- jQuery('.donotsell-error-msg').text(r.error).delay(10000).fadeOut();
45
- }
46
- el_form_submit.removeAttr('disabled');
47
- });
48
- }
49
-
50
- // Used to trigger/simulate post submission without user action.
51
- function trigger_new_post() {
52
- el_form.trigger('submit');
53
- }
54
-
55
- // Sets interval so the post the can be updated automatically provided that it was already created.
56
- /* setInterval(function () {
57
- if (el_form_submit.attr('data-is-updated') === 'false') {
58
- return false;
59
- }
60
-
61
- trigger_new_post();
62
- }, 5000); // Set to 5 seconds. */
63
-
64
  })(jQuery);
1
+ (function ($) {
2
+
3
+ var el_form = $('#form-new-post'),
4
+ el_form_submit = $('.submit', el_form);
5
+
6
+ // Fires when the form is submitted.
7
+ el_form.on('submit', function (e) {
8
+ e.preventDefault();
9
+
10
+ el_form_submit.attr('disabled', 'disabled');
11
+ //var donotsell_email= jQuery('input[name="donotsell_email"]').val();
12
+ //console.log(isEmail(donotsell_email));
13
+ new_post();
14
+ });
15
+ /* function isEmail(email) {
16
+ var regex = /^([a-zA-Z0-9_.+-])+\@(([a-zA-Z0-9-])+\.)+([a-zA-Z0-9]{2,4})+$/;
17
+ return regex.test(email);
18
+ } */
19
+ // Ajax request.
20
+ function new_post() {
21
+ $.ajax({
22
+ url: localized_donot_sell_form.admin_donot_sell_ajax_url,
23
+ type: 'POST',
24
+ dataType: 'json',
25
+ data: {
26
+ action: 'donot_sell_save_post', // Set action without prefix 'wp_ajax_'.
27
+ form_data: el_form.serialize()
28
+ },
29
+ cache: false
30
+ }).done(function (r) {
31
+ console.log(r);
32
+ if (r.donotsellrequests !== '') {
33
+ console.log('complete')
34
+ jQuery('#donotsellmsg').addClass('donotsell-msg');
35
+ jQuery('#donotsellmsg').removeClass('donotsell-error-msg');
36
+ jQuery('#donotsellmsg').text('Request has been submitted successfully!!').delay(10000).fadeOut();
37
+ //el_form_submit.attr('data-is-updated', 'true');
38
+ //el_form_submit.text(el_form_submit.data('is-update-text'));
39
+ }
40
+ console.log(r.error)
41
+ if(r.error !=='' && r.error != undefined){
42
+ jQuery('#donotsellmsg').removeClass('donotsell-msg');
43
+ jQuery('#donotsellmsg').addClass('donotsell-error-msg');
44
+ jQuery('.donotsell-error-msg').text(r.error).delay(10000).fadeOut();
45
+ }
46
+ el_form_submit.removeAttr('disabled');
47
+ });
48
+ }
49
+
50
+ // Used to trigger/simulate post submission without user action.
51
+ function trigger_new_post() {
52
+ el_form.trigger('submit');
53
+ }
54
+
55
+ // Sets interval so the post the can be updated automatically provided that it was already created.
56
+ /* setInterval(function () {
57
+ if (el_form_submit.attr('data-is-updated') === 'false') {
58
+ return false;
59
+ }
60
+
61
+ trigger_new_post();
62
+ }, 5000); // Set to 5 seconds. */
63
+
64
  })(jQuery);
assets/js/initdatatable.js CHANGED
@@ -1,6 +1,6 @@
1
- jQuery(document).ready(function () {
2
- jQuery('#classiDocs_dataTable').DataTable({
3
- "autoWidth": true,
4
- "scrollX": true
5
- });
6
  });
1
+ jQuery(document).ready(function () {
2
+ jQuery('#classiDocs_dataTable').DataTable({
3
+ "autoWidth": true,
4
+ "scrollX": true
5
+ });
6
  });
assets/js/jquery.dataTables.min.js CHANGED
@@ -1,170 +1,181 @@
1
  /*!
2
- DataTables 1.10.19
3
- ©2008-2018 SpryMedia Ltd - datatables.net/license
 
 
 
 
 
 
 
 
 
 
4
  */
5
- (function(h){"function"===typeof define&&define.amd?define(["jquery"],function(E){return h(E,window,document)}):"object"===typeof exports?module.exports=function(E,H){E||(E=window);H||(H="undefined"!==typeof window?require("jquery"):require("jquery")(E));return h(H,E,E.document)}:h(jQuery,window,document)})(function(h,E,H,k){function Z(a){var b,c,d={};h.each(a,function(e){if((b=e.match(/^([^A-Z]+?)([A-Z])/))&&-1!=="a aa ai ao as b fn i m o s ".indexOf(b[1]+" "))c=e.replace(b[0],b[2].toLowerCase()),
6
- d[c]=e,"o"===b[1]&&Z(a[e])});a._hungarianMap=d}function J(a,b,c){a._hungarianMap||Z(a);var d;h.each(b,function(e){d=a._hungarianMap[e];if(d!==k&&(c||b[d]===k))"o"===d.charAt(0)?(b[d]||(b[d]={}),h.extend(!0,b[d],b[e]),J(a[d],b[d],c)):b[d]=b[e]})}function Ca(a){var b=n.defaults.oLanguage,c=b.sDecimal;c&&Da(c);if(a){var d=a.sZeroRecords;!a.sEmptyTable&&(d&&"No data available in table"===b.sEmptyTable)&&F(a,a,"sZeroRecords","sEmptyTable");!a.sLoadingRecords&&(d&&"Loading..."===b.sLoadingRecords)&&F(a,
7
- a,"sZeroRecords","sLoadingRecords");a.sInfoThousands&&(a.sThousands=a.sInfoThousands);(a=a.sDecimal)&&c!==a&&Da(a)}}function fb(a){A(a,"ordering","bSort");A(a,"orderMulti","bSortMulti");A(a,"orderClasses","bSortClasses");A(a,"orderCellsTop","bSortCellsTop");A(a,"order","aaSorting");A(a,"orderFixed","aaSortingFixed");A(a,"paging","bPaginate");A(a,"pagingType","sPaginationType");A(a,"pageLength","iDisplayLength");A(a,"searching","bFilter");"boolean"===typeof a.sScrollX&&(a.sScrollX=a.sScrollX?"100%":
8
- "");"boolean"===typeof a.scrollX&&(a.scrollX=a.scrollX?"100%":"");if(a=a.aoSearchCols)for(var b=0,c=a.length;b<c;b++)a[b]&&J(n.models.oSearch,a[b])}function gb(a){A(a,"orderable","bSortable");A(a,"orderData","aDataSort");A(a,"orderSequence","asSorting");A(a,"orderDataType","sortDataType");var b=a.aDataSort;"number"===typeof b&&!h.isArray(b)&&(a.aDataSort=[b])}function hb(a){if(!n.__browser){var b={};n.__browser=b;var c=h("<div/>").css({position:"fixed",top:0,left:-1*h(E).scrollLeft(),height:1,width:1,
9
- overflow:"hidden"}).append(h("<div/>").css({position:"absolute",top:1,left:1,width:100,overflow:"scroll"}).append(h("<div/>").css({width:"100%",height:10}))).appendTo("body"),d=c.children(),e=d.children();b.barWidth=d[0].offsetWidth-d[0].clientWidth;b.bScrollOversize=100===e[0].offsetWidth&&100!==d[0].clientWidth;b.bScrollbarLeft=1!==Math.round(e.offset().left);b.bBounding=c[0].getBoundingClientRect().width?!0:!1;c.remove()}h.extend(a.oBrowser,n.__browser);a.oScroll.iBarWidth=n.__browser.barWidth}
10
- function ib(a,b,c,d,e,f){var g,j=!1;c!==k&&(g=c,j=!0);for(;d!==e;)a.hasOwnProperty(d)&&(g=j?b(g,a[d],d,a):a[d],j=!0,d+=f);return g}function Ea(a,b){var c=n.defaults.column,d=a.aoColumns.length,c=h.extend({},n.models.oColumn,c,{nTh:b?b:H.createElement("th"),sTitle:c.sTitle?c.sTitle:b?b.innerHTML:"",aDataSort:c.aDataSort?c.aDataSort:[d],mData:c.mData?c.mData:d,idx:d});a.aoColumns.push(c);c=a.aoPreSearchCols;c[d]=h.extend({},n.models.oSearch,c[d]);ka(a,d,h(b).data())}function ka(a,b,c){var b=a.aoColumns[b],
11
- d=a.oClasses,e=h(b.nTh);if(!b.sWidthOrig){b.sWidthOrig=e.attr("width")||null;var f=(e.attr("style")||"").match(/width:\s*(\d+[pxem%]+)/);f&&(b.sWidthOrig=f[1])}c!==k&&null!==c&&(gb(c),J(n.defaults.column,c),c.mDataProp!==k&&!c.mData&&(c.mData=c.mDataProp),c.sType&&(b._sManualType=c.sType),c.className&&!c.sClass&&(c.sClass=c.className),c.sClass&&e.addClass(c.sClass),h.extend(b,c),F(b,c,"sWidth","sWidthOrig"),c.iDataSort!==k&&(b.aDataSort=[c.iDataSort]),F(b,c,"aDataSort"));var g=b.mData,j=S(g),i=b.mRender?
12
- S(b.mRender):null,c=function(a){return"string"===typeof a&&-1!==a.indexOf("@")};b._bAttrSrc=h.isPlainObject(g)&&(c(g.sort)||c(g.type)||c(g.filter));b._setter=null;b.fnGetData=function(a,b,c){var d=j(a,b,k,c);return i&&b?i(d,b,a,c):d};b.fnSetData=function(a,b,c){return N(g)(a,b,c)};"number"!==typeof g&&(a._rowReadObject=!0);a.oFeatures.bSort||(b.bSortable=!1,e.addClass(d.sSortableNone));a=-1!==h.inArray("asc",b.asSorting);c=-1!==h.inArray("desc",b.asSorting);!b.bSortable||!a&&!c?(b.sSortingClass=d.sSortableNone,
13
- b.sSortingClassJUI=""):a&&!c?(b.sSortingClass=d.sSortableAsc,b.sSortingClassJUI=d.sSortJUIAscAllowed):!a&&c?(b.sSortingClass=d.sSortableDesc,b.sSortingClassJUI=d.sSortJUIDescAllowed):(b.sSortingClass=d.sSortable,b.sSortingClassJUI=d.sSortJUI)}function $(a){if(!1!==a.oFeatures.bAutoWidth){var b=a.aoColumns;Fa(a);for(var c=0,d=b.length;c<d;c++)b[c].nTh.style.width=b[c].sWidth}b=a.oScroll;(""!==b.sY||""!==b.sX)&&la(a);r(a,null,"column-sizing",[a])}function aa(a,b){var c=ma(a,"bVisible");return"number"===
14
- typeof c[b]?c[b]:null}function ba(a,b){var c=ma(a,"bVisible"),c=h.inArray(b,c);return-1!==c?c:null}function V(a){var b=0;h.each(a.aoColumns,function(a,d){d.bVisible&&"none"!==h(d.nTh).css("display")&&b++});return b}function ma(a,b){var c=[];h.map(a.aoColumns,function(a,e){a[b]&&c.push(e)});return c}function Ga(a){var b=a.aoColumns,c=a.aoData,d=n.ext.type.detect,e,f,g,j,i,h,l,q,t;e=0;for(f=b.length;e<f;e++)if(l=b[e],t=[],!l.sType&&l._sManualType)l.sType=l._sManualType;else if(!l.sType){g=0;for(j=d.length;g<
15
- j;g++){i=0;for(h=c.length;i<h;i++){t[i]===k&&(t[i]=B(a,i,e,"type"));q=d[g](t[i],a);if(!q&&g!==d.length-1)break;if("html"===q)break}if(q){l.sType=q;break}}l.sType||(l.sType="string")}}function jb(a,b,c,d){var e,f,g,j,i,m,l=a.aoColumns;if(b)for(e=b.length-1;0<=e;e--){m=b[e];var q=m.targets!==k?m.targets:m.aTargets;h.isArray(q)||(q=[q]);f=0;for(g=q.length;f<g;f++)if("number"===typeof q[f]&&0<=q[f]){for(;l.length<=q[f];)Ea(a);d(q[f],m)}else if("number"===typeof q[f]&&0>q[f])d(l.length+q[f],m);else if("string"===
16
- typeof q[f]){j=0;for(i=l.length;j<i;j++)("_all"==q[f]||h(l[j].nTh).hasClass(q[f]))&&d(j,m)}}if(c){e=0;for(a=c.length;e<a;e++)d(e,c[e])}}function O(a,b,c,d){var e=a.aoData.length,f=h.extend(!0,{},n.models.oRow,{src:c?"dom":"data",idx:e});f._aData=b;a.aoData.push(f);for(var g=a.aoColumns,j=0,i=g.length;j<i;j++)g[j].sType=null;a.aiDisplayMaster.push(e);b=a.rowIdFn(b);b!==k&&(a.aIds[b]=f);(c||!a.oFeatures.bDeferRender)&&Ha(a,e,c,d);return e}function na(a,b){var c;b instanceof h||(b=h(b));return b.map(function(b,
17
- e){c=Ia(a,e);return O(a,c.data,e,c.cells)})}function B(a,b,c,d){var e=a.iDraw,f=a.aoColumns[c],g=a.aoData[b]._aData,j=f.sDefaultContent,i=f.fnGetData(g,d,{settings:a,row:b,col:c});if(i===k)return a.iDrawError!=e&&null===j&&(K(a,0,"Requested unknown parameter "+("function"==typeof f.mData?"{function}":"'"+f.mData+"'")+" for row "+b+", column "+c,4),a.iDrawError=e),j;if((i===g||null===i)&&null!==j&&d!==k)i=j;else if("function"===typeof i)return i.call(g);return null===i&&"display"==d?"":i}function kb(a,
18
- b,c,d){a.aoColumns[c].fnSetData(a.aoData[b]._aData,d,{settings:a,row:b,col:c})}function Ja(a){return h.map(a.match(/(\\.|[^\.])+/g)||[""],function(a){return a.replace(/\\\./g,".")})}function S(a){if(h.isPlainObject(a)){var b={};h.each(a,function(a,c){c&&(b[a]=S(c))});return function(a,c,f,g){var j=b[c]||b._;return j!==k?j(a,c,f,g):a}}if(null===a)return function(a){return a};if("function"===typeof a)return function(b,c,f,g){return a(b,c,f,g)};if("string"===typeof a&&(-1!==a.indexOf(".")||-1!==a.indexOf("[")||
19
- -1!==a.indexOf("("))){var c=function(a,b,f){var g,j;if(""!==f){j=Ja(f);for(var i=0,m=j.length;i<m;i++){f=j[i].match(ca);g=j[i].match(W);if(f){j[i]=j[i].replace(ca,"");""!==j[i]&&(a=a[j[i]]);g=[];j.splice(0,i+1);j=j.join(".");if(h.isArray(a)){i=0;for(m=a.length;i<m;i++)g.push(c(a[i],b,j))}a=f[0].substring(1,f[0].length-1);a=""===a?g:g.join(a);break}else if(g){j[i]=j[i].replace(W,"");a=a[j[i]]();continue}if(null===a||a[j[i]]===k)return k;a=a[j[i]]}}return a};return function(b,e){return c(b,e,a)}}return function(b){return b[a]}}
20
- function N(a){if(h.isPlainObject(a))return N(a._);if(null===a)return function(){};if("function"===typeof a)return function(b,d,e){a(b,"set",d,e)};if("string"===typeof a&&(-1!==a.indexOf(".")||-1!==a.indexOf("[")||-1!==a.indexOf("("))){var b=function(a,d,e){var e=Ja(e),f;f=e[e.length-1];for(var g,j,i=0,m=e.length-1;i<m;i++){g=e[i].match(ca);j=e[i].match(W);if(g){e[i]=e[i].replace(ca,"");a[e[i]]=[];f=e.slice();f.splice(0,i+1);g=f.join(".");if(h.isArray(d)){j=0;for(m=d.length;j<m;j++)f={},b(f,d[j],g),
21
- a[e[i]].push(f)}else a[e[i]]=d;return}j&&(e[i]=e[i].replace(W,""),a=a[e[i]](d));if(null===a[e[i]]||a[e[i]]===k)a[e[i]]={};a=a[e[i]]}if(f.match(W))a[f.replace(W,"")](d);else a[f.replace(ca,"")]=d};return function(c,d){return b(c,d,a)}}return function(b,d){b[a]=d}}function Ka(a){return D(a.aoData,"_aData")}function oa(a){a.aoData.length=0;a.aiDisplayMaster.length=0;a.aiDisplay.length=0;a.aIds={}}function pa(a,b,c){for(var d=-1,e=0,f=a.length;e<f;e++)a[e]==b?d=e:a[e]>b&&a[e]--; -1!=d&&c===k&&a.splice(d,
22
- 1)}function da(a,b,c,d){var e=a.aoData[b],f,g=function(c,d){for(;c.childNodes.length;)c.removeChild(c.firstChild);c.innerHTML=B(a,b,d,"display")};if("dom"===c||(!c||"auto"===c)&&"dom"===e.src)e._aData=Ia(a,e,d,d===k?k:e._aData).data;else{var j=e.anCells;if(j)if(d!==k)g(j[d],d);else{c=0;for(f=j.length;c<f;c++)g(j[c],c)}}e._aSortData=null;e._aFilterData=null;g=a.aoColumns;if(d!==k)g[d].sType=null;else{c=0;for(f=g.length;c<f;c++)g[c].sType=null;La(a,e)}}function Ia(a,b,c,d){var e=[],f=b.firstChild,g,
23
- j,i=0,m,l=a.aoColumns,q=a._rowReadObject,d=d!==k?d:q?{}:[],t=function(a,b){if("string"===typeof a){var c=a.indexOf("@");-1!==c&&(c=a.substring(c+1),N(a)(d,b.getAttribute(c)))}},G=function(a){if(c===k||c===i)j=l[i],m=h.trim(a.innerHTML),j&&j._bAttrSrc?(N(j.mData._)(d,m),t(j.mData.sort,a),t(j.mData.type,a),t(j.mData.filter,a)):q?(j._setter||(j._setter=N(j.mData)),j._setter(d,m)):d[i]=m;i++};if(f)for(;f;){g=f.nodeName.toUpperCase();if("TD"==g||"TH"==g)G(f),e.push(f);f=f.nextSibling}else{e=b.anCells;
24
- f=0;for(g=e.length;f<g;f++)G(e[f])}if(b=b.firstChild?b:b.nTr)(b=b.getAttribute("id"))&&N(a.rowId)(d,b);return{data:d,cells:e}}function Ha(a,b,c,d){var e=a.aoData[b],f=e._aData,g=[],j,i,m,l,q;if(null===e.nTr){j=c||H.createElement("tr");e.nTr=j;e.anCells=g;j._DT_RowIndex=b;La(a,e);l=0;for(q=a.aoColumns.length;l<q;l++){m=a.aoColumns[l];i=c?d[l]:H.createElement(m.sCellType);i._DT_CellIndex={row:b,column:l};g.push(i);if((!c||m.mRender||m.mData!==l)&&(!h.isPlainObject(m.mData)||m.mData._!==l+".display"))i.innerHTML=
25
- B(a,b,l,"display");m.sClass&&(i.className+=" "+m.sClass);m.bVisible&&!c?j.appendChild(i):!m.bVisible&&c&&i.parentNode.removeChild(i);m.fnCreatedCell&&m.fnCreatedCell.call(a.oInstance,i,B(a,b,l),f,b,l)}r(a,"aoRowCreatedCallback",null,[j,f,b,g])}e.nTr.setAttribute("role","row")}function La(a,b){var c=b.nTr,d=b._aData;if(c){var e=a.rowIdFn(d);e&&(c.id=e);d.DT_RowClass&&(e=d.DT_RowClass.split(" "),b.__rowc=b.__rowc?qa(b.__rowc.concat(e)):e,h(c).removeClass(b.__rowc.join(" ")).addClass(d.DT_RowClass));
26
- d.DT_RowAttr&&h(c).attr(d.DT_RowAttr);d.DT_RowData&&h(c).data(d.DT_RowData)}}function lb(a){var b,c,d,e,f,g=a.nTHead,j=a.nTFoot,i=0===h("th, td",g).length,m=a.oClasses,l=a.aoColumns;i&&(e=h("<tr/>").appendTo(g));b=0;for(c=l.length;b<c;b++)f=l[b],d=h(f.nTh).addClass(f.sClass),i&&d.appendTo(e),a.oFeatures.bSort&&(d.addClass(f.sSortingClass),!1!==f.bSortable&&(d.attr("tabindex",a.iTabIndex).attr("aria-controls",a.sTableId),Ma(a,f.nTh,b))),f.sTitle!=d[0].innerHTML&&d.html(f.sTitle),Na(a,"header")(a,d,
27
- f,m);i&&ea(a.aoHeader,g);h(g).find(">tr").attr("role","row");h(g).find(">tr>th, >tr>td").addClass(m.sHeaderTH);h(j).find(">tr>th, >tr>td").addClass(m.sFooterTH);if(null!==j){a=a.aoFooter[0];b=0;for(c=a.length;b<c;b++)f=l[b],f.nTf=a[b].cell,f.sClass&&h(f.nTf).addClass(f.sClass)}}function fa(a,b,c){var d,e,f,g=[],j=[],i=a.aoColumns.length,m;if(b){c===k&&(c=!1);d=0;for(e=b.length;d<e;d++){g[d]=b[d].slice();g[d].nTr=b[d].nTr;for(f=i-1;0<=f;f--)!a.aoColumns[f].bVisible&&!c&&g[d].splice(f,1);j.push([])}d=
28
- 0;for(e=g.length;d<e;d++){if(a=g[d].nTr)for(;f=a.firstChild;)a.removeChild(f);f=0;for(b=g[d].length;f<b;f++)if(m=i=1,j[d][f]===k){a.appendChild(g[d][f].cell);for(j[d][f]=1;g[d+i]!==k&&g[d][f].cell==g[d+i][f].cell;)j[d+i][f]=1,i++;for(;g[d][f+m]!==k&&g[d][f].cell==g[d][f+m].cell;){for(c=0;c<i;c++)j[d+c][f+m]=1;m++}h(g[d][f].cell).attr("rowspan",i).attr("colspan",m)}}}}function P(a){var b=r(a,"aoPreDrawCallback","preDraw",[a]);if(-1!==h.inArray(!1,b))C(a,!1);else{var b=[],c=0,d=a.asStripeClasses,e=
29
- d.length,f=a.oLanguage,g=a.iInitDisplayStart,j="ssp"==y(a),i=a.aiDisplay;a.bDrawing=!0;g!==k&&-1!==g&&(a._iDisplayStart=j?g:g>=a.fnRecordsDisplay()?0:g,a.iInitDisplayStart=-1);var g=a._iDisplayStart,m=a.fnDisplayEnd();if(a.bDeferLoading)a.bDeferLoading=!1,a.iDraw++,C(a,!1);else if(j){if(!a.bDestroying&&!mb(a))return}else a.iDraw++;if(0!==i.length){f=j?a.aoData.length:m;for(j=j?0:g;j<f;j++){var l=i[j],q=a.aoData[l];null===q.nTr&&Ha(a,l);var t=q.nTr;if(0!==e){var G=d[c%e];q._sRowStripe!=G&&(h(t).removeClass(q._sRowStripe).addClass(G),
30
- q._sRowStripe=G)}r(a,"aoRowCallback",null,[t,q._aData,c,j,l]);b.push(t);c++}}else c=f.sZeroRecords,1==a.iDraw&&"ajax"==y(a)?c=f.sLoadingRecords:f.sEmptyTable&&0===a.fnRecordsTotal()&&(c=f.sEmptyTable),b[0]=h("<tr/>",{"class":e?d[0]:""}).append(h("<td />",{valign:"top",colSpan:V(a),"class":a.oClasses.sRowEmpty}).html(c))[0];r(a,"aoHeaderCallback","header",[h(a.nTHead).children("tr")[0],Ka(a),g,m,i]);r(a,"aoFooterCallback","footer",[h(a.nTFoot).children("tr")[0],Ka(a),g,m,i]);d=h(a.nTBody);d.children().detach();
31
- d.append(h(b));r(a,"aoDrawCallback","draw",[a]);a.bSorted=!1;a.bFiltered=!1;a.bDrawing=!1}}function T(a,b){var c=a.oFeatures,d=c.bFilter;c.bSort&&nb(a);d?ga(a,a.oPreviousSearch):a.aiDisplay=a.aiDisplayMaster.slice();!0!==b&&(a._iDisplayStart=0);a._drawHold=b;P(a);a._drawHold=!1}function ob(a){var b=a.oClasses,c=h(a.nTable),c=h("<div/>").insertBefore(c),d=a.oFeatures,e=h("<div/>",{id:a.sTableId+"_wrapper","class":b.sWrapper+(a.nTFoot?"":" "+b.sNoFooter)});a.nHolding=c[0];a.nTableWrapper=e[0];a.nTableReinsertBefore=
32
- a.nTable.nextSibling;for(var f=a.sDom.split(""),g,j,i,m,l,q,k=0;k<f.length;k++){g=null;j=f[k];if("<"==j){i=h("<div/>")[0];m=f[k+1];if("'"==m||'"'==m){l="";for(q=2;f[k+q]!=m;)l+=f[k+q],q++;"H"==l?l=b.sJUIHeader:"F"==l&&(l=b.sJUIFooter);-1!=l.indexOf(".")?(m=l.split("."),i.id=m[0].substr(1,m[0].length-1),i.className=m[1]):"#"==l.charAt(0)?i.id=l.substr(1,l.length-1):i.className=l;k+=q}e.append(i);e=h(i)}else if(">"==j)e=e.parent();else if("l"==j&&d.bPaginate&&d.bLengthChange)g=pb(a);else if("f"==j&&
33
- d.bFilter)g=qb(a);else if("r"==j&&d.bProcessing)g=rb(a);else if("t"==j)g=sb(a);else if("i"==j&&d.bInfo)g=tb(a);else if("p"==j&&d.bPaginate)g=ub(a);else if(0!==n.ext.feature.length){i=n.ext.feature;q=0;for(m=i.length;q<m;q++)if(j==i[q].cFeature){g=i[q].fnInit(a);break}}g&&(i=a.aanFeatures,i[j]||(i[j]=[]),i[j].push(g),e.append(g))}c.replaceWith(e);a.nHolding=null}function ea(a,b){var c=h(b).children("tr"),d,e,f,g,j,i,m,l,q,k;a.splice(0,a.length);f=0;for(i=c.length;f<i;f++)a.push([]);f=0;for(i=c.length;f<
34
- i;f++){d=c[f];for(e=d.firstChild;e;){if("TD"==e.nodeName.toUpperCase()||"TH"==e.nodeName.toUpperCase()){l=1*e.getAttribute("colspan");q=1*e.getAttribute("rowspan");l=!l||0===l||1===l?1:l;q=!q||0===q||1===q?1:q;g=0;for(j=a[f];j[g];)g++;m=g;k=1===l?!0:!1;for(j=0;j<l;j++)for(g=0;g<q;g++)a[f+g][m+j]={cell:e,unique:k},a[f+g].nTr=d}e=e.nextSibling}}}function ra(a,b,c){var d=[];c||(c=a.aoHeader,b&&(c=[],ea(c,b)));for(var b=0,e=c.length;b<e;b++)for(var f=0,g=c[b].length;f<g;f++)if(c[b][f].unique&&(!d[f]||
35
- !a.bSortCellsTop))d[f]=c[b][f].cell;return d}function sa(a,b,c){r(a,"aoServerParams","serverParams",[b]);if(b&&h.isArray(b)){var d={},e=/(.*?)\[\]$/;h.each(b,function(a,b){var c=b.name.match(e);c?(c=c[0],d[c]||(d[c]=[]),d[c].push(b.value)):d[b.name]=b.value});b=d}var f,g=a.ajax,j=a.oInstance,i=function(b){r(a,null,"xhr",[a,b,a.jqXHR]);c(b)};if(h.isPlainObject(g)&&g.data){f=g.data;var m="function"===typeof f?f(b,a):f,b="function"===typeof f&&m?m:h.extend(!0,b,m);delete g.data}m={data:b,success:function(b){var c=
36
- b.error||b.sError;c&&K(a,0,c);a.json=b;i(b)},dataType:"json",cache:!1,type:a.sServerMethod,error:function(b,c){var d=r(a,null,"xhr",[a,null,a.jqXHR]);-1===h.inArray(!0,d)&&("parsererror"==c?K(a,0,"Invalid JSON response",1):4===b.readyState&&K(a,0,"Ajax error",7));C(a,!1)}};a.oAjaxData=b;r(a,null,"preXhr",[a,b]);a.fnServerData?a.fnServerData.call(j,a.sAjaxSource,h.map(b,function(a,b){return{name:b,value:a}}),i,a):a.sAjaxSource||"string"===typeof g?a.jqXHR=h.ajax(h.extend(m,{url:g||a.sAjaxSource})):
37
- "function"===typeof g?a.jqXHR=g.call(j,b,i,a):(a.jqXHR=h.ajax(h.extend(m,g)),g.data=f)}function mb(a){return a.bAjaxDataGet?(a.iDraw++,C(a,!0),sa(a,vb(a),function(b){wb(a,b)}),!1):!0}function vb(a){var b=a.aoColumns,c=b.length,d=a.oFeatures,e=a.oPreviousSearch,f=a.aoPreSearchCols,g,j=[],i,m,l,k=X(a);g=a._iDisplayStart;i=!1!==d.bPaginate?a._iDisplayLength:-1;var t=function(a,b){j.push({name:a,value:b})};t("sEcho",a.iDraw);t("iColumns",c);t("sColumns",D(b,"sName").join(","));t("iDisplayStart",g);t("iDisplayLength",
38
- i);var G={draw:a.iDraw,columns:[],order:[],start:g,length:i,search:{value:e.sSearch,regex:e.bRegex}};for(g=0;g<c;g++)m=b[g],l=f[g],i="function"==typeof m.mData?"function":m.mData,G.columns.push({data:i,name:m.sName,searchable:m.bSearchable,orderable:m.bSortable,search:{value:l.sSearch,regex:l.bRegex}}),t("mDataProp_"+g,i),d.bFilter&&(t("sSearch_"+g,l.sSearch),t("bRegex_"+g,l.bRegex),t("bSearchable_"+g,m.bSearchable)),d.bSort&&t("bSortable_"+g,m.bSortable);d.bFilter&&(t("sSearch",e.sSearch),t("bRegex",
39
- e.bRegex));d.bSort&&(h.each(k,function(a,b){G.order.push({column:b.col,dir:b.dir});t("iSortCol_"+a,b.col);t("sSortDir_"+a,b.dir)}),t("iSortingCols",k.length));b=n.ext.legacy.ajax;return null===b?a.sAjaxSource?j:G:b?j:G}function wb(a,b){var c=ta(a,b),d=b.sEcho!==k?b.sEcho:b.draw,e=b.iTotalRecords!==k?b.iTotalRecords:b.recordsTotal,f=b.iTotalDisplayRecords!==k?b.iTotalDisplayRecords:b.recordsFiltered;if(d){if(1*d<a.iDraw)return;a.iDraw=1*d}oa(a);a._iRecordsTotal=parseInt(e,10);a._iRecordsDisplay=parseInt(f,
40
- 10);d=0;for(e=c.length;d<e;d++)O(a,c[d]);a.aiDisplay=a.aiDisplayMaster.slice();a.bAjaxDataGet=!1;P(a);a._bInitComplete||ua(a,b);a.bAjaxDataGet=!0;C(a,!1)}function ta(a,b){var c=h.isPlainObject(a.ajax)&&a.ajax.dataSrc!==k?a.ajax.dataSrc:a.sAjaxDataProp;return"data"===c?b.aaData||b[c]:""!==c?S(c)(b):b}function qb(a){var b=a.oClasses,c=a.sTableId,d=a.oLanguage,e=a.oPreviousSearch,f=a.aanFeatures,g='<input type="search" class="'+b.sFilterInput+'"/>',j=d.sSearch,j=j.match(/_INPUT_/)?j.replace("_INPUT_",
41
- g):j+g,b=h("<div/>",{id:!f.f?c+"_filter":null,"class":b.sFilter}).append(h("<label/>").append(j)),f=function(){var b=!this.value?"":this.value;b!=e.sSearch&&(ga(a,{sSearch:b,bRegex:e.bRegex,bSmart:e.bSmart,bCaseInsensitive:e.bCaseInsensitive}),a._iDisplayStart=0,P(a))},g=null!==a.searchDelay?a.searchDelay:"ssp"===y(a)?400:0,i=h("input",b).val(e.sSearch).attr("placeholder",d.sSearchPlaceholder).on("keyup.DT search.DT input.DT paste.DT cut.DT",g?Oa(f,g):f).on("keypress.DT",function(a){if(13==a.keyCode)return!1}).attr("aria-controls",
42
- c);h(a.nTable).on("search.dt.DT",function(b,c){if(a===c)try{i[0]!==H.activeElement&&i.val(e.sSearch)}catch(d){}});return b[0]}function ga(a,b,c){var d=a.oPreviousSearch,e=a.aoPreSearchCols,f=function(a){d.sSearch=a.sSearch;d.bRegex=a.bRegex;d.bSmart=a.bSmart;d.bCaseInsensitive=a.bCaseInsensitive};Ga(a);if("ssp"!=y(a)){xb(a,b.sSearch,c,b.bEscapeRegex!==k?!b.bEscapeRegex:b.bRegex,b.bSmart,b.bCaseInsensitive);f(b);for(b=0;b<e.length;b++)yb(a,e[b].sSearch,b,e[b].bEscapeRegex!==k?!e[b].bEscapeRegex:e[b].bRegex,
43
- e[b].bSmart,e[b].bCaseInsensitive);zb(a)}else f(b);a.bFiltered=!0;r(a,null,"search",[a])}function zb(a){for(var b=n.ext.search,c=a.aiDisplay,d,e,f=0,g=b.length;f<g;f++){for(var j=[],i=0,m=c.length;i<m;i++)e=c[i],d=a.aoData[e],b[f](a,d._aFilterData,e,d._aData,i)&&j.push(e);c.length=0;h.merge(c,j)}}function yb(a,b,c,d,e,f){if(""!==b){for(var g=[],j=a.aiDisplay,d=Pa(b,d,e,f),e=0;e<j.length;e++)b=a.aoData[j[e]]._aFilterData[c],d.test(b)&&g.push(j[e]);a.aiDisplay=g}}function xb(a,b,c,d,e,f){var d=Pa(b,
44
- d,e,f),f=a.oPreviousSearch.sSearch,g=a.aiDisplayMaster,j,e=[];0!==n.ext.search.length&&(c=!0);j=Ab(a);if(0>=b.length)a.aiDisplay=g.slice();else{if(j||c||f.length>b.length||0!==b.indexOf(f)||a.bSorted)a.aiDisplay=g.slice();b=a.aiDisplay;for(c=0;c<b.length;c++)d.test(a.aoData[b[c]]._sFilterRow)&&e.push(b[c]);a.aiDisplay=e}}function Pa(a,b,c,d){a=b?a:Qa(a);c&&(a="^(?=.*?"+h.map(a.match(/"[^"]+"|[^ ]+/g)||[""],function(a){if('"'===a.charAt(0))var b=a.match(/^"(.*)"$/),a=b?b[1]:a;return a.replace('"',
45
- "")}).join(")(?=.*?")+").*$");return RegExp(a,d?"i":"")}function Ab(a){var b=a.aoColumns,c,d,e,f,g,j,i,h,l=n.ext.type.search;c=!1;d=0;for(f=a.aoData.length;d<f;d++)if(h=a.aoData[d],!h._aFilterData){j=[];e=0;for(g=b.length;e<g;e++)c=b[e],c.bSearchable?(i=B(a,d,e,"filter"),l[c.sType]&&(i=l[c.sType](i)),null===i&&(i=""),"string"!==typeof i&&i.toString&&(i=i.toString())):i="",i.indexOf&&-1!==i.indexOf("&")&&(va.innerHTML=i,i=Wb?va.textContent:va.innerText),i.replace&&(i=i.replace(/[\r\n]/g,"")),j.push(i);
46
- h._aFilterData=j;h._sFilterRow=j.join(" ");c=!0}return c}function Bb(a){return{search:a.sSearch,smart:a.bSmart,regex:a.bRegex,caseInsensitive:a.bCaseInsensitive}}function Cb(a){return{sSearch:a.search,bSmart:a.smart,bRegex:a.regex,bCaseInsensitive:a.caseInsensitive}}function tb(a){var b=a.sTableId,c=a.aanFeatures.i,d=h("<div/>",{"class":a.oClasses.sInfo,id:!c?b+"_info":null});c||(a.aoDrawCallback.push({fn:Db,sName:"information"}),d.attr("role","status").attr("aria-live","polite"),h(a.nTable).attr("aria-describedby",
47
- b+"_info"));return d[0]}function Db(a){var b=a.aanFeatures.i;if(0!==b.length){var c=a.oLanguage,d=a._iDisplayStart+1,e=a.fnDisplayEnd(),f=a.fnRecordsTotal(),g=a.fnRecordsDisplay(),j=g?c.sInfo:c.sInfoEmpty;g!==f&&(j+=" "+c.sInfoFiltered);j+=c.sInfoPostFix;j=Eb(a,j);c=c.fnInfoCallback;null!==c&&(j=c.call(a.oInstance,a,d,e,f,g,j));h(b).html(j)}}function Eb(a,b){var c=a.fnFormatNumber,d=a._iDisplayStart+1,e=a._iDisplayLength,f=a.fnRecordsDisplay(),g=-1===e;return b.replace(/_START_/g,c.call(a,d)).replace(/_END_/g,
48
- c.call(a,a.fnDisplayEnd())).replace(/_MAX_/g,c.call(a,a.fnRecordsTotal())).replace(/_TOTAL_/g,c.call(a,f)).replace(/_PAGE_/g,c.call(a,g?1:Math.ceil(d/e))).replace(/_PAGES_/g,c.call(a,g?1:Math.ceil(f/e)))}function ha(a){var b,c,d=a.iInitDisplayStart,e=a.aoColumns,f;c=a.oFeatures;var g=a.bDeferLoading;if(a.bInitialised){ob(a);lb(a);fa(a,a.aoHeader);fa(a,a.aoFooter);C(a,!0);c.bAutoWidth&&Fa(a);b=0;for(c=e.length;b<c;b++)f=e[b],f.sWidth&&(f.nTh.style.width=v(f.sWidth));r(a,null,"preInit",[a]);T(a);e=
49
- y(a);if("ssp"!=e||g)"ajax"==e?sa(a,[],function(c){var f=ta(a,c);for(b=0;b<f.length;b++)O(a,f[b]);a.iInitDisplayStart=d;T(a);C(a,!1);ua(a,c)},a):(C(a,!1),ua(a))}else setTimeout(function(){ha(a)},200)}function ua(a,b){a._bInitComplete=!0;(b||a.oInit.aaData)&&$(a);r(a,null,"plugin-init",[a,b]);r(a,"aoInitComplete","init",[a,b])}function Ra(a,b){var c=parseInt(b,10);a._iDisplayLength=c;Sa(a);r(a,null,"length",[a,c])}function pb(a){for(var b=a.oClasses,c=a.sTableId,d=a.aLengthMenu,e=h.isArray(d[0]),f=
50
- e?d[0]:d,d=e?d[1]:d,e=h("<select/>",{name:c+"_length","aria-controls":c,"class":b.sLengthSelect}),g=0,j=f.length;g<j;g++)e[0][g]=new Option("number"===typeof d[g]?a.fnFormatNumber(d[g]):d[g],f[g]);var i=h("<div><label/></div>").addClass(b.sLength);a.aanFeatures.l||(i[0].id=c+"_length");i.children().append(a.oLanguage.sLengthMenu.replace("_MENU_",e[0].outerHTML));h("select",i).val(a._iDisplayLength).on("change.DT",function(){Ra(a,h(this).val());P(a)});h(a.nTable).on("length.dt.DT",function(b,c,d){a===
51
- c&&h("select",i).val(d)});return i[0]}function ub(a){var b=a.sPaginationType,c=n.ext.pager[b],d="function"===typeof c,e=function(a){P(a)},b=h("<div/>").addClass(a.oClasses.sPaging+b)[0],f=a.aanFeatures;d||c.fnInit(a,b,e);f.p||(b.id=a.sTableId+"_paginate",a.aoDrawCallback.push({fn:function(a){if(d){var b=a._iDisplayStart,i=a._iDisplayLength,h=a.fnRecordsDisplay(),l=-1===i,b=l?0:Math.ceil(b/i),i=l?1:Math.ceil(h/i),h=c(b,i),k,l=0;for(k=f.p.length;l<k;l++)Na(a,"pageButton")(a,f.p[l],l,h,b,i)}else c.fnUpdate(a,
52
- e)},sName:"pagination"}));return b}function Ta(a,b,c){var d=a._iDisplayStart,e=a._iDisplayLength,f=a.fnRecordsDisplay();0===f||-1===e?d=0:"number"===typeof b?(d=b*e,d>f&&(d=0)):"first"==b?d=0:"previous"==b?(d=0<=e?d-e:0,0>d&&(d=0)):"next"==b?d+e<f&&(d+=e):"last"==b?d=Math.floor((f-1)/e)*e:K(a,0,"Unknown paging action: "+b,5);b=a._iDisplayStart!==d;a._iDisplayStart=d;b&&(r(a,null,"page",[a]),c&&P(a));return b}function rb(a){return h("<div/>",{id:!a.aanFeatures.r?a.sTableId+"_processing":null,"class":a.oClasses.sProcessing}).html(a.oLanguage.sProcessing).insertBefore(a.nTable)[0]}
53
- function C(a,b){a.oFeatures.bProcessing&&h(a.aanFeatures.r).css("display",b?"block":"none");r(a,null,"processing",[a,b])}function sb(a){var b=h(a.nTable);b.attr("role","grid");var c=a.oScroll;if(""===c.sX&&""===c.sY)return a.nTable;var d=c.sX,e=c.sY,f=a.oClasses,g=b.children("caption"),j=g.length?g[0]._captionSide:null,i=h(b[0].cloneNode(!1)),m=h(b[0].cloneNode(!1)),l=b.children("tfoot");l.length||(l=null);i=h("<div/>",{"class":f.sScrollWrapper}).append(h("<div/>",{"class":f.sScrollHead}).css({overflow:"hidden",
54
- position:"relative",border:0,width:d?!d?null:v(d):"100%"}).append(h("<div/>",{"class":f.sScrollHeadInner}).css({"box-sizing":"content-box",width:c.sXInner||"100%"}).append(i.removeAttr("id").css("margin-left",0).append("top"===j?g:null).append(b.children("thead"))))).append(h("<div/>",{"class":f.sScrollBody}).css({position:"relative",overflow:"auto",width:!d?null:v(d)}).append(b));l&&i.append(h("<div/>",{"class":f.sScrollFoot}).css({overflow:"hidden",border:0,width:d?!d?null:v(d):"100%"}).append(h("<div/>",
55
- {"class":f.sScrollFootInner}).append(m.removeAttr("id").css("margin-left",0).append("bottom"===j?g:null).append(b.children("tfoot")))));var b=i.children(),k=b[0],f=b[1],t=l?b[2]:null;if(d)h(f).on("scroll.DT",function(){var a=this.scrollLeft;k.scrollLeft=a;l&&(t.scrollLeft=a)});h(f).css(e&&c.bCollapse?"max-height":"height",e);a.nScrollHead=k;a.nScrollBody=f;a.nScrollFoot=t;a.aoDrawCallback.push({fn:la,sName:"scrolling"});return i[0]}function la(a){var b=a.oScroll,c=b.sX,d=b.sXInner,e=b.sY,b=b.iBarWidth,
56
- f=h(a.nScrollHead),g=f[0].style,j=f.children("div"),i=j[0].style,m=j.children("table"),j=a.nScrollBody,l=h(j),q=j.style,t=h(a.nScrollFoot).children("div"),n=t.children("table"),o=h(a.nTHead),p=h(a.nTable),s=p[0],r=s.style,u=a.nTFoot?h(a.nTFoot):null,x=a.oBrowser,U=x.bScrollOversize,Xb=D(a.aoColumns,"nTh"),Q,L,R,w,Ua=[],y=[],z=[],A=[],B,C=function(a){a=a.style;a.paddingTop="0";a.paddingBottom="0";a.borderTopWidth="0";a.borderBottomWidth="0";a.height=0};L=j.scrollHeight>j.clientHeight;if(a.scrollBarVis!==
57
- L&&a.scrollBarVis!==k)a.scrollBarVis=L,$(a);else{a.scrollBarVis=L;p.children("thead, tfoot").remove();u&&(R=u.clone().prependTo(p),Q=u.find("tr"),R=R.find("tr"));w=o.clone().prependTo(p);o=o.find("tr");L=w.find("tr");w.find("th, td").removeAttr("tabindex");c||(q.width="100%",f[0].style.width="100%");h.each(ra(a,w),function(b,c){B=aa(a,b);c.style.width=a.aoColumns[B].sWidth});u&&I(function(a){a.style.width=""},R);f=p.outerWidth();if(""===c){r.width="100%";if(U&&(p.find("tbody").height()>j.offsetHeight||
58
- "scroll"==l.css("overflow-y")))r.width=v(p.outerWidth()-b);f=p.outerWidth()}else""!==d&&(r.width=v(d),f=p.outerWidth());I(C,L);I(function(a){z.push(a.innerHTML);Ua.push(v(h(a).css("width")))},L);I(function(a,b){if(h.inArray(a,Xb)!==-1)a.style.width=Ua[b]},o);h(L).height(0);u&&(I(C,R),I(function(a){A.push(a.innerHTML);y.push(v(h(a).css("width")))},R),I(function(a,b){a.style.width=y[b]},Q),h(R).height(0));I(function(a,b){a.innerHTML='<div class="dataTables_sizing">'+z[b]+"</div>";a.childNodes[0].style.height=
59
- "0";a.childNodes[0].style.overflow="hidden";a.style.width=Ua[b]},L);u&&I(function(a,b){a.innerHTML='<div class="dataTables_sizing">'+A[b]+"</div>";a.childNodes[0].style.height="0";a.childNodes[0].style.overflow="hidden";a.style.width=y[b]},R);if(p.outerWidth()<f){Q=j.scrollHeight>j.offsetHeight||"scroll"==l.css("overflow-y")?f+b:f;if(U&&(j.scrollHeight>j.offsetHeight||"scroll"==l.css("overflow-y")))r.width=v(Q-b);(""===c||""!==d)&&K(a,1,"Possible column misalignment",6)}else Q="100%";q.width=v(Q);
60
- g.width=v(Q);u&&(a.nScrollFoot.style.width=v(Q));!e&&U&&(q.height=v(s.offsetHeight+b));c=p.outerWidth();m[0].style.width=v(c);i.width=v(c);d=p.height()>j.clientHeight||"scroll"==l.css("overflow-y");e="padding"+(x.bScrollbarLeft?"Left":"Right");i[e]=d?b+"px":"0px";u&&(n[0].style.width=v(c),t[0].style.width=v(c),t[0].style[e]=d?b+"px":"0px");p.children("colgroup").insertBefore(p.children("thead"));l.scroll();if((a.bSorted||a.bFiltered)&&!a._drawHold)j.scrollTop=0}}function I(a,b,c){for(var d=0,e=0,
61
- f=b.length,g,j;e<f;){g=b[e].firstChild;for(j=c?c[e].firstChild:null;g;)1===g.nodeType&&(c?a(g,j,d):a(g,d),d++),g=g.nextSibling,j=c?j.nextSibling:null;e++}}function Fa(a){var b=a.nTable,c=a.aoColumns,d=a.oScroll,e=d.sY,f=d.sX,g=d.sXInner,j=c.length,i=ma(a,"bVisible"),m=h("th",a.nTHead),l=b.getAttribute("width"),k=b.parentNode,t=!1,n,o,p=a.oBrowser,d=p.bScrollOversize;(n=b.style.width)&&-1!==n.indexOf("%")&&(l=n);for(n=0;n<i.length;n++)o=c[i[n]],null!==o.sWidth&&(o.sWidth=Fb(o.sWidthOrig,k),t=!0);if(d||
62
- !t&&!f&&!e&&j==V(a)&&j==m.length)for(n=0;n<j;n++)i=aa(a,n),null!==i&&(c[i].sWidth=v(m.eq(n).width()));else{j=h(b).clone().css("visibility","hidden").removeAttr("id");j.find("tbody tr").remove();var s=h("<tr/>").appendTo(j.find("tbody"));j.find("thead, tfoot").remove();j.append(h(a.nTHead).clone()).append(h(a.nTFoot).clone());j.find("tfoot th, tfoot td").css("width","");m=ra(a,j.find("thead")[0]);for(n=0;n<i.length;n++)o=c[i[n]],m[n].style.width=null!==o.sWidthOrig&&""!==o.sWidthOrig?v(o.sWidthOrig):
63
- "",o.sWidthOrig&&f&&h(m[n]).append(h("<div/>").css({width:o.sWidthOrig,margin:0,padding:0,border:0,height:1}));if(a.aoData.length)for(n=0;n<i.length;n++)t=i[n],o=c[t],h(Gb(a,t)).clone(!1).append(o.sContentPadding).appendTo(s);h("[name]",j).removeAttr("name");o=h("<div/>").css(f||e?{position:"absolute",top:0,left:0,height:1,right:0,overflow:"hidden"}:{}).append(j).appendTo(k);f&&g?j.width(g):f?(j.css("width","auto"),j.removeAttr("width"),j.width()<k.clientWidth&&l&&j.width(k.clientWidth)):e?j.width(k.clientWidth):
64
- l&&j.width(l);for(n=e=0;n<i.length;n++)k=h(m[n]),g=k.outerWidth()-k.width(),k=p.bBounding?Math.ceil(m[n].getBoundingClientRect().width):k.outerWidth(),e+=k,c[i[n]].sWidth=v(k-g);b.style.width=v(e);o.remove()}l&&(b.style.width=v(l));if((l||f)&&!a._reszEvt)b=function(){h(E).on("resize.DT-"+a.sInstance,Oa(function(){$(a)}))},d?setTimeout(b,1E3):b(),a._reszEvt=!0}function Fb(a,b){if(!a)return 0;var c=h("<div/>").css("width",v(a)).appendTo(b||H.body),d=c[0].offsetWidth;c.remove();return d}function Gb(a,
65
- b){var c=Hb(a,b);if(0>c)return null;var d=a.aoData[c];return!d.nTr?h("<td/>").html(B(a,c,b,"display"))[0]:d.anCells[b]}function Hb(a,b){for(var c,d=-1,e=-1,f=0,g=a.aoData.length;f<g;f++)c=B(a,f,b,"display")+"",c=c.replace(Yb,""),c=c.replace(/&nbsp;/g," "),c.length>d&&(d=c.length,e=f);return e}function v(a){return null===a?"0px":"number"==typeof a?0>a?"0px":a+"px":a.match(/\d$/)?a+"px":a}function X(a){var b,c,d=[],e=a.aoColumns,f,g,j,i;b=a.aaSortingFixed;c=h.isPlainObject(b);var m=[];f=function(a){a.length&&
66
- !h.isArray(a[0])?m.push(a):h.merge(m,a)};h.isArray(b)&&f(b);c&&b.pre&&f(b.pre);f(a.aaSorting);c&&b.post&&f(b.post);for(a=0;a<m.length;a++){i=m[a][0];f=e[i].aDataSort;b=0;for(c=f.length;b<c;b++)g=f[b],j=e[g].sType||"string",m[a]._idx===k&&(m[a]._idx=h.inArray(m[a][1],e[g].asSorting)),d.push({src:i,col:g,dir:m[a][1],index:m[a]._idx,type:j,formatter:n.ext.type.order[j+"-pre"]})}return d}function nb(a){var b,c,d=[],e=n.ext.type.order,f=a.aoData,g=0,j,i=a.aiDisplayMaster,h;Ga(a);h=X(a);b=0;for(c=h.length;b<
67
- c;b++)j=h[b],j.formatter&&g++,Ib(a,j.col);if("ssp"!=y(a)&&0!==h.length){b=0;for(c=i.length;b<c;b++)d[i[b]]=b;g===h.length?i.sort(function(a,b){var c,e,g,j,i=h.length,k=f[a]._aSortData,n=f[b]._aSortData;for(g=0;g<i;g++)if(j=h[g],c=k[j.col],e=n[j.col],c=c<e?-1:c>e?1:0,0!==c)return"asc"===j.dir?c:-c;c=d[a];e=d[b];return c<e?-1:c>e?1:0}):i.sort(function(a,b){var c,g,j,i,k=h.length,n=f[a]._aSortData,o=f[b]._aSortData;for(j=0;j<k;j++)if(i=h[j],c=n[i.col],g=o[i.col],i=e[i.type+"-"+i.dir]||e["string-"+i.dir],
68
- c=i(c,g),0!==c)return c;c=d[a];g=d[b];return c<g?-1:c>g?1:0})}a.bSorted=!0}function Jb(a){for(var b,c,d=a.aoColumns,e=X(a),a=a.oLanguage.oAria,f=0,g=d.length;f<g;f++){c=d[f];var j=c.asSorting;b=c.sTitle.replace(/<.*?>/g,"");var i=c.nTh;i.removeAttribute("aria-sort");c.bSortable&&(0<e.length&&e[0].col==f?(i.setAttribute("aria-sort","asc"==e[0].dir?"ascending":"descending"),c=j[e[0].index+1]||j[0]):c=j[0],b+="asc"===c?a.sSortAscending:a.sSortDescending);i.setAttribute("aria-label",b)}}function Va(a,
69
- b,c,d){var e=a.aaSorting,f=a.aoColumns[b].asSorting,g=function(a,b){var c=a._idx;c===k&&(c=h.inArray(a[1],f));return c+1<f.length?c+1:b?null:0};"number"===typeof e[0]&&(e=a.aaSorting=[e]);c&&a.oFeatures.bSortMulti?(c=h.inArray(b,D(e,"0")),-1!==c?(b=g(e[c],!0),null===b&&1===e.length&&(b=0),null===b?e.splice(c,1):(e[c][1]=f[b],e[c]._idx=b)):(e.push([b,f[0],0]),e[e.length-1]._idx=0)):e.length&&e[0][0]==b?(b=g(e[0]),e.length=1,e[0][1]=f[b],e[0]._idx=b):(e.length=0,e.push([b,f[0]]),e[0]._idx=0);T(a);"function"==
70
- typeof d&&d(a)}function Ma(a,b,c,d){var e=a.aoColumns[c];Wa(b,{},function(b){!1!==e.bSortable&&(a.oFeatures.bProcessing?(C(a,!0),setTimeout(function(){Va(a,c,b.shiftKey,d);"ssp"!==y(a)&&C(a,!1)},0)):Va(a,c,b.shiftKey,d))})}function wa(a){var b=a.aLastSort,c=a.oClasses.sSortColumn,d=X(a),e=a.oFeatures,f,g;if(e.bSort&&e.bSortClasses){e=0;for(f=b.length;e<f;e++)g=b[e].src,h(D(a.aoData,"anCells",g)).removeClass(c+(2>e?e+1:3));e=0;for(f=d.length;e<f;e++)g=d[e].src,h(D(a.aoData,"anCells",g)).addClass(c+
71
- (2>e?e+1:3))}a.aLastSort=d}function Ib(a,b){var c=a.aoColumns[b],d=n.ext.order[c.sSortDataType],e;d&&(e=d.call(a.oInstance,a,b,ba(a,b)));for(var f,g=n.ext.type.order[c.sType+"-pre"],j=0,i=a.aoData.length;j<i;j++)if(c=a.aoData[j],c._aSortData||(c._aSortData=[]),!c._aSortData[b]||d)f=d?e[j]:B(a,j,b,"sort"),c._aSortData[b]=g?g(f):f}function xa(a){if(a.oFeatures.bStateSave&&!a.bDestroying){var b={time:+new Date,start:a._iDisplayStart,length:a._iDisplayLength,order:h.extend(!0,[],a.aaSorting),search:Bb(a.oPreviousSearch),
72
- columns:h.map(a.aoColumns,function(b,d){return{visible:b.bVisible,search:Bb(a.aoPreSearchCols[d])}})};r(a,"aoStateSaveParams","stateSaveParams",[a,b]);a.oSavedState=b;a.fnStateSaveCallback.call(a.oInstance,a,b)}}function Kb(a,b,c){var d,e,f=a.aoColumns,b=function(b){if(b&&b.time){var g=r(a,"aoStateLoadParams","stateLoadParams",[a,b]);if(-1===h.inArray(!1,g)&&(g=a.iStateDuration,!(0<g&&b.time<+new Date-1E3*g)&&!(b.columns&&f.length!==b.columns.length))){a.oLoadedState=h.extend(!0,{},b);b.start!==k&&
73
- (a._iDisplayStart=b.start,a.iInitDisplayStart=b.start);b.length!==k&&(a._iDisplayLength=b.length);b.order!==k&&(a.aaSorting=[],h.each(b.order,function(b,c){a.aaSorting.push(c[0]>=f.length?[0,c[1]]:c)}));b.search!==k&&h.extend(a.oPreviousSearch,Cb(b.search));if(b.columns){d=0;for(e=b.columns.length;d<e;d++)g=b.columns[d],g.visible!==k&&(f[d].bVisible=g.visible),g.search!==k&&h.extend(a.aoPreSearchCols[d],Cb(g.search))}r(a,"aoStateLoaded","stateLoaded",[a,b])}}c()};if(a.oFeatures.bStateSave){var g=
74
- a.fnStateLoadCallback.call(a.oInstance,a,b);g!==k&&b(g)}else c()}function ya(a){var b=n.settings,a=h.inArray(a,D(b,"nTable"));return-1!==a?b[a]:null}function K(a,b,c,d){c="DataTables warning: "+(a?"table id="+a.sTableId+" - ":"")+c;d&&(c+=". For more information about this error, please see http://datatables.net/tn/"+d);if(b)E.console&&console.log&&console.log(c);else if(b=n.ext,b=b.sErrMode||b.errMode,a&&r(a,null,"error",[a,d,c]),"alert"==b)alert(c);else{if("throw"==b)throw Error(c);"function"==
75
- typeof b&&b(a,d,c)}}function F(a,b,c,d){h.isArray(c)?h.each(c,function(c,d){h.isArray(d)?F(a,b,d[0],d[1]):F(a,b,d)}):(d===k&&(d=c),b[c]!==k&&(a[d]=b[c]))}function Xa(a,b,c){var d,e;for(e in b)b.hasOwnProperty(e)&&(d=b[e],h.isPlainObject(d)?(h.isPlainObject(a[e])||(a[e]={}),h.extend(!0,a[e],d)):a[e]=c&&"data"!==e&&"aaData"!==e&&h.isArray(d)?d.slice():d);return a}function Wa(a,b,c){h(a).on("click.DT",b,function(b){h(a).blur();c(b)}).on("keypress.DT",b,function(a){13===a.which&&(a.preventDefault(),c(a))}).on("selectstart.DT",
76
- function(){return!1})}function z(a,b,c,d){c&&a[b].push({fn:c,sName:d})}function r(a,b,c,d){var e=[];b&&(e=h.map(a[b].slice().reverse(),function(b){return b.fn.apply(a.oInstance,d)}));null!==c&&(b=h.Event(c+".dt"),h(a.nTable).trigger(b,d),e.push(b.result));return e}function Sa(a){var b=a._iDisplayStart,c=a.fnDisplayEnd(),d=a._iDisplayLength;b>=c&&(b=c-d);b-=b%d;if(-1===d||0>b)b=0;a._iDisplayStart=b}function Na(a,b){var c=a.renderer,d=n.ext.renderer[b];return h.isPlainObject(c)&&c[b]?d[c[b]]||d._:"string"===
77
- typeof c?d[c]||d._:d._}function y(a){return a.oFeatures.bServerSide?"ssp":a.ajax||a.sAjaxSource?"ajax":"dom"}function ia(a,b){var c=[],c=Lb.numbers_length,d=Math.floor(c/2);b<=c?c=Y(0,b):a<=d?(c=Y(0,c-2),c.push("ellipsis"),c.push(b-1)):(a>=b-1-d?c=Y(b-(c-2),b):(c=Y(a-d+2,a+d-1),c.push("ellipsis"),c.push(b-1)),c.splice(0,0,"ellipsis"),c.splice(0,0,0));c.DT_el="span";return c}function Da(a){h.each({num:function(b){return za(b,a)},"num-fmt":function(b){return za(b,a,Ya)},"html-num":function(b){return za(b,
78
- a,Aa)},"html-num-fmt":function(b){return za(b,a,Aa,Ya)}},function(b,c){x.type.order[b+a+"-pre"]=c;b.match(/^html\-/)&&(x.type.search[b+a]=x.type.search.html)})}function Mb(a){return function(){var b=[ya(this[n.ext.iApiIndex])].concat(Array.prototype.slice.call(arguments));return n.ext.internal[a].apply(this,b)}}var n=function(a){this.$=function(a,b){return this.api(!0).$(a,b)};this._=function(a,b){return this.api(!0).rows(a,b).data()};this.api=function(a){return a?new s(ya(this[x.iApiIndex])):new s(this)};
79
- this.fnAddData=function(a,b){var c=this.api(!0),d=h.isArray(a)&&(h.isArray(a[0])||h.isPlainObject(a[0]))?c.rows.add(a):c.row.add(a);(b===k||b)&&c.draw();return d.flatten().toArray()};this.fnAdjustColumnSizing=function(a){var b=this.api(!0).columns.adjust(),c=b.settings()[0],d=c.oScroll;a===k||a?b.draw(!1):(""!==d.sX||""!==d.sY)&&la(c)};this.fnClearTable=function(a){var b=this.api(!0).clear();(a===k||a)&&b.draw()};this.fnClose=function(a){this.api(!0).row(a).child.hide()};this.fnDeleteRow=function(a,
80
- b,c){var d=this.api(!0),a=d.rows(a),e=a.settings()[0],h=e.aoData[a[0][0]];a.remove();b&&b.call(this,e,h);(c===k||c)&&d.draw();return h};this.fnDestroy=function(a){this.api(!0).destroy(a)};this.fnDraw=function(a){this.api(!0).draw(a)};this.fnFilter=function(a,b,c,d,e,h){e=this.api(!0);null===b||b===k?e.search(a,c,d,h):e.column(b).search(a,c,d,h);e.draw()};this.fnGetData=function(a,b){var c=this.api(!0);if(a!==k){var d=a.nodeName?a.nodeName.toLowerCase():"";return b!==k||"td"==d||"th"==d?c.cell(a,b).data():
81
- c.row(a).data()||null}return c.data().toArray()};this.fnGetNodes=function(a){var b=this.api(!0);return a!==k?b.row(a).node():b.rows().nodes().flatten().toArray()};this.fnGetPosition=function(a){var b=this.api(!0),c=a.nodeName.toUpperCase();return"TR"==c?b.row(a).index():"TD"==c||"TH"==c?(a=b.cell(a).index(),[a.row,a.columnVisible,a.column]):null};this.fnIsOpen=function(a){return this.api(!0).row(a).child.isShown()};this.fnOpen=function(a,b,c){return this.api(!0).row(a).child(b,c).show().child()[0]};
82
- this.fnPageChange=function(a,b){var c=this.api(!0).page(a);(b===k||b)&&c.draw(!1)};this.fnSetColumnVis=function(a,b,c){a=this.api(!0).column(a).visible(b);(c===k||c)&&a.columns.adjust().draw()};this.fnSettings=function(){return ya(this[x.iApiIndex])};this.fnSort=function(a){this.api(!0).order(a).draw()};this.fnSortListener=function(a,b,c){this.api(!0).order.listener(a,b,c)};this.fnUpdate=function(a,b,c,d,e){var h=this.api(!0);c===k||null===c?h.row(b).data(a):h.cell(b,c).data(a);(e===k||e)&&h.columns.adjust();
83
- (d===k||d)&&h.draw();return 0};this.fnVersionCheck=x.fnVersionCheck;var b=this,c=a===k,d=this.length;c&&(a={});this.oApi=this.internal=x.internal;for(var e in n.ext.internal)e&&(this[e]=Mb(e));this.each(function(){var e={},g=1<d?Xa(e,a,!0):a,j=0,i,e=this.getAttribute("id"),m=!1,l=n.defaults,q=h(this);if("table"!=this.nodeName.toLowerCase())K(null,0,"Non-table node initialisation ("+this.nodeName+")",2);else{fb(l);gb(l.column);J(l,l,!0);J(l.column,l.column,!0);J(l,h.extend(g,q.data()));var t=n.settings,
84
- j=0;for(i=t.length;j<i;j++){var o=t[j];if(o.nTable==this||o.nTHead&&o.nTHead.parentNode==this||o.nTFoot&&o.nTFoot.parentNode==this){var s=g.bRetrieve!==k?g.bRetrieve:l.bRetrieve;if(c||s)return o.oInstance;if(g.bDestroy!==k?g.bDestroy:l.bDestroy){o.oInstance.fnDestroy();break}else{K(o,0,"Cannot reinitialise DataTable",3);return}}if(o.sTableId==this.id){t.splice(j,1);break}}if(null===e||""===e)this.id=e="DataTables_Table_"+n.ext._unique++;var p=h.extend(!0,{},n.models.oSettings,{sDestroyWidth:q[0].style.width,
85
- sInstance:e,sTableId:e});p.nTable=this;p.oApi=b.internal;p.oInit=g;t.push(p);p.oInstance=1===b.length?b:q.dataTable();fb(g);Ca(g.oLanguage);g.aLengthMenu&&!g.iDisplayLength&&(g.iDisplayLength=h.isArray(g.aLengthMenu[0])?g.aLengthMenu[0][0]:g.aLengthMenu[0]);g=Xa(h.extend(!0,{},l),g);F(p.oFeatures,g,"bPaginate bLengthChange bFilter bSort bSortMulti bInfo bProcessing bAutoWidth bSortClasses bServerSide bDeferRender".split(" "));F(p,g,["asStripeClasses","ajax","fnServerData","fnFormatNumber","sServerMethod",
86
- "aaSorting","aaSortingFixed","aLengthMenu","sPaginationType","sAjaxSource","sAjaxDataProp","iStateDuration","sDom","bSortCellsTop","iTabIndex","fnStateLoadCallback","fnStateSaveCallback","renderer","searchDelay","rowId",["iCookieDuration","iStateDuration"],["oSearch","oPreviousSearch"],["aoSearchCols","aoPreSearchCols"],["iDisplayLength","_iDisplayLength"]]);F(p.oScroll,g,[["sScrollX","sX"],["sScrollXInner","sXInner"],["sScrollY","sY"],["bScrollCollapse","bCollapse"]]);F(p.oLanguage,g,"fnInfoCallback");
87
- z(p,"aoDrawCallback",g.fnDrawCallback,"user");z(p,"aoServerParams",g.fnServerParams,"user");z(p,"aoStateSaveParams",g.fnStateSaveParams,"user");z(p,"aoStateLoadParams",g.fnStateLoadParams,"user");z(p,"aoStateLoaded",g.fnStateLoaded,"user");z(p,"aoRowCallback",g.fnRowCallback,"user");z(p,"aoRowCreatedCallback",g.fnCreatedRow,"user");z(p,"aoHeaderCallback",g.fnHeaderCallback,"user");z(p,"aoFooterCallback",g.fnFooterCallback,"user");z(p,"aoInitComplete",g.fnInitComplete,"user");z(p,"aoPreDrawCallback",
88
- g.fnPreDrawCallback,"user");p.rowIdFn=S(g.rowId);hb(p);var u=p.oClasses;h.extend(u,n.ext.classes,g.oClasses);q.addClass(u.sTable);p.iInitDisplayStart===k&&(p.iInitDisplayStart=g.iDisplayStart,p._iDisplayStart=g.iDisplayStart);null!==g.iDeferLoading&&(p.bDeferLoading=!0,e=h.isArray(g.iDeferLoading),p._iRecordsDisplay=e?g.iDeferLoading[0]:g.iDeferLoading,p._iRecordsTotal=e?g.iDeferLoading[1]:g.iDeferLoading);var v=p.oLanguage;h.extend(!0,v,g.oLanguage);v.sUrl&&(h.ajax({dataType:"json",url:v.sUrl,success:function(a){Ca(a);
89
- J(l.oLanguage,a);h.extend(true,v,a);ha(p)},error:function(){ha(p)}}),m=!0);null===g.asStripeClasses&&(p.asStripeClasses=[u.sStripeOdd,u.sStripeEven]);var e=p.asStripeClasses,x=q.children("tbody").find("tr").eq(0);-1!==h.inArray(!0,h.map(e,function(a){return x.hasClass(a)}))&&(h("tbody tr",this).removeClass(e.join(" ")),p.asDestroyStripes=e.slice());e=[];t=this.getElementsByTagName("thead");0!==t.length&&(ea(p.aoHeader,t[0]),e=ra(p));if(null===g.aoColumns){t=[];j=0;for(i=e.length;j<i;j++)t.push(null)}else t=
90
- g.aoColumns;j=0;for(i=t.length;j<i;j++)Ea(p,e?e[j]:null);jb(p,g.aoColumnDefs,t,function(a,b){ka(p,a,b)});if(x.length){var w=function(a,b){return a.getAttribute("data-"+b)!==null?b:null};h(x[0]).children("th, td").each(function(a,b){var c=p.aoColumns[a];if(c.mData===a){var d=w(b,"sort")||w(b,"order"),e=w(b,"filter")||w(b,"search");if(d!==null||e!==null){c.mData={_:a+".display",sort:d!==null?a+".@data-"+d:k,type:d!==null?a+".@data-"+d:k,filter:e!==null?a+".@data-"+e:k};ka(p,a)}}})}var U=p.oFeatures,
91
- e=function(){if(g.aaSorting===k){var a=p.aaSorting;j=0;for(i=a.length;j<i;j++)a[j][1]=p.aoColumns[j].asSorting[0]}wa(p);U.bSort&&z(p,"aoDrawCallback",function(){if(p.bSorted){var a=X(p),b={};h.each(a,function(a,c){b[c.src]=c.dir});r(p,null,"order",[p,a,b]);Jb(p)}});z(p,"aoDrawCallback",function(){(p.bSorted||y(p)==="ssp"||U.bDeferRender)&&wa(p)},"sc");var a=q.children("caption").each(function(){this._captionSide=h(this).css("caption-side")}),b=q.children("thead");b.length===0&&(b=h("<thead/>").appendTo(q));
92
- p.nTHead=b[0];b=q.children("tbody");b.length===0&&(b=h("<tbody/>").appendTo(q));p.nTBody=b[0];b=q.children("tfoot");if(b.length===0&&a.length>0&&(p.oScroll.sX!==""||p.oScroll.sY!==""))b=h("<tfoot/>").appendTo(q);if(b.length===0||b.children().length===0)q.addClass(u.sNoFooter);else if(b.length>0){p.nTFoot=b[0];ea(p.aoFooter,p.nTFoot)}if(g.aaData)for(j=0;j<g.aaData.length;j++)O(p,g.aaData[j]);else(p.bDeferLoading||y(p)=="dom")&&na(p,h(p.nTBody).children("tr"));p.aiDisplay=p.aiDisplayMaster.slice();
93
- p.bInitialised=true;m===false&&ha(p)};g.bStateSave?(U.bStateSave=!0,z(p,"aoDrawCallback",xa,"state_save"),Kb(p,g,e)):e()}});b=null;return this},x,s,o,u,Za={},Nb=/[\r\n]/g,Aa=/<.*?>/g,Zb=/^\d{2,4}[\.\/\-]\d{1,2}[\.\/\-]\d{1,2}([T ]{1}\d{1,2}[:\.]\d{2}([\.:]\d{2})?)?$/,$b=RegExp("(\\/|\\.|\\*|\\+|\\?|\\||\\(|\\)|\\[|\\]|\\{|\\}|\\\\|\\$|\\^|\\-)","g"),Ya=/[',$£€¥%\u2009\u202F\u20BD\u20a9\u20BArfkɃΞ]/gi,M=function(a){return!a||!0===a||"-"===a?!0:!1},Ob=function(a){var b=parseInt(a,10);return!isNaN(b)&&
94
- isFinite(a)?b:null},Pb=function(a,b){Za[b]||(Za[b]=RegExp(Qa(b),"g"));return"string"===typeof a&&"."!==b?a.replace(/\./g,"").replace(Za[b],"."):a},$a=function(a,b,c){var d="string"===typeof a;if(M(a))return!0;b&&d&&(a=Pb(a,b));c&&d&&(a=a.replace(Ya,""));return!isNaN(parseFloat(a))&&isFinite(a)},Qb=function(a,b,c){return M(a)?!0:!(M(a)||"string"===typeof a)?null:$a(a.replace(Aa,""),b,c)?!0:null},D=function(a,b,c){var d=[],e=0,f=a.length;if(c!==k)for(;e<f;e++)a[e]&&a[e][b]&&d.push(a[e][b][c]);else for(;e<
95
- f;e++)a[e]&&d.push(a[e][b]);return d},ja=function(a,b,c,d){var e=[],f=0,g=b.length;if(d!==k)for(;f<g;f++)a[b[f]][c]&&e.push(a[b[f]][c][d]);else for(;f<g;f++)e.push(a[b[f]][c]);return e},Y=function(a,b){var c=[],d;b===k?(b=0,d=a):(d=b,b=a);for(var e=b;e<d;e++)c.push(e);return c},Rb=function(a){for(var b=[],c=0,d=a.length;c<d;c++)a[c]&&b.push(a[c]);return b},qa=function(a){var b;a:{if(!(2>a.length)){b=a.slice().sort();for(var c=b[0],d=1,e=b.length;d<e;d++){if(b[d]===c){b=!1;break a}c=b[d]}}b=!0}if(b)return a.slice();
96
- b=[];var e=a.length,f,g=0,d=0;a:for(;d<e;d++){c=a[d];for(f=0;f<g;f++)if(b[f]===c)continue a;b.push(c);g++}return b};n.util={throttle:function(a,b){var c=b!==k?b:200,d,e;return function(){var b=this,g=+new Date,j=arguments;d&&g<d+c?(clearTimeout(e),e=setTimeout(function(){d=k;a.apply(b,j)},c)):(d=g,a.apply(b,j))}},escapeRegex:function(a){return a.replace($b,"\\$1")}};var A=function(a,b,c){a[b]!==k&&(a[c]=a[b])},ca=/\[.*?\]$/,W=/\(\)$/,Qa=n.util.escapeRegex,va=h("<div>")[0],Wb=va.textContent!==k,Yb=
97
- /<.*?>/g,Oa=n.util.throttle,Sb=[],w=Array.prototype,ac=function(a){var b,c,d=n.settings,e=h.map(d,function(a){return a.nTable});if(a){if(a.nTable&&a.oApi)return[a];if(a.nodeName&&"table"===a.nodeName.toLowerCase())return b=h.inArray(a,e),-1!==b?[d[b]]:null;if(a&&"function"===typeof a.settings)return a.settings().toArray();"string"===typeof a?c=h(a):a instanceof h&&(c=a)}else return[];if(c)return c.map(function(){b=h.inArray(this,e);return-1!==b?d[b]:null}).toArray()};s=function(a,b){if(!(this instanceof
98
- s))return new s(a,b);var c=[],d=function(a){(a=ac(a))&&(c=c.concat(a))};if(h.isArray(a))for(var e=0,f=a.length;e<f;e++)d(a[e]);else d(a);this.context=qa(c);b&&h.merge(this,b);this.selector={rows:null,cols:null,opts:null};s.extend(this,this,Sb)};n.Api=s;h.extend(s.prototype,{any:function(){return 0!==this.count()},concat:w.concat,context:[],count:function(){return this.flatten().length},each:function(a){for(var b=0,c=this.length;b<c;b++)a.call(this,this[b],b,this);return this},eq:function(a){var b=
99
- this.context;return b.length>a?new s(b[a],this[a]):null},filter:function(a){var b=[];if(w.filter)b=w.filter.call(this,a,this);else for(var c=0,d=this.length;c<d;c++)a.call(this,this[c],c,this)&&b.push(this[c]);return new s(this.context,b)},flatten:function(){var a=[];return new s(this.context,a.concat.apply(a,this.toArray()))},join:w.join,indexOf:w.indexOf||function(a,b){for(var c=b||0,d=this.length;c<d;c++)if(this[c]===a)return c;return-1},iterator:function(a,b,c,d){var e=[],f,g,j,h,m,l=this.context,
100
- n,o,u=this.selector;"string"===typeof a&&(d=c,c=b,b=a,a=!1);g=0;for(j=l.length;g<j;g++){var r=new s(l[g]);if("table"===b)f=c.call(r,l[g],g),f!==k&&e.push(f);else if("columns"===b||"rows"===b)f=c.call(r,l[g],this[g],g),f!==k&&e.push(f);else if("column"===b||"column-rows"===b||"row"===b||"cell"===b){o=this[g];"column-rows"===b&&(n=Ba(l[g],u.opts));h=0;for(m=o.length;h<m;h++)f=o[h],f="cell"===b?c.call(r,l[g],f.row,f.column,g,h):c.call(r,l[g],f,g,h,n),f!==k&&e.push(f)}}return e.length||d?(a=new s(l,a?
101
- e.concat.apply([],e):e),b=a.selector,b.rows=u.rows,b.cols=u.cols,b.opts=u.opts,a):this},lastIndexOf:w.lastIndexOf||function(a,b){return this.indexOf.apply(this.toArray.reverse(),arguments)},length:0,map:function(a){var b=[];if(w.map)b=w.map.call(this,a,this);else for(var c=0,d=this.length;c<d;c++)b.push(a.call(this,this[c],c));return new s(this.context,b)},pluck:function(a){return this.map(function(b){return b[a]})},pop:w.pop,push:w.push,reduce:w.reduce||function(a,b){return ib(this,a,b,0,this.length,
102
- 1)},reduceRight:w.reduceRight||function(a,b){return ib(this,a,b,this.length-1,-1,-1)},reverse:w.reverse,selector:null,shift:w.shift,slice:function(){return new s(this.context,this)},sort:w.sort,splice:w.splice,toArray:function(){return w.slice.call(this)},to$:function(){return h(this)},toJQuery:function(){return h(this)},unique:function(){return new s(this.context,qa(this))},unshift:w.unshift});s.extend=function(a,b,c){if(c.length&&b&&(b instanceof s||b.__dt_wrapper)){var d,e,f,g=function(a,b,c){return function(){var d=
103
- b.apply(a,arguments);s.extend(d,d,c.methodExt);return d}};d=0;for(e=c.length;d<e;d++)f=c[d],b[f.name]="function"===typeof f.val?g(a,f.val,f):h.isPlainObject(f.val)?{}:f.val,b[f.name].__dt_wrapper=!0,s.extend(a,b[f.name],f.propExt)}};s.register=o=function(a,b){if(h.isArray(a))for(var c=0,d=a.length;c<d;c++)s.register(a[c],b);else for(var e=a.split("."),f=Sb,g,j,c=0,d=e.length;c<d;c++){g=(j=-1!==e[c].indexOf("()"))?e[c].replace("()",""):e[c];var i;a:{i=0;for(var m=f.length;i<m;i++)if(f[i].name===g){i=
104
- f[i];break a}i=null}i||(i={name:g,val:{},methodExt:[],propExt:[]},f.push(i));c===d-1?i.val=b:f=j?i.methodExt:i.propExt}};s.registerPlural=u=function(a,b,c){s.register(a,c);s.register(b,function(){var a=c.apply(this,arguments);return a===this?this:a instanceof s?a.length?h.isArray(a[0])?new s(a.context,a[0]):a[0]:k:a})};o("tables()",function(a){var b;if(a){b=s;var c=this.context;if("number"===typeof a)a=[c[a]];else var d=h.map(c,function(a){return a.nTable}),a=h(d).filter(a).map(function(){var a=h.inArray(this,
105
- d);return c[a]}).toArray();b=new b(a)}else b=this;return b});o("table()",function(a){var a=this.tables(a),b=a.context;return b.length?new s(b[0]):a});u("tables().nodes()","table().node()",function(){return this.iterator("table",function(a){return a.nTable},1)});u("tables().body()","table().body()",function(){return this.iterator("table",function(a){return a.nTBody},1)});u("tables().header()","table().header()",function(){return this.iterator("table",function(a){return a.nTHead},1)});u("tables().footer()",
106
- "table().footer()",function(){return this.iterator("table",function(a){return a.nTFoot},1)});u("tables().containers()","table().container()",function(){return this.iterator("table",function(a){return a.nTableWrapper},1)});o("draw()",function(a){return this.iterator("table",function(b){"page"===a?P(b):("string"===typeof a&&(a="full-hold"===a?!1:!0),T(b,!1===a))})});o("page()",function(a){return a===k?this.page.info().page:this.iterator("table",function(b){Ta(b,a)})});o("page.info()",function(){if(0===
107
- this.context.length)return k;var a=this.context[0],b=a._iDisplayStart,c=a.oFeatures.bPaginate?a._iDisplayLength:-1,d=a.fnRecordsDisplay(),e=-1===c;return{page:e?0:Math.floor(b/c),pages:e?1:Math.ceil(d/c),start:b,end:a.fnDisplayEnd(),length:c,recordsTotal:a.fnRecordsTotal(),recordsDisplay:d,serverSide:"ssp"===y(a)}});o("page.len()",function(a){return a===k?0!==this.context.length?this.context[0]._iDisplayLength:k:this.iterator("table",function(b){Ra(b,a)})});var Tb=function(a,b,c){if(c){var d=new s(a);
108
- d.one("draw",function(){c(d.ajax.json())})}if("ssp"==y(a))T(a,b);else{C(a,!0);var e=a.jqXHR;e&&4!==e.readyState&&e.abort();sa(a,[],function(c){oa(a);for(var c=ta(a,c),d=0,e=c.length;d<e;d++)O(a,c[d]);T(a,b);C(a,!1)})}};o("ajax.json()",function(){var a=this.context;if(0<a.length)return a[0].json});o("ajax.params()",function(){var a=this.context;if(0<a.length)return a[0].oAjaxData});o("ajax.reload()",function(a,b){return this.iterator("table",function(c){Tb(c,!1===b,a)})});o("ajax.url()",function(a){var b=
109
- this.context;if(a===k){if(0===b.length)return k;b=b[0];return b.ajax?h.isPlainObject(b.ajax)?b.ajax.url:b.ajax:b.sAjaxSource}return this.iterator("table",function(b){h.isPlainObject(b.ajax)?b.ajax.url=a:b.ajax=a})});o("ajax.url().load()",function(a,b){return this.iterator("table",function(c){Tb(c,!1===b,a)})});var ab=function(a,b,c,d,e){var f=[],g,j,i,m,l,n;i=typeof b;if(!b||"string"===i||"function"===i||b.length===k)b=[b];i=0;for(m=b.length;i<m;i++){j=b[i]&&b[i].split&&!b[i].match(/[\[\(:]/)?b[i].split(","):
110
- [b[i]];l=0;for(n=j.length;l<n;l++)(g=c("string"===typeof j[l]?h.trim(j[l]):j[l]))&&g.length&&(f=f.concat(g))}a=x.selector[a];if(a.length){i=0;for(m=a.length;i<m;i++)f=a[i](d,e,f)}return qa(f)},bb=function(a){a||(a={});a.filter&&a.search===k&&(a.search=a.filter);return h.extend({search:"none",order:"current",page:"all"},a)},cb=function(a){for(var b=0,c=a.length;b<c;b++)if(0<a[b].length)return a[0]=a[b],a[0].length=1,a.length=1,a.context=[a.context[b]],a;a.length=0;return a},Ba=function(a,b){var c,
111
- d,e,f=[],g=a.aiDisplay;e=a.aiDisplayMaster;var j=b.search;c=b.order;d=b.page;if("ssp"==y(a))return"removed"===j?[]:Y(0,e.length);if("current"==d){c=a._iDisplayStart;for(d=a.fnDisplayEnd();c<d;c++)f.push(g[c])}else if("current"==c||"applied"==c)if("none"==j)f=e.slice();else if("applied"==j)f=g.slice();else{if("removed"==j){var i={};c=0;for(d=g.length;c<d;c++)i[g[c]]=null;f=h.map(e,function(a){return!i.hasOwnProperty(a)?a:null})}}else if("index"==c||"original"==c){c=0;for(d=a.aoData.length;c<d;c++)"none"==
112
- j?f.push(c):(e=h.inArray(c,g),(-1===e&&"removed"==j||0<=e&&"applied"==j)&&f.push(c))}return f};o("rows()",function(a,b){a===k?a="":h.isPlainObject(a)&&(b=a,a="");var b=bb(b),c=this.iterator("table",function(c){var e=b,f;return ab("row",a,function(a){var b=Ob(a),i=c.aoData;if(b!==null&&!e)return[b];f||(f=Ba(c,e));if(b!==null&&h.inArray(b,f)!==-1)return[b];if(a===null||a===k||a==="")return f;if(typeof a==="function")return h.map(f,function(b){var c=i[b];return a(b,c._aData,c.nTr)?b:null});if(a.nodeName){var b=
113
- a._DT_RowIndex,m=a._DT_CellIndex;if(b!==k)return i[b]&&i[b].nTr===a?[b]:[];if(m)return i[m.row]&&i[m.row].nTr===a?[m.row]:[];b=h(a).closest("*[data-dt-row]");return b.length?[b.data("dt-row")]:[]}if(typeof a==="string"&&a.charAt(0)==="#"){b=c.aIds[a.replace(/^#/,"")];if(b!==k)return[b.idx]}b=Rb(ja(c.aoData,f,"nTr"));return h(b).filter(a).map(function(){return this._DT_RowIndex}).toArray()},c,e)},1);c.selector.rows=a;c.selector.opts=b;return c});o("rows().nodes()",function(){return this.iterator("row",
114
- function(a,b){return a.aoData[b].nTr||k},1)});o("rows().data()",function(){return this.iterator(!0,"rows",function(a,b){return ja(a.aoData,b,"_aData")},1)});u("rows().cache()","row().cache()",function(a){return this.iterator("row",function(b,c){var d=b.aoData[c];return"search"===a?d._aFilterData:d._aSortData},1)});u("rows().invalidate()","row().invalidate()",function(a){return this.iterator("row",function(b,c){da(b,c,a)})});u("rows().indexes()","row().index()",function(){return this.iterator("row",
115
- function(a,b){return b},1)});u("rows().ids()","row().id()",function(a){for(var b=[],c=this.context,d=0,e=c.length;d<e;d++)for(var f=0,g=this[d].length;f<g;f++){var h=c[d].rowIdFn(c[d].aoData[this[d][f]]._aData);b.push((!0===a?"#":"")+h)}return new s(c,b)});u("rows().remove()","row().remove()",function(){var a=this;this.iterator("row",function(b,c,d){var e=b.aoData,f=e[c],g,h,i,m,l;e.splice(c,1);g=0;for(h=e.length;g<h;g++)if(i=e[g],l=i.anCells,null!==i.nTr&&(i.nTr._DT_RowIndex=g),null!==l){i=0;for(m=
116
- l.length;i<m;i++)l[i]._DT_CellIndex.row=g}pa(b.aiDisplayMaster,c);pa(b.aiDisplay,c);pa(a[d],c,!1);0<b._iRecordsDisplay&&b._iRecordsDisplay--;Sa(b);c=b.rowIdFn(f._aData);c!==k&&delete b.aIds[c]});this.iterator("table",function(a){for(var c=0,d=a.aoData.length;c<d;c++)a.aoData[c].idx=c});return this});o("rows.add()",function(a){var b=this.iterator("table",function(b){var c,f,g,h=[];f=0;for(g=a.length;f<g;f++)c=a[f],c.nodeName&&"TR"===c.nodeName.toUpperCase()?h.push(na(b,c)[0]):h.push(O(b,c));return h},
117
- 1),c=this.rows(-1);c.pop();h.merge(c,b);return c});o("row()",function(a,b){return cb(this.rows(a,b))});o("row().data()",function(a){var b=this.context;if(a===k)return b.length&&this.length?b[0].aoData[this[0]]._aData:k;var c=b[0].aoData[this[0]];c._aData=a;h.isArray(a)&&c.nTr.id&&N(b[0].rowId)(a,c.nTr.id);da(b[0],this[0],"data");return this});o("row().node()",function(){var a=this.context;return a.length&&this.length?a[0].aoData[this[0]].nTr||null:null});o("row.add()",function(a){a instanceof h&&
118
- a.length&&(a=a[0]);var b=this.iterator("table",function(b){return a.nodeName&&"TR"===a.nodeName.toUpperCase()?na(b,a)[0]:O(b,a)});return this.row(b[0])});var db=function(a,b){var c=a.context;if(c.length&&(c=c[0].aoData[b!==k?b:a[0]])&&c._details)c._details.remove(),c._detailsShow=k,c._details=k},Ub=function(a,b){var c=a.context;if(c.length&&a.length){var d=c[0].aoData[a[0]];if(d._details){(d._detailsShow=b)?d._details.insertAfter(d.nTr):d._details.detach();var e=c[0],f=new s(e),g=e.aoData;f.off("draw.dt.DT_details column-visibility.dt.DT_details destroy.dt.DT_details");
119
- 0<D(g,"_details").length&&(f.on("draw.dt.DT_details",function(a,b){e===b&&f.rows({page:"current"}).eq(0).each(function(a){a=g[a];a._detailsShow&&a._details.insertAfter(a.nTr)})}),f.on("column-visibility.dt.DT_details",function(a,b){if(e===b)for(var c,d=V(b),f=0,h=g.length;f<h;f++)c=g[f],c._details&&c._details.children("td[colspan]").attr("colspan",d)}),f.on("destroy.dt.DT_details",function(a,b){if(e===b)for(var c=0,d=g.length;c<d;c++)g[c]._details&&db(f,c)}))}}};o("row().child()",function(a,b){var c=
120
- this.context;if(a===k)return c.length&&this.length?c[0].aoData[this[0]]._details:k;if(!0===a)this.child.show();else if(!1===a)db(this);else if(c.length&&this.length){var d=c[0],c=c[0].aoData[this[0]],e=[],f=function(a,b){if(h.isArray(a)||a instanceof h)for(var c=0,k=a.length;c<k;c++)f(a[c],b);else a.nodeName&&"tr"===a.nodeName.toLowerCase()?e.push(a):(c=h("<tr><td/></tr>").addClass(b),h("td",c).addClass(b).html(a)[0].colSpan=V(d),e.push(c[0]))};f(a,b);c._details&&c._details.detach();c._details=h(e);
121
- c._detailsShow&&c._details.insertAfter(c.nTr)}return this});o(["row().child.show()","row().child().show()"],function(){Ub(this,!0);return this});o(["row().child.hide()","row().child().hide()"],function(){Ub(this,!1);return this});o(["row().child.remove()","row().child().remove()"],function(){db(this);return this});o("row().child.isShown()",function(){var a=this.context;return a.length&&this.length?a[0].aoData[this[0]]._detailsShow||!1:!1});var bc=/^([^:]+):(name|visIdx|visible)$/,Vb=function(a,b,
122
- c,d,e){for(var c=[],d=0,f=e.length;d<f;d++)c.push(B(a,e[d],b));return c};o("columns()",function(a,b){a===k?a="":h.isPlainObject(a)&&(b=a,a="");var b=bb(b),c=this.iterator("table",function(c){var e=a,f=b,g=c.aoColumns,j=D(g,"sName"),i=D(g,"nTh");return ab("column",e,function(a){var b=Ob(a);if(a==="")return Y(g.length);if(b!==null)return[b>=0?b:g.length+b];if(typeof a==="function"){var e=Ba(c,f);return h.map(g,function(b,f){return a(f,Vb(c,f,0,0,e),i[f])?f:null})}var k=typeof a==="string"?a.match(bc):
123
- "";if(k)switch(k[2]){case "visIdx":case "visible":b=parseInt(k[1],10);if(b<0){var n=h.map(g,function(a,b){return a.bVisible?b:null});return[n[n.length+b]]}return[aa(c,b)];case "name":return h.map(j,function(a,b){return a===k[1]?b:null});default:return[]}if(a.nodeName&&a._DT_CellIndex)return[a._DT_CellIndex.column];b=h(i).filter(a).map(function(){return h.inArray(this,i)}).toArray();if(b.length||!a.nodeName)return b;b=h(a).closest("*[data-dt-column]");return b.length?[b.data("dt-column")]:[]},c,f)},
124
- 1);c.selector.cols=a;c.selector.opts=b;return c});u("columns().header()","column().header()",function(){return this.iterator("column",function(a,b){return a.aoColumns[b].nTh},1)});u("columns().footer()","column().footer()",function(){return this.iterator("column",function(a,b){return a.aoColumns[b].nTf},1)});u("columns().data()","column().data()",function(){return this.iterator("column-rows",Vb,1)});u("columns().dataSrc()","column().dataSrc()",function(){return this.iterator("column",function(a,b){return a.aoColumns[b].mData},
125
- 1)});u("columns().cache()","column().cache()",function(a){return this.iterator("column-rows",function(b,c,d,e,f){return ja(b.aoData,f,"search"===a?"_aFilterData":"_aSortData",c)},1)});u("columns().nodes()","column().nodes()",function(){return this.iterator("column-rows",function(a,b,c,d,e){return ja(a.aoData,e,"anCells",b)},1)});u("columns().visible()","column().visible()",function(a,b){var c=this.iterator("column",function(b,c){if(a===k)return b.aoColumns[c].bVisible;var f=b.aoColumns,g=f[c],j=b.aoData,
126
- i,m,l;if(a!==k&&g.bVisible!==a){if(a){var n=h.inArray(!0,D(f,"bVisible"),c+1);i=0;for(m=j.length;i<m;i++)l=j[i].nTr,f=j[i].anCells,l&&l.insertBefore(f[c],f[n]||null)}else h(D(b.aoData,"anCells",c)).detach();g.bVisible=a;fa(b,b.aoHeader);fa(b,b.aoFooter);b.aiDisplay.length||h(b.nTBody).find("td[colspan]").attr("colspan",V(b));xa(b)}});a!==k&&(this.iterator("column",function(c,e){r(c,null,"column-visibility",[c,e,a,b])}),(b===k||b)&&this.columns.adjust());return c});u("columns().indexes()","column().index()",
127
- function(a){return this.iterator("column",function(b,c){return"visible"===a?ba(b,c):c},1)});o("columns.adjust()",function(){return this.iterator("table",function(a){$(a)},1)});o("column.index()",function(a,b){if(0!==this.context.length){var c=this.context[0];if("fromVisible"===a||"toData"===a)return aa(c,b);if("fromData"===a||"toVisible"===a)return ba(c,b)}});o("column()",function(a,b){return cb(this.columns(a,b))});o("cells()",function(a,b,c){h.isPlainObject(a)&&(a.row===k?(c=a,a=null):(c=b,b=null));
128
- h.isPlainObject(b)&&(c=b,b=null);if(null===b||b===k)return this.iterator("table",function(b){var d=a,e=bb(c),f=b.aoData,g=Ba(b,e),j=Rb(ja(f,g,"anCells")),i=h([].concat.apply([],j)),l,m=b.aoColumns.length,n,o,u,s,r,v;return ab("cell",d,function(a){var c=typeof a==="function";if(a===null||a===k||c){n=[];o=0;for(u=g.length;o<u;o++){l=g[o];for(s=0;s<m;s++){r={row:l,column:s};if(c){v=f[l];a(r,B(b,l,s),v.anCells?v.anCells[s]:null)&&n.push(r)}else n.push(r)}}return n}if(h.isPlainObject(a))return a.column!==
129
- k&&a.row!==k&&h.inArray(a.row,g)!==-1?[a]:[];c=i.filter(a).map(function(a,b){return{row:b._DT_CellIndex.row,column:b._DT_CellIndex.column}}).toArray();if(c.length||!a.nodeName)return c;v=h(a).closest("*[data-dt-row]");return v.length?[{row:v.data("dt-row"),column:v.data("dt-column")}]:[]},b,e)});var d=this.columns(b),e=this.rows(a),f,g,j,i,m;this.iterator("table",function(a,b){f=[];g=0;for(j=e[b].length;g<j;g++){i=0;for(m=d[b].length;i<m;i++)f.push({row:e[b][g],column:d[b][i]})}},1);var l=this.cells(f,
130
- c);h.extend(l.selector,{cols:b,rows:a,opts:c});return l});u("cells().nodes()","cell().node()",function(){return this.iterator("cell",function(a,b,c){return(a=a.aoData[b])&&a.anCells?a.anCells[c]:k},1)});o("cells().data()",function(){return this.iterator("cell",function(a,b,c){return B(a,b,c)},1)});u("cells().cache()","cell().cache()",function(a){a="search"===a?"_aFilterData":"_aSortData";return this.iterator("cell",function(b,c,d){return b.aoData[c][a][d]},1)});u("cells().render()","cell().render()",
131
- function(a){return this.iterator("cell",function(b,c,d){return B(b,c,d,a)},1)});u("cells().indexes()","cell().index()",function(){return this.iterator("cell",function(a,b,c){return{row:b,column:c,columnVisible:ba(a,c)}},1)});u("cells().invalidate()","cell().invalidate()",function(a){return this.iterator("cell",function(b,c,d){da(b,c,a,d)})});o("cell()",function(a,b,c){return cb(this.cells(a,b,c))});o("cell().data()",function(a){var b=this.context,c=this[0];if(a===k)return b.length&&c.length?B(b[0],
132
- c[0].row,c[0].column):k;kb(b[0],c[0].row,c[0].column,a);da(b[0],c[0].row,"data",c[0].column);return this});o("order()",function(a,b){var c=this.context;if(a===k)return 0!==c.length?c[0].aaSorting:k;"number"===typeof a?a=[[a,b]]:a.length&&!h.isArray(a[0])&&(a=Array.prototype.slice.call(arguments));return this.iterator("table",function(b){b.aaSorting=a.slice()})});o("order.listener()",function(a,b,c){return this.iterator("table",function(d){Ma(d,a,b,c)})});o("order.fixed()",function(a){if(!a){var b=
133
- this.context,b=b.length?b[0].aaSortingFixed:k;return h.isArray(b)?{pre:b}:b}return this.iterator("table",function(b){b.aaSortingFixed=h.extend(!0,{},a)})});o(["columns().order()","column().order()"],function(a){var b=this;return this.iterator("table",function(c,d){var e=[];h.each(b[d],function(b,c){e.push([c,a])});c.aaSorting=e})});o("search()",function(a,b,c,d){var e=this.context;return a===k?0!==e.length?e[0].oPreviousSearch.sSearch:k:this.iterator("table",function(e){e.oFeatures.bFilter&&ga(e,
134
- h.extend({},e.oPreviousSearch,{sSearch:a+"",bRegex:null===b?!1:b,bSmart:null===c?!0:c,bCaseInsensitive:null===d?!0:d}),1)})});u("columns().search()","column().search()",function(a,b,c,d){return this.iterator("column",function(e,f){var g=e.aoPreSearchCols;if(a===k)return g[f].sSearch;e.oFeatures.bFilter&&(h.extend(g[f],{sSearch:a+"",bRegex:null===b?!1:b,bSmart:null===c?!0:c,bCaseInsensitive:null===d?!0:d}),ga(e,e.oPreviousSearch,1))})});o("state()",function(){return this.context.length?this.context[0].oSavedState:
135
- null});o("state.clear()",function(){return this.iterator("table",function(a){a.fnStateSaveCallback.call(a.oInstance,a,{})})});o("state.loaded()",function(){return this.context.length?this.context[0].oLoadedState:null});o("state.save()",function(){return this.iterator("table",function(a){xa(a)})});n.versionCheck=n.fnVersionCheck=function(a){for(var b=n.version.split("."),a=a.split("."),c,d,e=0,f=a.length;e<f;e++)if(c=parseInt(b[e],10)||0,d=parseInt(a[e],10)||0,c!==d)return c>d;return!0};n.isDataTable=
136
- n.fnIsDataTable=function(a){var b=h(a).get(0),c=!1;if(a instanceof n.Api)return!0;h.each(n.settings,function(a,e){var f=e.nScrollHead?h("table",e.nScrollHead)[0]:null,g=e.nScrollFoot?h("table",e.nScrollFoot)[0]:null;if(e.nTable===b||f===b||g===b)c=!0});return c};n.tables=n.fnTables=function(a){var b=!1;h.isPlainObject(a)&&(b=a.api,a=a.visible);var c=h.map(n.settings,function(b){if(!a||a&&h(b.nTable).is(":visible"))return b.nTable});return b?new s(c):c};n.camelToHungarian=J;o("$()",function(a,b){var c=
137
- this.rows(b).nodes(),c=h(c);return h([].concat(c.filter(a).toArray(),c.find(a).toArray()))});h.each(["on","one","off"],function(a,b){o(b+"()",function(){var a=Array.prototype.slice.call(arguments);a[0]=h.map(a[0].split(/\s/),function(a){return!a.match(/\.dt\b/)?a+".dt":a}).join(" ");var d=h(this.tables().nodes());d[b].apply(d,a);return this})});o("clear()",function(){return this.iterator("table",function(a){oa(a)})});o("settings()",function(){return new s(this.context,this.context)});o("init()",function(){var a=
138
- this.context;return a.length?a[0].oInit:null});o("data()",function(){return this.iterator("table",function(a){return D(a.aoData,"_aData")}).flatten()});o("destroy()",function(a){a=a||!1;return this.iterator("table",function(b){var c=b.nTableWrapper.parentNode,d=b.oClasses,e=b.nTable,f=b.nTBody,g=b.nTHead,j=b.nTFoot,i=h(e),f=h(f),k=h(b.nTableWrapper),l=h.map(b.aoData,function(a){return a.nTr}),o;b.bDestroying=!0;r(b,"aoDestroyCallback","destroy",[b]);a||(new s(b)).columns().visible(!0);k.off(".DT").find(":not(tbody *)").off(".DT");
139
- h(E).off(".DT-"+b.sInstance);e!=g.parentNode&&(i.children("thead").detach(),i.append(g));j&&e!=j.parentNode&&(i.children("tfoot").detach(),i.append(j));b.aaSorting=[];b.aaSortingFixed=[];wa(b);h(l).removeClass(b.asStripeClasses.join(" "));h("th, td",g).removeClass(d.sSortable+" "+d.sSortableAsc+" "+d.sSortableDesc+" "+d.sSortableNone);f.children().detach();f.append(l);g=a?"remove":"detach";i[g]();k[g]();!a&&c&&(c.insertBefore(e,b.nTableReinsertBefore),i.css("width",b.sDestroyWidth).removeClass(d.sTable),
140
- (o=b.asDestroyStripes.length)&&f.children().each(function(a){h(this).addClass(b.asDestroyStripes[a%o])}));c=h.inArray(b,n.settings);-1!==c&&n.settings.splice(c,1)})});h.each(["column","row","cell"],function(a,b){o(b+"s().every()",function(a){var d=this.selector.opts,e=this;return this.iterator(b,function(f,g,h,i,m){a.call(e[b](g,"cell"===b?h:d,"cell"===b?d:k),g,h,i,m)})})});o("i18n()",function(a,b,c){var d=this.context[0],a=S(a)(d.oLanguage);a===k&&(a=b);c!==k&&h.isPlainObject(a)&&(a=a[c]!==k?a[c]:
141
- a._);return a.replace("%d",c)});n.version="1.10.19";n.settings=[];n.models={};n.models.oSearch={bCaseInsensitive:!0,sSearch:"",bRegex:!1,bSmart:!0};n.models.oRow={nTr:null,anCells:null,_aData:[],_aSortData:null,_aFilterData:null,_sFilterRow:null,_sRowStripe:"",src:null,idx:-1};n.models.oColumn={idx:null,aDataSort:null,asSorting:null,bSearchable:null,bSortable:null,bVisible:null,_sManualType:null,_bAttrSrc:!1,fnCreatedCell:null,fnGetData:null,fnSetData:null,mData:null,mRender:null,nTh:null,nTf:null,
142
- sClass:null,sContentPadding:null,sDefaultContent:null,sName:null,sSortDataType:"std",sSortingClass:null,sSortingClassJUI:null,sTitle:null,sType:null,sWidth:null,sWidthOrig:null};n.defaults={aaData:null,aaSorting:[[0,"asc"]],aaSortingFixed:[],ajax:null,aLengthMenu:[10,25,50,100],aoColumns:null,aoColumnDefs:null,aoSearchCols:[],asStripeClasses:null,bAutoWidth:!0,bDeferRender:!1,bDestroy:!1,bFilter:!0,bInfo:!0,bLengthChange:!0,bPaginate:!0,bProcessing:!1,bRetrieve:!1,bScrollCollapse:!1,bServerSide:!1,
143
- bSort:!0,bSortMulti:!0,bSortCellsTop:!1,bSortClasses:!0,bStateSave:!1,fnCreatedRow:null,fnDrawCallback:null,fnFooterCallback:null,fnFormatNumber:function(a){return a.toString().replace(/\B(?=(\d{3})+(?!\d))/g,this.oLanguage.sThousands)},fnHeaderCallback:null,fnInfoCallback:null,fnInitComplete:null,fnPreDrawCallback:null,fnRowCallback:null,fnServerData:null,fnServerParams:null,fnStateLoadCallback:function(a){try{return JSON.parse((-1===a.iStateDuration?sessionStorage:localStorage).getItem("DataTables_"+
144
- a.sInstance+"_"+location.pathname))}catch(b){}},fnStateLoadParams:null,fnStateLoaded:null,fnStateSaveCallback:function(a,b){try{(-1===a.iStateDuration?sessionStorage:localStorage).setItem("DataTables_"+a.sInstance+"_"+location.pathname,JSON.stringify(b))}catch(c){}},fnStateSaveParams:null,iStateDuration:7200,iDeferLoading:null,iDisplayLength:10,iDisplayStart:0,iTabIndex:0,oClasses:{},oLanguage:{oAria:{sSortAscending:": activate to sort column ascending",sSortDescending:": activate to sort column descending"},
145
- oPaginate:{sFirst:"First",sLast:"Last",sNext:"Next",sPrevious:"Previous"},sEmptyTable:"No data available in table",sInfo:"Showing _START_ to _END_ of _TOTAL_ entries",sInfoEmpty:"Showing 0 to 0 of 0 entries",sInfoFiltered:"(filtered from _MAX_ total entries)",sInfoPostFix:"",sDecimal:"",sThousands:",",sLengthMenu:"Show _MENU_ entries",sLoadingRecords:"Loading...",sProcessing:"Processing...",sSearch:"Search:",sSearchPlaceholder:"",sUrl:"",sZeroRecords:"No matching records found"},oSearch:h.extend({},
146
- n.models.oSearch),sAjaxDataProp:"data",sAjaxSource:null,sDom:"lfrtip",searchDelay:null,sPaginationType:"simple_numbers",sScrollX:"",sScrollXInner:"",sScrollY:"",sServerMethod:"GET",renderer:null,rowId:"DT_RowId"};Z(n.defaults);n.defaults.column={aDataSort:null,iDataSort:-1,asSorting:["asc","desc"],bSearchable:!0,bSortable:!0,bVisible:!0,fnCreatedCell:null,mData:null,mRender:null,sCellType:"td",sClass:"",sContentPadding:"",sDefaultContent:null,sName:"",sSortDataType:"std",sTitle:null,sType:null,sWidth:null};
147
- Z(n.defaults.column);n.models.oSettings={oFeatures:{bAutoWidth:null,bDeferRender:null,bFilter:null,bInfo:null,bLengthChange:null,bPaginate:null,bProcessing:null,bServerSide:null,bSort:null,bSortMulti:null,bSortClasses:null,bStateSave:null},oScroll:{bCollapse:null,iBarWidth:0,sX:null,sXInner:null,sY:null},oLanguage:{fnInfoCallback:null},oBrowser:{bScrollOversize:!1,bScrollbarLeft:!1,bBounding:!1,barWidth:0},ajax:null,aanFeatures:[],aoData:[],aiDisplay:[],aiDisplayMaster:[],aIds:{},aoColumns:[],aoHeader:[],
148
- aoFooter:[],oPreviousSearch:{},aoPreSearchCols:[],aaSorting:null,aaSortingFixed:[],asStripeClasses:null,asDestroyStripes:[],sDestroyWidth:0,aoRowCallback:[],aoHeaderCallback:[],aoFooterCallback:[],aoDrawCallback:[],aoRowCreatedCallback:[],aoPreDrawCallback:[],aoInitComplete:[],aoStateSaveParams:[],aoStateLoadParams:[],aoStateLoaded:[],sTableId:"",nTable:null,nTHead:null,nTFoot:null,nTBody:null,nTableWrapper:null,bDeferLoading:!1,bInitialised:!1,aoOpenRows:[],sDom:null,searchDelay:null,sPaginationType:"two_button",
149
- iStateDuration:0,aoStateSave:[],aoStateLoad:[],oSavedState:null,oLoadedState:null,sAjaxSource:null,sAjaxDataProp:null,bAjaxDataGet:!0,jqXHR:null,json:k,oAjaxData:k,fnServerData:null,aoServerParams:[],sServerMethod:null,fnFormatNumber:null,aLengthMenu:null,iDraw:0,bDrawing:!1,iDrawError:-1,_iDisplayLength:10,_iDisplayStart:0,_iRecordsTotal:0,_iRecordsDisplay:0,oClasses:{},bFiltered:!1,bSorted:!1,bSortCellsTop:null,oInit:null,aoDestroyCallback:[],fnRecordsTotal:function(){return"ssp"==y(this)?1*this._iRecordsTotal:
150
- this.aiDisplayMaster.length},fnRecordsDisplay:function(){return"ssp"==y(this)?1*this._iRecordsDisplay:this.aiDisplay.length},fnDisplayEnd:function(){var a=this._iDisplayLength,b=this._iDisplayStart,c=b+a,d=this.aiDisplay.length,e=this.oFeatures,f=e.bPaginate;return e.bServerSide?!1===f||-1===a?b+d:Math.min(b+a,this._iRecordsDisplay):!f||c>d||-1===a?d:c},oInstance:null,sInstance:null,iTabIndex:0,nScrollHead:null,nScrollFoot:null,aLastSort:[],oPlugins:{},rowIdFn:null,rowId:null};n.ext=x={buttons:{},
151
- classes:{},builder:"-source-",errMode:"alert",feature:[],search:[],selector:{cell:[],column:[],row:[]},internal:{},legacy:{ajax:null},pager:{},renderer:{pageButton:{},header:{}},order:{},type:{detect:[],search:{},order:{}},_unique:0,fnVersionCheck:n.fnVersionCheck,iApiIndex:0,oJUIClasses:{},sVersion:n.version};h.extend(x,{afnFiltering:x.search,aTypes:x.type.detect,ofnSearch:x.type.search,oSort:x.type.order,afnSortData:x.order,aoFeatures:x.feature,oApi:x.internal,oStdClasses:x.classes,oPagination:x.pager});
152
- h.extend(n.ext.classes,{sTable:"dataTable",sNoFooter:"no-footer",sPageButton:"paginate_button",sPageButtonActive:"current",sPageButtonDisabled:"disabled",sStripeOdd:"odd",sStripeEven:"even",sRowEmpty:"dataTables_empty",sWrapper:"dataTables_wrapper",sFilter:"dataTables_filter",sInfo:"dataTables_info",sPaging:"dataTables_paginate paging_",sLength:"dataTables_length",sProcessing:"dataTables_processing",sSortAsc:"sorting_asc",sSortDesc:"sorting_desc",sSortable:"sorting",sSortableAsc:"sorting_asc_disabled",
 
 
 
 
 
153
  sSortableDesc:"sorting_desc_disabled",sSortableNone:"sorting_disabled",sSortColumn:"sorting_",sFilterInput:"",sLengthSelect:"",sScrollWrapper:"dataTables_scroll",sScrollHead:"dataTables_scrollHead",sScrollHeadInner:"dataTables_scrollHeadInner",sScrollBody:"dataTables_scrollBody",sScrollFoot:"dataTables_scrollFoot",sScrollFootInner:"dataTables_scrollFootInner",sHeaderTH:"",sFooterTH:"",sSortJUIAsc:"",sSortJUIDesc:"",sSortJUI:"",sSortJUIAscAllowed:"",sSortJUIDescAllowed:"",sSortJUIWrapper:"",sSortIcon:"",
154
- sJUIHeader:"",sJUIFooter:""});var Lb=n.ext.pager;h.extend(Lb,{simple:function(){return["previous","next"]},full:function(){return["first","previous","next","last"]},numbers:function(a,b){return[ia(a,b)]},simple_numbers:function(a,b){return["previous",ia(a,b),"next"]},full_numbers:function(a,b){return["first","previous",ia(a,b),"next","last"]},first_last_numbers:function(a,b){return["first",ia(a,b),"last"]},_numbers:ia,numbers_length:7});h.extend(!0,n.ext.renderer,{pageButton:{_:function(a,b,c,d,e,
155
- f){var g=a.oClasses,j=a.oLanguage.oPaginate,i=a.oLanguage.oAria.paginate||{},m,l,n=0,o=function(b,d){var k,s,u,r,v=function(b){Ta(a,b.data.action,true)};k=0;for(s=d.length;k<s;k++){r=d[k];if(h.isArray(r)){u=h("<"+(r.DT_el||"div")+"/>").appendTo(b);o(u,r)}else{m=null;l="";switch(r){case "ellipsis":b.append('<span class="ellipsis">&#x2026;</span>');break;case "first":m=j.sFirst;l=r+(e>0?"":" "+g.sPageButtonDisabled);break;case "previous":m=j.sPrevious;l=r+(e>0?"":" "+g.sPageButtonDisabled);break;case "next":m=
156
- j.sNext;l=r+(e<f-1?"":" "+g.sPageButtonDisabled);break;case "last":m=j.sLast;l=r+(e<f-1?"":" "+g.sPageButtonDisabled);break;default:m=r+1;l=e===r?g.sPageButtonActive:""}if(m!==null){u=h("<a>",{"class":g.sPageButton+" "+l,"aria-controls":a.sTableId,"aria-label":i[r],"data-dt-idx":n,tabindex:a.iTabIndex,id:c===0&&typeof r==="string"?a.sTableId+"_"+r:null}).html(m).appendTo(b);Wa(u,{action:r},v);n++}}}},s;try{s=h(b).find(H.activeElement).data("dt-idx")}catch(u){}o(h(b).empty(),d);s!==k&&h(b).find("[data-dt-idx="+
157
- s+"]").focus()}}});h.extend(n.ext.type.detect,[function(a,b){var c=b.oLanguage.sDecimal;return $a(a,c)?"num"+c:null},function(a){if(a&&!(a instanceof Date)&&!Zb.test(a))return null;var b=Date.parse(a);return null!==b&&!isNaN(b)||M(a)?"date":null},function(a,b){var c=b.oLanguage.sDecimal;return $a(a,c,!0)?"num-fmt"+c:null},function(a,b){var c=b.oLanguage.sDecimal;return Qb(a,c)?"html-num"+c:null},function(a,b){var c=b.oLanguage.sDecimal;return Qb(a,c,!0)?"html-num-fmt"+c:null},function(a){return M(a)||
158
- "string"===typeof a&&-1!==a.indexOf("<")?"html":null}]);h.extend(n.ext.type.search,{html:function(a){return M(a)?a:"string"===typeof a?a.replace(Nb," ").replace(Aa,""):""},string:function(a){return M(a)?a:"string"===typeof a?a.replace(Nb," "):a}});var za=function(a,b,c,d){if(0!==a&&(!a||"-"===a))return-Infinity;b&&(a=Pb(a,b));a.replace&&(c&&(a=a.replace(c,"")),d&&(a=a.replace(d,"")));return 1*a};h.extend(x.type.order,{"date-pre":function(a){a=Date.parse(a);return isNaN(a)?-Infinity:a},"html-pre":function(a){return M(a)?
159
- "":a.replace?a.replace(/<.*?>/g,"").toLowerCase():a+""},"string-pre":function(a){return M(a)?"":"string"===typeof a?a.toLowerCase():!a.toString?"":a.toString()},"string-asc":function(a,b){return a<b?-1:a>b?1:0},"string-desc":function(a,b){return a<b?1:a>b?-1:0}});Da("");h.extend(!0,n.ext.renderer,{header:{_:function(a,b,c,d){h(a.nTable).on("order.dt.DT",function(e,f,g,h){if(a===f){e=c.idx;b.removeClass(c.sSortingClass+" "+d.sSortAsc+" "+d.sSortDesc).addClass(h[e]=="asc"?d.sSortAsc:h[e]=="desc"?d.sSortDesc:
160
- c.sSortingClass)}})},jqueryui:function(a,b,c,d){h("<div/>").addClass(d.sSortJUIWrapper).append(b.contents()).append(h("<span/>").addClass(d.sSortIcon+" "+c.sSortingClassJUI)).appendTo(b);h(a.nTable).on("order.dt.DT",function(e,f,g,h){if(a===f){e=c.idx;b.removeClass(d.sSortAsc+" "+d.sSortDesc).addClass(h[e]=="asc"?d.sSortAsc:h[e]=="desc"?d.sSortDesc:c.sSortingClass);b.find("span."+d.sSortIcon).removeClass(d.sSortJUIAsc+" "+d.sSortJUIDesc+" "+d.sSortJUI+" "+d.sSortJUIAscAllowed+" "+d.sSortJUIDescAllowed).addClass(h[e]==
161
- "asc"?d.sSortJUIAsc:h[e]=="desc"?d.sSortJUIDesc:c.sSortingClassJUI)}})}}});var eb=function(a){return"string"===typeof a?a.replace(/</g,"&lt;").replace(/>/g,"&gt;").replace(/"/g,"&quot;"):a};n.render={number:function(a,b,c,d,e){return{display:function(f){if("number"!==typeof f&&"string"!==typeof f)return f;var g=0>f?"-":"",h=parseFloat(f);if(isNaN(h))return eb(f);h=h.toFixed(c);f=Math.abs(h);h=parseInt(f,10);f=c?b+(f-h).toFixed(c).substring(2):"";return g+(d||"")+h.toString().replace(/\B(?=(\d{3})+(?!\d))/g,
162
- a)+f+(e||"")}}},text:function(){return{display:eb,filter:eb}}};h.extend(n.ext.internal,{_fnExternApiFunc:Mb,_fnBuildAjax:sa,_fnAjaxUpdate:mb,_fnAjaxParameters:vb,_fnAjaxUpdateDraw:wb,_fnAjaxDataSrc:ta,_fnAddColumn:Ea,_fnColumnOptions:ka,_fnAdjustColumnSizing:$,_fnVisibleToColumnIndex:aa,_fnColumnIndexToVisible:ba,_fnVisbleColumns:V,_fnGetColumns:ma,_fnColumnTypes:Ga,_fnApplyColumnDefs:jb,_fnHungarianMap:Z,_fnCamelToHungarian:J,_fnLanguageCompat:Ca,_fnBrowserDetect:hb,_fnAddData:O,_fnAddTr:na,_fnNodeToDataIndex:function(a,
163
- b){return b._DT_RowIndex!==k?b._DT_RowIndex:null},_fnNodeToColumnIndex:function(a,b,c){return h.inArray(c,a.aoData[b].anCells)},_fnGetCellData:B,_fnSetCellData:kb,_fnSplitObjNotation:Ja,_fnGetObjectDataFn:S,_fnSetObjectDataFn:N,_fnGetDataMaster:Ka,_fnClearTable:oa,_fnDeleteIndex:pa,_fnInvalidate:da,_fnGetRowElements:Ia,_fnCreateTr:Ha,_fnBuildHead:lb,_fnDrawHead:fa,_fnDraw:P,_fnReDraw:T,_fnAddOptionsHtml:ob,_fnDetectHeader:ea,_fnGetUniqueThs:ra,_fnFeatureHtmlFilter:qb,_fnFilterComplete:ga,_fnFilterCustom:zb,
164
- _fnFilterColumn:yb,_fnFilter:xb,_fnFilterCreateSearch:Pa,_fnEscapeRegex:Qa,_fnFilterData:Ab,_fnFeatureHtmlInfo:tb,_fnUpdateInfo:Db,_fnInfoMacros:Eb,_fnInitialise:ha,_fnInitComplete:ua,_fnLengthChange:Ra,_fnFeatureHtmlLength:pb,_fnFeatureHtmlPaginate:ub,_fnPageChange:Ta,_fnFeatureHtmlProcessing:rb,_fnProcessingDisplay:C,_fnFeatureHtmlTable:sb,_fnScrollDraw:la,_fnApplyToChildren:I,_fnCalculateColumnWidths:Fa,_fnThrottle:Oa,_fnConvertToWidth:Fb,_fnGetWidestNode:Gb,_fnGetMaxLenString:Hb,_fnStringToCss:v,
165
- _fnSortFlatten:X,_fnSort:nb,_fnSortAria:Jb,_fnSortListener:Va,_fnSortAttachListener:Ma,_fnSortingClasses:wa,_fnSortData:Ib,_fnSaveState:xa,_fnLoadState:Kb,_fnSettingsFromNode:ya,_fnLog:K,_fnMap:F,_fnBindAction:Wa,_fnCallbackReg:z,_fnCallbackFire:r,_fnLengthOverflow:Sa,_fnRenderer:Na,_fnDataSource:y,_fnRowAttributes:La,_fnExtend:Xa,_fnCalculateEnd:function(){}});h.fn.dataTable=n;n.$=h;h.fn.dataTableSettings=n.settings;h.fn.dataTableExt=n.ext;h.fn.DataTable=function(a){return h(this).dataTable(a).api()};
166
- h.each(n,function(a,b){h.fn.DataTable[a]=b});return h.fn.dataTable});
167
- /**
168
- * add datatable frontend.
169
- */
170
- jQuery(document).ready( function () {jQuery('#classiDocs_dataTable').DataTable( {"autoWidth": false,"scrollX": true});} );
1
  /*!
2
+ Copyright 2008-2020 SpryMedia Ltd.
3
+
4
+ This source file is free software, available under the following license:
5
+ MIT license - http://datatables.net/license
6
+
7
+ This source file is distributed in the hope that it will be useful, but
8
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
9
+ or FITNESS FOR A PARTICULAR PURPOSE. See the license files for details.
10
+
11
+ For details please refer to: http://www.datatables.net
12
+ DataTables 1.10.21
13
+ ©2008-2020 SpryMedia Ltd - datatables.net/license
14
  */
15
+ var $jscomp=$jscomp||{};$jscomp.scope={};$jscomp.findInternal=function(f,y,w){f instanceof String&&(f=String(f));for(var n=f.length,H=0;H<n;H++){var L=f[H];if(y.call(w,L,H,f))return{i:H,v:L}}return{i:-1,v:void 0}};$jscomp.ASSUME_ES5=!1;$jscomp.ASSUME_NO_NATIVE_MAP=!1;$jscomp.ASSUME_NO_NATIVE_SET=!1;$jscomp.SIMPLE_FROUND_POLYFILL=!1;
16
+ $jscomp.defineProperty=$jscomp.ASSUME_ES5||"function"==typeof Object.defineProperties?Object.defineProperty:function(f,y,w){f!=Array.prototype&&f!=Object.prototype&&(f[y]=w.value)};$jscomp.getGlobal=function(f){f=["object"==typeof window&&window,"object"==typeof self&&self,"object"==typeof global&&global,f];for(var y=0;y<f.length;++y){var w=f[y];if(w&&w.Math==Math)return w}throw Error("Cannot find global object");};$jscomp.global=$jscomp.getGlobal(this);
17
+ $jscomp.polyfill=function(f,y,w,n){if(y){w=$jscomp.global;f=f.split(".");for(n=0;n<f.length-1;n++){var H=f[n];H in w||(w[H]={});w=w[H]}f=f[f.length-1];n=w[f];y=y(n);y!=n&&null!=y&&$jscomp.defineProperty(w,f,{configurable:!0,writable:!0,value:y})}};$jscomp.polyfill("Array.prototype.find",function(f){return f?f:function(f,w){return $jscomp.findInternal(this,f,w).v}},"es6","es3");
18
+ (function(f){"function"===typeof define&&define.amd?define(["jquery"],function(y){return f(y,window,document)}):"object"===typeof exports?module.exports=function(y,w){y||(y=window);w||(w="undefined"!==typeof window?require("jquery"):require("jquery")(y));return f(w,y,y.document)}:f(jQuery,window,document)})(function(f,y,w,n){function H(a){var b,c,d={};f.each(a,function(e,h){(b=e.match(/^([^A-Z]+?)([A-Z])/))&&-1!=="a aa ai ao as b fn i m o s ".indexOf(b[1]+" ")&&(c=e.replace(b[0],b[2].toLowerCase()),
19
+ d[c]=e,"o"===b[1]&&H(a[e]))});a._hungarianMap=d}function L(a,b,c){a._hungarianMap||H(a);var d;f.each(b,function(e,h){d=a._hungarianMap[e];d===n||!c&&b[d]!==n||("o"===d.charAt(0)?(b[d]||(b[d]={}),f.extend(!0,b[d],b[e]),L(a[d],b[d],c)):b[d]=b[e])})}function Fa(a){var b=q.defaults.oLanguage,c=b.sDecimal;c&&Ga(c);if(a){var d=a.sZeroRecords;!a.sEmptyTable&&d&&"No data available in table"===b.sEmptyTable&&M(a,a,"sZeroRecords","sEmptyTable");!a.sLoadingRecords&&d&&"Loading..."===b.sLoadingRecords&&M(a,a,
20
+ "sZeroRecords","sLoadingRecords");a.sInfoThousands&&(a.sThousands=a.sInfoThousands);(a=a.sDecimal)&&c!==a&&Ga(a)}}function ib(a){E(a,"ordering","bSort");E(a,"orderMulti","bSortMulti");E(a,"orderClasses","bSortClasses");E(a,"orderCellsTop","bSortCellsTop");E(a,"order","aaSorting");E(a,"orderFixed","aaSortingFixed");E(a,"paging","bPaginate");E(a,"pagingType","sPaginationType");E(a,"pageLength","iDisplayLength");E(a,"searching","bFilter");"boolean"===typeof a.sScrollX&&(a.sScrollX=a.sScrollX?"100%":
21
+ "");"boolean"===typeof a.scrollX&&(a.scrollX=a.scrollX?"100%":"");if(a=a.aoSearchCols)for(var b=0,c=a.length;b<c;b++)a[b]&&L(q.models.oSearch,a[b])}function jb(a){E(a,"orderable","bSortable");E(a,"orderData","aDataSort");E(a,"orderSequence","asSorting");E(a,"orderDataType","sortDataType");var b=a.aDataSort;"number"!==typeof b||f.isArray(b)||(a.aDataSort=[b])}function kb(a){if(!q.__browser){var b={};q.__browser=b;var c=f("<div/>").css({position:"fixed",top:0,left:-1*f(y).scrollLeft(),height:1,width:1,
22
+ overflow:"hidden"}).append(f("<div/>").css({position:"absolute",top:1,left:1,width:100,overflow:"scroll"}).append(f("<div/>").css({width:"100%",height:10}))).appendTo("body"),d=c.children(),e=d.children();b.barWidth=d[0].offsetWidth-d[0].clientWidth;b.bScrollOversize=100===e[0].offsetWidth&&100!==d[0].clientWidth;b.bScrollbarLeft=1!==Math.round(e.offset().left);b.bBounding=c[0].getBoundingClientRect().width?!0:!1;c.remove()}f.extend(a.oBrowser,q.__browser);a.oScroll.iBarWidth=q.__browser.barWidth}
23
+ function lb(a,b,c,d,e,h){var g=!1;if(c!==n){var k=c;g=!0}for(;d!==e;)a.hasOwnProperty(d)&&(k=g?b(k,a[d],d,a):a[d],g=!0,d+=h);return k}function Ha(a,b){var c=q.defaults.column,d=a.aoColumns.length;c=f.extend({},q.models.oColumn,c,{nTh:b?b:w.createElement("th"),sTitle:c.sTitle?c.sTitle:b?b.innerHTML:"",aDataSort:c.aDataSort?c.aDataSort:[d],mData:c.mData?c.mData:d,idx:d});a.aoColumns.push(c);c=a.aoPreSearchCols;c[d]=f.extend({},q.models.oSearch,c[d]);la(a,d,f(b).data())}function la(a,b,c){b=a.aoColumns[b];
24
+ var d=a.oClasses,e=f(b.nTh);if(!b.sWidthOrig){b.sWidthOrig=e.attr("width")||null;var h=(e.attr("style")||"").match(/width:\s*(\d+[pxem%]+)/);h&&(b.sWidthOrig=h[1])}c!==n&&null!==c&&(jb(c),L(q.defaults.column,c,!0),c.mDataProp===n||c.mData||(c.mData=c.mDataProp),c.sType&&(b._sManualType=c.sType),c.className&&!c.sClass&&(c.sClass=c.className),c.sClass&&e.addClass(c.sClass),f.extend(b,c),M(b,c,"sWidth","sWidthOrig"),c.iDataSort!==n&&(b.aDataSort=[c.iDataSort]),M(b,c,"aDataSort"));var g=b.mData,k=T(g),
25
+ l=b.mRender?T(b.mRender):null;c=function(a){return"string"===typeof a&&-1!==a.indexOf("@")};b._bAttrSrc=f.isPlainObject(g)&&(c(g.sort)||c(g.type)||c(g.filter));b._setter=null;b.fnGetData=function(a,b,c){var d=k(a,b,n,c);return l&&b?l(d,b,a,c):d};b.fnSetData=function(a,b,c){return Q(g)(a,b,c)};"number"!==typeof g&&(a._rowReadObject=!0);a.oFeatures.bSort||(b.bSortable=!1,e.addClass(d.sSortableNone));a=-1!==f.inArray("asc",b.asSorting);c=-1!==f.inArray("desc",b.asSorting);b.bSortable&&(a||c)?a&&!c?(b.sSortingClass=
26
+ d.sSortableAsc,b.sSortingClassJUI=d.sSortJUIAscAllowed):!a&&c?(b.sSortingClass=d.sSortableDesc,b.sSortingClassJUI=d.sSortJUIDescAllowed):(b.sSortingClass=d.sSortable,b.sSortingClassJUI=d.sSortJUI):(b.sSortingClass=d.sSortableNone,b.sSortingClassJUI="")}function Z(a){if(!1!==a.oFeatures.bAutoWidth){var b=a.aoColumns;Ia(a);for(var c=0,d=b.length;c<d;c++)b[c].nTh.style.width=b[c].sWidth}b=a.oScroll;""===b.sY&&""===b.sX||ma(a);A(a,null,"column-sizing",[a])}function aa(a,b){a=na(a,"bVisible");return"number"===
27
+ typeof a[b]?a[b]:null}function ba(a,b){a=na(a,"bVisible");b=f.inArray(b,a);return-1!==b?b:null}function V(a){var b=0;f.each(a.aoColumns,function(a,d){d.bVisible&&"none"!==f(d.nTh).css("display")&&b++});return b}function na(a,b){var c=[];f.map(a.aoColumns,function(a,e){a[b]&&c.push(e)});return c}function Ja(a){var b=a.aoColumns,c=a.aoData,d=q.ext.type.detect,e,h,g;var k=0;for(e=b.length;k<e;k++){var f=b[k];var m=[];if(!f.sType&&f._sManualType)f.sType=f._sManualType;else if(!f.sType){var p=0;for(h=
28
+ d.length;p<h;p++){var v=0;for(g=c.length;v<g;v++){m[v]===n&&(m[v]=F(a,v,k,"type"));var u=d[p](m[v],a);if(!u&&p!==d.length-1)break;if("html"===u)break}if(u){f.sType=u;break}}f.sType||(f.sType="string")}}}function mb(a,b,c,d){var e,h,g,k=a.aoColumns;if(b)for(e=b.length-1;0<=e;e--){var l=b[e];var m=l.targets!==n?l.targets:l.aTargets;f.isArray(m)||(m=[m]);var p=0;for(h=m.length;p<h;p++)if("number"===typeof m[p]&&0<=m[p]){for(;k.length<=m[p];)Ha(a);d(m[p],l)}else if("number"===typeof m[p]&&0>m[p])d(k.length+
29
+ m[p],l);else if("string"===typeof m[p]){var v=0;for(g=k.length;v<g;v++)("_all"==m[p]||f(k[v].nTh).hasClass(m[p]))&&d(v,l)}}if(c)for(e=0,a=c.length;e<a;e++)d(e,c[e])}function R(a,b,c,d){var e=a.aoData.length,h=f.extend(!0,{},q.models.oRow,{src:c?"dom":"data",idx:e});h._aData=b;a.aoData.push(h);for(var g=a.aoColumns,k=0,l=g.length;k<l;k++)g[k].sType=null;a.aiDisplayMaster.push(e);b=a.rowIdFn(b);b!==n&&(a.aIds[b]=h);!c&&a.oFeatures.bDeferRender||Ka(a,e,c,d);return e}function oa(a,b){var c;b instanceof
30
+ f||(b=f(b));return b.map(function(b,e){c=La(a,e);return R(a,c.data,e,c.cells)})}function F(a,b,c,d){var e=a.iDraw,h=a.aoColumns[c],g=a.aoData[b]._aData,k=h.sDefaultContent,f=h.fnGetData(g,d,{settings:a,row:b,col:c});if(f===n)return a.iDrawError!=e&&null===k&&(O(a,0,"Requested unknown parameter "+("function"==typeof h.mData?"{function}":"'"+h.mData+"'")+" for row "+b+", column "+c,4),a.iDrawError=e),k;if((f===g||null===f)&&null!==k&&d!==n)f=k;else if("function"===typeof f)return f.call(g);return null===
31
+ f&&"display"==d?"":f}function nb(a,b,c,d){a.aoColumns[c].fnSetData(a.aoData[b]._aData,d,{settings:a,row:b,col:c})}function Ma(a){return f.map(a.match(/(\\.|[^\.])+/g)||[""],function(a){return a.replace(/\\\./g,".")})}function T(a){if(f.isPlainObject(a)){var b={};f.each(a,function(a,c){c&&(b[a]=T(c))});return function(a,c,h,g){var d=b[c]||b._;return d!==n?d(a,c,h,g):a}}if(null===a)return function(a){return a};if("function"===typeof a)return function(b,c,h,g){return a(b,c,h,g)};if("string"!==typeof a||
32
+ -1===a.indexOf(".")&&-1===a.indexOf("[")&&-1===a.indexOf("("))return function(b,c){return b[a]};var c=function(a,b,h){if(""!==h){var d=Ma(h);for(var e=0,l=d.length;e<l;e++){h=d[e].match(ca);var m=d[e].match(W);if(h){d[e]=d[e].replace(ca,"");""!==d[e]&&(a=a[d[e]]);m=[];d.splice(0,e+1);d=d.join(".");if(f.isArray(a))for(e=0,l=a.length;e<l;e++)m.push(c(a[e],b,d));a=h[0].substring(1,h[0].length-1);a=""===a?m:m.join(a);break}else if(m){d[e]=d[e].replace(W,"");a=a[d[e]]();continue}if(null===a||a[d[e]]===
33
+ n)return n;a=a[d[e]]}}return a};return function(b,e){return c(b,e,a)}}function Q(a){if(f.isPlainObject(a))return Q(a._);if(null===a)return function(){};if("function"===typeof a)return function(b,d,e){a(b,"set",d,e)};if("string"!==typeof a||-1===a.indexOf(".")&&-1===a.indexOf("[")&&-1===a.indexOf("("))return function(b,d){b[a]=d};var b=function(a,d,e){e=Ma(e);var c=e[e.length-1];for(var g,k,l=0,m=e.length-1;l<m;l++){g=e[l].match(ca);k=e[l].match(W);if(g){e[l]=e[l].replace(ca,"");a[e[l]]=[];c=e.slice();
34
+ c.splice(0,l+1);g=c.join(".");if(f.isArray(d))for(k=0,m=d.length;k<m;k++)c={},b(c,d[k],g),a[e[l]].push(c);else a[e[l]]=d;return}k&&(e[l]=e[l].replace(W,""),a=a[e[l]](d));if(null===a[e[l]]||a[e[l]]===n)a[e[l]]={};a=a[e[l]]}if(c.match(W))a[c.replace(W,"")](d);else a[c.replace(ca,"")]=d};return function(c,d){return b(c,d,a)}}function Na(a){return K(a.aoData,"_aData")}function pa(a){a.aoData.length=0;a.aiDisplayMaster.length=0;a.aiDisplay.length=0;a.aIds={}}function qa(a,b,c){for(var d=-1,e=0,h=a.length;e<
35
+ h;e++)a[e]==b?d=e:a[e]>b&&a[e]--; -1!=d&&c===n&&a.splice(d,1)}function da(a,b,c,d){var e=a.aoData[b],h,g=function(c,d){for(;c.childNodes.length;)c.removeChild(c.firstChild);c.innerHTML=F(a,b,d,"display")};if("dom"!==c&&(c&&"auto"!==c||"dom"!==e.src)){var k=e.anCells;if(k)if(d!==n)g(k[d],d);else for(c=0,h=k.length;c<h;c++)g(k[c],c)}else e._aData=La(a,e,d,d===n?n:e._aData).data;e._aSortData=null;e._aFilterData=null;g=a.aoColumns;if(d!==n)g[d].sType=null;else{c=0;for(h=g.length;c<h;c++)g[c].sType=null;
36
+ Oa(a,e)}}function La(a,b,c,d){var e=[],h=b.firstChild,g,k=0,l,m=a.aoColumns,p=a._rowReadObject;d=d!==n?d:p?{}:[];var v=function(a,b){if("string"===typeof a){var c=a.indexOf("@");-1!==c&&(c=a.substring(c+1),Q(a)(d,b.getAttribute(c)))}},u=function(a){if(c===n||c===k)g=m[k],l=f.trim(a.innerHTML),g&&g._bAttrSrc?(Q(g.mData._)(d,l),v(g.mData.sort,a),v(g.mData.type,a),v(g.mData.filter,a)):p?(g._setter||(g._setter=Q(g.mData)),g._setter(d,l)):d[k]=l;k++};if(h)for(;h;){var q=h.nodeName.toUpperCase();if("TD"==
37
+ q||"TH"==q)u(h),e.push(h);h=h.nextSibling}else for(e=b.anCells,h=0,q=e.length;h<q;h++)u(e[h]);(b=b.firstChild?b:b.nTr)&&(b=b.getAttribute("id"))&&Q(a.rowId)(d,b);return{data:d,cells:e}}function Ka(a,b,c,d){var e=a.aoData[b],h=e._aData,g=[],k,l;if(null===e.nTr){var m=c||w.createElement("tr");e.nTr=m;e.anCells=g;m._DT_RowIndex=b;Oa(a,e);var p=0;for(k=a.aoColumns.length;p<k;p++){var v=a.aoColumns[p];var n=(l=c?!1:!0)?w.createElement(v.sCellType):d[p];n._DT_CellIndex={row:b,column:p};g.push(n);if(l||
38
+ !(c&&!v.mRender&&v.mData===p||f.isPlainObject(v.mData)&&v.mData._===p+".display"))n.innerHTML=F(a,b,p,"display");v.sClass&&(n.className+=" "+v.sClass);v.bVisible&&!c?m.appendChild(n):!v.bVisible&&c&&n.parentNode.removeChild(n);v.fnCreatedCell&&v.fnCreatedCell.call(a.oInstance,n,F(a,b,p),h,b,p)}A(a,"aoRowCreatedCallback",null,[m,h,b,g])}e.nTr.setAttribute("role","row")}function Oa(a,b){var c=b.nTr,d=b._aData;if(c){if(a=a.rowIdFn(d))c.id=a;d.DT_RowClass&&(a=d.DT_RowClass.split(" "),b.__rowc=b.__rowc?
39
+ sa(b.__rowc.concat(a)):a,f(c).removeClass(b.__rowc.join(" ")).addClass(d.DT_RowClass));d.DT_RowAttr&&f(c).attr(d.DT_RowAttr);d.DT_RowData&&f(c).data(d.DT_RowData)}}function ob(a){var b,c,d=a.nTHead,e=a.nTFoot,h=0===f("th, td",d).length,g=a.oClasses,k=a.aoColumns;h&&(c=f("<tr/>").appendTo(d));var l=0;for(b=k.length;l<b;l++){var m=k[l];var p=f(m.nTh).addClass(m.sClass);h&&p.appendTo(c);a.oFeatures.bSort&&(p.addClass(m.sSortingClass),!1!==m.bSortable&&(p.attr("tabindex",a.iTabIndex).attr("aria-controls",
40
+ a.sTableId),Pa(a,m.nTh,l)));m.sTitle!=p[0].innerHTML&&p.html(m.sTitle);Qa(a,"header")(a,p,m,g)}h&&ea(a.aoHeader,d);f(d).find(">tr").attr("role","row");f(d).find(">tr>th, >tr>td").addClass(g.sHeaderTH);f(e).find(">tr>th, >tr>td").addClass(g.sFooterTH);if(null!==e)for(a=a.aoFooter[0],l=0,b=a.length;l<b;l++)m=k[l],m.nTf=a[l].cell,m.sClass&&f(m.nTf).addClass(m.sClass)}function fa(a,b,c){var d,e,h=[],g=[],k=a.aoColumns.length;if(b){c===n&&(c=!1);var l=0;for(d=b.length;l<d;l++){h[l]=b[l].slice();h[l].nTr=
41
+ b[l].nTr;for(e=k-1;0<=e;e--)a.aoColumns[e].bVisible||c||h[l].splice(e,1);g.push([])}l=0;for(d=h.length;l<d;l++){if(a=h[l].nTr)for(;e=a.firstChild;)a.removeChild(e);e=0;for(b=h[l].length;e<b;e++){var m=k=1;if(g[l][e]===n){a.appendChild(h[l][e].cell);for(g[l][e]=1;h[l+k]!==n&&h[l][e].cell==h[l+k][e].cell;)g[l+k][e]=1,k++;for(;h[l][e+m]!==n&&h[l][e].cell==h[l][e+m].cell;){for(c=0;c<k;c++)g[l+c][e+m]=1;m++}f(h[l][e].cell).attr("rowspan",k).attr("colspan",m)}}}}}function S(a){var b=A(a,"aoPreDrawCallback",
42
+ "preDraw",[a]);if(-1!==f.inArray(!1,b))J(a,!1);else{b=[];var c=0,d=a.asStripeClasses,e=d.length,h=a.oLanguage,g=a.iInitDisplayStart,k="ssp"==I(a),l=a.aiDisplay;a.bDrawing=!0;g!==n&&-1!==g&&(a._iDisplayStart=k?g:g>=a.fnRecordsDisplay()?0:g,a.iInitDisplayStart=-1);g=a._iDisplayStart;var m=a.fnDisplayEnd();if(a.bDeferLoading)a.bDeferLoading=!1,a.iDraw++,J(a,!1);else if(!k)a.iDraw++;else if(!a.bDestroying&&!pb(a))return;if(0!==l.length)for(h=k?a.aoData.length:m,k=k?0:g;k<h;k++){var p=l[k],v=a.aoData[p];
43
+ null===v.nTr&&Ka(a,p);var u=v.nTr;if(0!==e){var q=d[c%e];v._sRowStripe!=q&&(f(u).removeClass(v._sRowStripe).addClass(q),v._sRowStripe=q)}A(a,"aoRowCallback",null,[u,v._aData,c,k,p]);b.push(u);c++}else c=h.sZeroRecords,1==a.iDraw&&"ajax"==I(a)?c=h.sLoadingRecords:h.sEmptyTable&&0===a.fnRecordsTotal()&&(c=h.sEmptyTable),b[0]=f("<tr/>",{"class":e?d[0]:""}).append(f("<td />",{valign:"top",colSpan:V(a),"class":a.oClasses.sRowEmpty}).html(c))[0];A(a,"aoHeaderCallback","header",[f(a.nTHead).children("tr")[0],
44
+ Na(a),g,m,l]);A(a,"aoFooterCallback","footer",[f(a.nTFoot).children("tr")[0],Na(a),g,m,l]);d=f(a.nTBody);d.children().detach();d.append(f(b));A(a,"aoDrawCallback","draw",[a]);a.bSorted=!1;a.bFiltered=!1;a.bDrawing=!1}}function U(a,b){var c=a.oFeatures,d=c.bFilter;c.bSort&&qb(a);d?ha(a,a.oPreviousSearch):a.aiDisplay=a.aiDisplayMaster.slice();!0!==b&&(a._iDisplayStart=0);a._drawHold=b;S(a);a._drawHold=!1}function rb(a){var b=a.oClasses,c=f(a.nTable);c=f("<div/>").insertBefore(c);var d=a.oFeatures,e=
45
+ f("<div/>",{id:a.sTableId+"_wrapper","class":b.sWrapper+(a.nTFoot?"":" "+b.sNoFooter)});a.nHolding=c[0];a.nTableWrapper=e[0];a.nTableReinsertBefore=a.nTable.nextSibling;for(var h=a.sDom.split(""),g,k,l,m,p,n,u=0;u<h.length;u++){g=null;k=h[u];if("<"==k){l=f("<div/>")[0];m=h[u+1];if("'"==m||'"'==m){p="";for(n=2;h[u+n]!=m;)p+=h[u+n],n++;"H"==p?p=b.sJUIHeader:"F"==p&&(p=b.sJUIFooter);-1!=p.indexOf(".")?(m=p.split("."),l.id=m[0].substr(1,m[0].length-1),l.className=m[1]):"#"==p.charAt(0)?l.id=p.substr(1,
46
+ p.length-1):l.className=p;u+=n}e.append(l);e=f(l)}else if(">"==k)e=e.parent();else if("l"==k&&d.bPaginate&&d.bLengthChange)g=sb(a);else if("f"==k&&d.bFilter)g=tb(a);else if("r"==k&&d.bProcessing)g=ub(a);else if("t"==k)g=vb(a);else if("i"==k&&d.bInfo)g=wb(a);else if("p"==k&&d.bPaginate)g=xb(a);else if(0!==q.ext.feature.length)for(l=q.ext.feature,n=0,m=l.length;n<m;n++)if(k==l[n].cFeature){g=l[n].fnInit(a);break}g&&(l=a.aanFeatures,l[k]||(l[k]=[]),l[k].push(g),e.append(g))}c.replaceWith(e);a.nHolding=
47
+ null}function ea(a,b){b=f(b).children("tr");var c,d,e;a.splice(0,a.length);var h=0;for(e=b.length;h<e;h++)a.push([]);h=0;for(e=b.length;h<e;h++){var g=b[h];for(c=g.firstChild;c;){if("TD"==c.nodeName.toUpperCase()||"TH"==c.nodeName.toUpperCase()){var k=1*c.getAttribute("colspan");var l=1*c.getAttribute("rowspan");k=k&&0!==k&&1!==k?k:1;l=l&&0!==l&&1!==l?l:1;var m=0;for(d=a[h];d[m];)m++;var p=m;var n=1===k?!0:!1;for(d=0;d<k;d++)for(m=0;m<l;m++)a[h+m][p+d]={cell:c,unique:n},a[h+m].nTr=g}c=c.nextSibling}}}
48
+ function ta(a,b,c){var d=[];c||(c=a.aoHeader,b&&(c=[],ea(c,b)));b=0;for(var e=c.length;b<e;b++)for(var h=0,g=c[b].length;h<g;h++)!c[b][h].unique||d[h]&&a.bSortCellsTop||(d[h]=c[b][h].cell);return d}function ua(a,b,c){A(a,"aoServerParams","serverParams",[b]);if(b&&f.isArray(b)){var d={},e=/(.*?)\[\]$/;f.each(b,function(a,b){(a=b.name.match(e))?(a=a[0],d[a]||(d[a]=[]),d[a].push(b.value)):d[b.name]=b.value});b=d}var h=a.ajax,g=a.oInstance,k=function(b){A(a,null,"xhr",[a,b,a.jqXHR]);c(b)};if(f.isPlainObject(h)&&
49
+ h.data){var l=h.data;var m="function"===typeof l?l(b,a):l;b="function"===typeof l&&m?m:f.extend(!0,b,m);delete h.data}m={data:b,success:function(b){var c=b.error||b.sError;c&&O(a,0,c);a.json=b;k(b)},dataType:"json",cache:!1,type:a.sServerMethod,error:function(b,c,d){d=A(a,null,"xhr",[a,null,a.jqXHR]);-1===f.inArray(!0,d)&&("parsererror"==c?O(a,0,"Invalid JSON response",1):4===b.readyState&&O(a,0,"Ajax error",7));J(a,!1)}};a.oAjaxData=b;A(a,null,"preXhr",[a,b]);a.fnServerData?a.fnServerData.call(g,
50
+ a.sAjaxSource,f.map(b,function(a,b){return{name:b,value:a}}),k,a):a.sAjaxSource||"string"===typeof h?a.jqXHR=f.ajax(f.extend(m,{url:h||a.sAjaxSource})):"function"===typeof h?a.jqXHR=h.call(g,b,k,a):(a.jqXHR=f.ajax(f.extend(m,h)),h.data=l)}function pb(a){return a.bAjaxDataGet?(a.iDraw++,J(a,!0),ua(a,yb(a),function(b){zb(a,b)}),!1):!0}function yb(a){var b=a.aoColumns,c=b.length,d=a.oFeatures,e=a.oPreviousSearch,h=a.aoPreSearchCols,g=[],k=X(a);var l=a._iDisplayStart;var m=!1!==d.bPaginate?a._iDisplayLength:
51
+ -1;var p=function(a,b){g.push({name:a,value:b})};p("sEcho",a.iDraw);p("iColumns",c);p("sColumns",K(b,"sName").join(","));p("iDisplayStart",l);p("iDisplayLength",m);var n={draw:a.iDraw,columns:[],order:[],start:l,length:m,search:{value:e.sSearch,regex:e.bRegex}};for(l=0;l<c;l++){var u=b[l];var ra=h[l];m="function"==typeof u.mData?"function":u.mData;n.columns.push({data:m,name:u.sName,searchable:u.bSearchable,orderable:u.bSortable,search:{value:ra.sSearch,regex:ra.bRegex}});p("mDataProp_"+l,m);d.bFilter&&
52
+ (p("sSearch_"+l,ra.sSearch),p("bRegex_"+l,ra.bRegex),p("bSearchable_"+l,u.bSearchable));d.bSort&&p("bSortable_"+l,u.bSortable)}d.bFilter&&(p("sSearch",e.sSearch),p("bRegex",e.bRegex));d.bSort&&(f.each(k,function(a,b){n.order.push({column:b.col,dir:b.dir});p("iSortCol_"+a,b.col);p("sSortDir_"+a,b.dir)}),p("iSortingCols",k.length));b=q.ext.legacy.ajax;return null===b?a.sAjaxSource?g:n:b?g:n}function zb(a,b){var c=function(a,c){return b[a]!==n?b[a]:b[c]},d=va(a,b),e=c("sEcho","draw"),h=c("iTotalRecords",
53
+ "recordsTotal");c=c("iTotalDisplayRecords","recordsFiltered");if(e!==n){if(1*e<a.iDraw)return;a.iDraw=1*e}pa(a);a._iRecordsTotal=parseInt(h,10);a._iRecordsDisplay=parseInt(c,10);e=0;for(h=d.length;e<h;e++)R(a,d[e]);a.aiDisplay=a.aiDisplayMaster.slice();a.bAjaxDataGet=!1;S(a);a._bInitComplete||wa(a,b);a.bAjaxDataGet=!0;J(a,!1)}function va(a,b){a=f.isPlainObject(a.ajax)&&a.ajax.dataSrc!==n?a.ajax.dataSrc:a.sAjaxDataProp;return"data"===a?b.aaData||b[a]:""!==a?T(a)(b):b}function tb(a){var b=a.oClasses,
54
+ c=a.sTableId,d=a.oLanguage,e=a.oPreviousSearch,h=a.aanFeatures,g='<input type="search" class="'+b.sFilterInput+'"/>',k=d.sSearch;k=k.match(/_INPUT_/)?k.replace("_INPUT_",g):k+g;b=f("<div/>",{id:h.f?null:c+"_filter","class":b.sFilter}).append(f("<label/>").append(k));var l=function(){var b=this.value?this.value:"";b!=e.sSearch&&(ha(a,{sSearch:b,bRegex:e.bRegex,bSmart:e.bSmart,bCaseInsensitive:e.bCaseInsensitive}),a._iDisplayStart=0,S(a))};h=null!==a.searchDelay?a.searchDelay:"ssp"===I(a)?400:0;var m=
55
+ f("input",b).val(e.sSearch).attr("placeholder",d.sSearchPlaceholder).on("keyup.DT search.DT input.DT paste.DT cut.DT",h?Ra(l,h):l).on("mouseup",function(a){setTimeout(function(){l.call(m[0])},10)}).on("keypress.DT",function(a){if(13==a.keyCode)return!1}).attr("aria-controls",c);f(a.nTable).on("search.dt.DT",function(b,c){if(a===c)try{m[0]!==w.activeElement&&m.val(e.sSearch)}catch(u){}});return b[0]}function ha(a,b,c){var d=a.oPreviousSearch,e=a.aoPreSearchCols,h=function(a){d.sSearch=a.sSearch;d.bRegex=
56
+ a.bRegex;d.bSmart=a.bSmart;d.bCaseInsensitive=a.bCaseInsensitive},g=function(a){return a.bEscapeRegex!==n?!a.bEscapeRegex:a.bRegex};Ja(a);if("ssp"!=I(a)){Ab(a,b.sSearch,c,g(b),b.bSmart,b.bCaseInsensitive);h(b);for(b=0;b<e.length;b++)Bb(a,e[b].sSearch,b,g(e[b]),e[b].bSmart,e[b].bCaseInsensitive);Cb(a)}else h(b);a.bFiltered=!0;A(a,null,"search",[a])}function Cb(a){for(var b=q.ext.search,c=a.aiDisplay,d,e,h=0,g=b.length;h<g;h++){for(var k=[],l=0,m=c.length;l<m;l++)e=c[l],d=a.aoData[e],b[h](a,d._aFilterData,
57
+ e,d._aData,l)&&k.push(e);c.length=0;f.merge(c,k)}}function Bb(a,b,c,d,e,h){if(""!==b){var g=[],k=a.aiDisplay;d=Sa(b,d,e,h);for(e=0;e<k.length;e++)b=a.aoData[k[e]]._aFilterData[c],d.test(b)&&g.push(k[e]);a.aiDisplay=g}}function Ab(a,b,c,d,e,h){e=Sa(b,d,e,h);var g=a.oPreviousSearch.sSearch,k=a.aiDisplayMaster;h=[];0!==q.ext.search.length&&(c=!0);var f=Db(a);if(0>=b.length)a.aiDisplay=k.slice();else{if(f||c||d||g.length>b.length||0!==b.indexOf(g)||a.bSorted)a.aiDisplay=k.slice();b=a.aiDisplay;for(c=
58
+ 0;c<b.length;c++)e.test(a.aoData[b[c]]._sFilterRow)&&h.push(b[c]);a.aiDisplay=h}}function Sa(a,b,c,d){a=b?a:Ta(a);c&&(a="^(?=.*?"+f.map(a.match(/"[^"]+"|[^ ]+/g)||[""],function(a){if('"'===a.charAt(0)){var b=a.match(/^"(.*)"$/);a=b?b[1]:a}return a.replace('"',"")}).join(")(?=.*?")+").*$");return new RegExp(a,d?"i":"")}function Db(a){var b=a.aoColumns,c,d,e=q.ext.type.search;var h=!1;var g=0;for(c=a.aoData.length;g<c;g++){var k=a.aoData[g];if(!k._aFilterData){var f=[];var m=0;for(d=b.length;m<d;m++){h=
59
+ b[m];if(h.bSearchable){var p=F(a,g,m,"filter");e[h.sType]&&(p=e[h.sType](p));null===p&&(p="");"string"!==typeof p&&p.toString&&(p=p.toString())}else p="";p.indexOf&&-1!==p.indexOf("&")&&(xa.innerHTML=p,p=$b?xa.textContent:xa.innerText);p.replace&&(p=p.replace(/[\r\n\u2028]/g,""));f.push(p)}k._aFilterData=f;k._sFilterRow=f.join(" ");h=!0}}return h}function Eb(a){return{search:a.sSearch,smart:a.bSmart,regex:a.bRegex,caseInsensitive:a.bCaseInsensitive}}function Fb(a){return{sSearch:a.search,bSmart:a.smart,
60
+ bRegex:a.regex,bCaseInsensitive:a.caseInsensitive}}function wb(a){var b=a.sTableId,c=a.aanFeatures.i,d=f("<div/>",{"class":a.oClasses.sInfo,id:c?null:b+"_info"});c||(a.aoDrawCallback.push({fn:Gb,sName:"information"}),d.attr("role","status").attr("aria-live","polite"),f(a.nTable).attr("aria-describedby",b+"_info"));return d[0]}function Gb(a){var b=a.aanFeatures.i;if(0!==b.length){var c=a.oLanguage,d=a._iDisplayStart+1,e=a.fnDisplayEnd(),h=a.fnRecordsTotal(),g=a.fnRecordsDisplay(),k=g?c.sInfo:c.sInfoEmpty;
61
+ g!==h&&(k+=" "+c.sInfoFiltered);k+=c.sInfoPostFix;k=Hb(a,k);c=c.fnInfoCallback;null!==c&&(k=c.call(a.oInstance,a,d,e,h,g,k));f(b).html(k)}}function Hb(a,b){var c=a.fnFormatNumber,d=a._iDisplayStart+1,e=a._iDisplayLength,h=a.fnRecordsDisplay(),g=-1===e;return b.replace(/_START_/g,c.call(a,d)).replace(/_END_/g,c.call(a,a.fnDisplayEnd())).replace(/_MAX_/g,c.call(a,a.fnRecordsTotal())).replace(/_TOTAL_/g,c.call(a,h)).replace(/_PAGE_/g,c.call(a,g?1:Math.ceil(d/e))).replace(/_PAGES_/g,c.call(a,g?1:Math.ceil(h/
62
+ e)))}function ia(a){var b=a.iInitDisplayStart,c=a.aoColumns;var d=a.oFeatures;var e=a.bDeferLoading;if(a.bInitialised){rb(a);ob(a);fa(a,a.aoHeader);fa(a,a.aoFooter);J(a,!0);d.bAutoWidth&&Ia(a);var h=0;for(d=c.length;h<d;h++){var g=c[h];g.sWidth&&(g.nTh.style.width=B(g.sWidth))}A(a,null,"preInit",[a]);U(a);c=I(a);if("ssp"!=c||e)"ajax"==c?ua(a,[],function(c){var d=va(a,c);for(h=0;h<d.length;h++)R(a,d[h]);a.iInitDisplayStart=b;U(a);J(a,!1);wa(a,c)},a):(J(a,!1),wa(a))}else setTimeout(function(){ia(a)},
63
+ 200)}function wa(a,b){a._bInitComplete=!0;(b||a.oInit.aaData)&&Z(a);A(a,null,"plugin-init",[a,b]);A(a,"aoInitComplete","init",[a,b])}function Ua(a,b){b=parseInt(b,10);a._iDisplayLength=b;Va(a);A(a,null,"length",[a,b])}function sb(a){var b=a.oClasses,c=a.sTableId,d=a.aLengthMenu,e=f.isArray(d[0]),h=e?d[0]:d;d=e?d[1]:d;e=f("<select/>",{name:c+"_length","aria-controls":c,"class":b.sLengthSelect});for(var g=0,k=h.length;g<k;g++)e[0][g]=new Option("number"===typeof d[g]?a.fnFormatNumber(d[g]):d[g],h[g]);
64
+ var l=f("<div><label/></div>").addClass(b.sLength);a.aanFeatures.l||(l[0].id=c+"_length");l.children().append(a.oLanguage.sLengthMenu.replace("_MENU_",e[0].outerHTML));f("select",l).val(a._iDisplayLength).on("change.DT",function(b){Ua(a,f(this).val());S(a)});f(a.nTable).on("length.dt.DT",function(b,c,d){a===c&&f("select",l).val(d)});return l[0]}function xb(a){var b=a.sPaginationType,c=q.ext.pager[b],d="function"===typeof c,e=function(a){S(a)};b=f("<div/>").addClass(a.oClasses.sPaging+b)[0];var h=
65
+ a.aanFeatures;d||c.fnInit(a,b,e);h.p||(b.id=a.sTableId+"_paginate",a.aoDrawCallback.push({fn:function(a){if(d){var b=a._iDisplayStart,g=a._iDisplayLength,f=a.fnRecordsDisplay(),p=-1===g;b=p?0:Math.ceil(b/g);g=p?1:Math.ceil(f/g);f=c(b,g);var n;p=0;for(n=h.p.length;p<n;p++)Qa(a,"pageButton")(a,h.p[p],p,f,b,g)}else c.fnUpdate(a,e)},sName:"pagination"}));return b}function Wa(a,b,c){var d=a._iDisplayStart,e=a._iDisplayLength,h=a.fnRecordsDisplay();0===h||-1===e?d=0:"number"===typeof b?(d=b*e,d>h&&(d=0)):
66
+ "first"==b?d=0:"previous"==b?(d=0<=e?d-e:0,0>d&&(d=0)):"next"==b?d+e<h&&(d+=e):"last"==b?d=Math.floor((h-1)/e)*e:O(a,0,"Unknown paging action: "+b,5);b=a._iDisplayStart!==d;a._iDisplayStart=d;b&&(A(a,null,"page",[a]),c&&S(a));return b}function ub(a){return f("<div/>",{id:a.aanFeatures.r?null:a.sTableId+"_processing","class":a.oClasses.sProcessing}).html(a.oLanguage.sProcessing).insertBefore(a.nTable)[0]}function J(a,b){a.oFeatures.bProcessing&&f(a.aanFeatures.r).css("display",b?"block":"none");A(a,
67
+ null,"processing",[a,b])}function vb(a){var b=f(a.nTable);b.attr("role","grid");var c=a.oScroll;if(""===c.sX&&""===c.sY)return a.nTable;var d=c.sX,e=c.sY,h=a.oClasses,g=b.children("caption"),k=g.length?g[0]._captionSide:null,l=f(b[0].cloneNode(!1)),m=f(b[0].cloneNode(!1)),p=b.children("tfoot");p.length||(p=null);l=f("<div/>",{"class":h.sScrollWrapper}).append(f("<div/>",{"class":h.sScrollHead}).css({overflow:"hidden",position:"relative",border:0,width:d?d?B(d):null:"100%"}).append(f("<div/>",{"class":h.sScrollHeadInner}).css({"box-sizing":"content-box",
68
+ width:c.sXInner||"100%"}).append(l.removeAttr("id").css("margin-left",0).append("top"===k?g:null).append(b.children("thead"))))).append(f("<div/>",{"class":h.sScrollBody}).css({position:"relative",overflow:"auto",width:d?B(d):null}).append(b));p&&l.append(f("<div/>",{"class":h.sScrollFoot}).css({overflow:"hidden",border:0,width:d?d?B(d):null:"100%"}).append(f("<div/>",{"class":h.sScrollFootInner}).append(m.removeAttr("id").css("margin-left",0).append("bottom"===k?g:null).append(b.children("tfoot")))));
69
+ b=l.children();var n=b[0];h=b[1];var u=p?b[2]:null;if(d)f(h).on("scroll.DT",function(a){a=this.scrollLeft;n.scrollLeft=a;p&&(u.scrollLeft=a)});f(h).css("max-height",e);c.bCollapse||f(h).css("height",e);a.nScrollHead=n;a.nScrollBody=h;a.nScrollFoot=u;a.aoDrawCallback.push({fn:ma,sName:"scrolling"});return l[0]}function ma(a){var b=a.oScroll,c=b.sX,d=b.sXInner,e=b.sY;b=b.iBarWidth;var h=f(a.nScrollHead),g=h[0].style,k=h.children("div"),l=k[0].style,m=k.children("table");k=a.nScrollBody;var p=f(k),v=
70
+ k.style,u=f(a.nScrollFoot).children("div"),q=u.children("table"),t=f(a.nTHead),r=f(a.nTable),x=r[0],ya=x.style,w=a.nTFoot?f(a.nTFoot):null,y=a.oBrowser,A=y.bScrollOversize,ac=K(a.aoColumns,"nTh"),Xa=[],z=[],C=[],G=[],H,I=function(a){a=a.style;a.paddingTop="0";a.paddingBottom="0";a.borderTopWidth="0";a.borderBottomWidth="0";a.height=0};var D=k.scrollHeight>k.clientHeight;if(a.scrollBarVis!==D&&a.scrollBarVis!==n)a.scrollBarVis=D,Z(a);else{a.scrollBarVis=D;r.children("thead, tfoot").remove();if(w){var E=
71
+ w.clone().prependTo(r);var F=w.find("tr");E=E.find("tr")}var J=t.clone().prependTo(r);t=t.find("tr");D=J.find("tr");J.find("th, td").removeAttr("tabindex");c||(v.width="100%",h[0].style.width="100%");f.each(ta(a,J),function(b,c){H=aa(a,b);c.style.width=a.aoColumns[H].sWidth});w&&N(function(a){a.style.width=""},E);h=r.outerWidth();""===c?(ya.width="100%",A&&(r.find("tbody").height()>k.offsetHeight||"scroll"==p.css("overflow-y"))&&(ya.width=B(r.outerWidth()-b)),h=r.outerWidth()):""!==d&&(ya.width=B(d),
72
+ h=r.outerWidth());N(I,D);N(function(a){C.push(a.innerHTML);Xa.push(B(f(a).css("width")))},D);N(function(a,b){-1!==f.inArray(a,ac)&&(a.style.width=Xa[b])},t);f(D).height(0);w&&(N(I,E),N(function(a){G.push(a.innerHTML);z.push(B(f(a).css("width")))},E),N(function(a,b){a.style.width=z[b]},F),f(E).height(0));N(function(a,b){a.innerHTML='<div class="dataTables_sizing">'+C[b]+"</div>";a.childNodes[0].style.height="0";a.childNodes[0].style.overflow="hidden";a.style.width=Xa[b]},D);w&&N(function(a,b){a.innerHTML=
73
+ '<div class="dataTables_sizing">'+G[b]+"</div>";a.childNodes[0].style.height="0";a.childNodes[0].style.overflow="hidden";a.style.width=z[b]},E);r.outerWidth()<h?(F=k.scrollHeight>k.offsetHeight||"scroll"==p.css("overflow-y")?h+b:h,A&&(k.scrollHeight>k.offsetHeight||"scroll"==p.css("overflow-y"))&&(ya.width=B(F-b)),""!==c&&""===d||O(a,1,"Possible column misalignment",6)):F="100%";v.width=B(F);g.width=B(F);w&&(a.nScrollFoot.style.width=B(F));!e&&A&&(v.height=B(x.offsetHeight+b));c=r.outerWidth();m[0].style.width=
74
+ B(c);l.width=B(c);d=r.height()>k.clientHeight||"scroll"==p.css("overflow-y");e="padding"+(y.bScrollbarLeft?"Left":"Right");l[e]=d?b+"px":"0px";w&&(q[0].style.width=B(c),u[0].style.width=B(c),u[0].style[e]=d?b+"px":"0px");r.children("colgroup").insertBefore(r.children("thead"));p.trigger("scroll");!a.bSorted&&!a.bFiltered||a._drawHold||(k.scrollTop=0)}}function N(a,b,c){for(var d=0,e=0,h=b.length,g,k;e<h;){g=b[e].firstChild;for(k=c?c[e].firstChild:null;g;)1===g.nodeType&&(c?a(g,k,d):a(g,d),d++),g=
75
+ g.nextSibling,k=c?k.nextSibling:null;e++}}function Ia(a){var b=a.nTable,c=a.aoColumns,d=a.oScroll,e=d.sY,h=d.sX,g=d.sXInner,k=c.length,l=na(a,"bVisible"),m=f("th",a.nTHead),p=b.getAttribute("width"),n=b.parentNode,u=!1,q,t=a.oBrowser;d=t.bScrollOversize;(q=b.style.width)&&-1!==q.indexOf("%")&&(p=q);for(q=0;q<l.length;q++){var r=c[l[q]];null!==r.sWidth&&(r.sWidth=Ib(r.sWidthOrig,n),u=!0)}if(d||!u&&!h&&!e&&k==V(a)&&k==m.length)for(q=0;q<k;q++)l=aa(a,q),null!==l&&(c[l].sWidth=B(m.eq(q).width()));else{k=
76
+ f(b).clone().css("visibility","hidden").removeAttr("id");k.find("tbody tr").remove();var w=f("<tr/>").appendTo(k.find("tbody"));k.find("thead, tfoot").remove();k.append(f(a.nTHead).clone()).append(f(a.nTFoot).clone());k.find("tfoot th, tfoot td").css("width","");m=ta(a,k.find("thead")[0]);for(q=0;q<l.length;q++)r=c[l[q]],m[q].style.width=null!==r.sWidthOrig&&""!==r.sWidthOrig?B(r.sWidthOrig):"",r.sWidthOrig&&h&&f(m[q]).append(f("<div/>").css({width:r.sWidthOrig,margin:0,padding:0,border:0,height:1}));
77
+ if(a.aoData.length)for(q=0;q<l.length;q++)u=l[q],r=c[u],f(Jb(a,u)).clone(!1).append(r.sContentPadding).appendTo(w);f("[name]",k).removeAttr("name");r=f("<div/>").css(h||e?{position:"absolute",top:0,left:0,height:1,right:0,overflow:"hidden"}:{}).append(k).appendTo(n);h&&g?k.width(g):h?(k.css("width","auto"),k.removeAttr("width"),k.width()<n.clientWidth&&p&&k.width(n.clientWidth)):e?k.width(n.clientWidth):p&&k.width(p);for(q=e=0;q<l.length;q++)n=f(m[q]),g=n.outerWidth()-n.width(),n=t.bBounding?Math.ceil(m[q].getBoundingClientRect().width):
78
+ n.outerWidth(),e+=n,c[l[q]].sWidth=B(n-g);b.style.width=B(e);r.remove()}p&&(b.style.width=B(p));!p&&!h||a._reszEvt||(b=function(){f(y).on("resize.DT-"+a.sInstance,Ra(function(){Z(a)}))},d?setTimeout(b,1E3):b(),a._reszEvt=!0)}function Ib(a,b){if(!a)return 0;a=f("<div/>").css("width",B(a)).appendTo(b||w.body);b=a[0].offsetWidth;a.remove();return b}function Jb(a,b){var c=Kb(a,b);if(0>c)return null;var d=a.aoData[c];return d.nTr?d.anCells[b]:f("<td/>").html(F(a,c,b,"display"))[0]}function Kb(a,b){for(var c,
79
+ d=-1,e=-1,h=0,g=a.aoData.length;h<g;h++)c=F(a,h,b,"display")+"",c=c.replace(bc,""),c=c.replace(/&nbsp;/g," "),c.length>d&&(d=c.length,e=h);return e}function B(a){return null===a?"0px":"number"==typeof a?0>a?"0px":a+"px":a.match(/\d$/)?a+"px":a}function X(a){var b=[],c=a.aoColumns;var d=a.aaSortingFixed;var e=f.isPlainObject(d);var h=[];var g=function(a){a.length&&!f.isArray(a[0])?h.push(a):f.merge(h,a)};f.isArray(d)&&g(d);e&&d.pre&&g(d.pre);g(a.aaSorting);e&&d.post&&g(d.post);for(a=0;a<h.length;a++){var k=
80
+ h[a][0];g=c[k].aDataSort;d=0;for(e=g.length;d<e;d++){var l=g[d];var m=c[l].sType||"string";h[a]._idx===n&&(h[a]._idx=f.inArray(h[a][1],c[l].asSorting));b.push({src:k,col:l,dir:h[a][1],index:h[a]._idx,type:m,formatter:q.ext.type.order[m+"-pre"]})}}return b}function qb(a){var b,c=[],d=q.ext.type.order,e=a.aoData,h=0,g=a.aiDisplayMaster;Ja(a);var k=X(a);var f=0;for(b=k.length;f<b;f++){var m=k[f];m.formatter&&h++;Lb(a,m.col)}if("ssp"!=I(a)&&0!==k.length){f=0;for(b=g.length;f<b;f++)c[g[f]]=f;h===k.length?
81
+ g.sort(function(a,b){var d,h=k.length,g=e[a]._aSortData,f=e[b]._aSortData;for(d=0;d<h;d++){var l=k[d];var m=g[l.col];var p=f[l.col];m=m<p?-1:m>p?1:0;if(0!==m)return"asc"===l.dir?m:-m}m=c[a];p=c[b];return m<p?-1:m>p?1:0}):g.sort(function(a,b){var h,g=k.length,f=e[a]._aSortData,l=e[b]._aSortData;for(h=0;h<g;h++){var m=k[h];var p=f[m.col];var n=l[m.col];m=d[m.type+"-"+m.dir]||d["string-"+m.dir];p=m(p,n);if(0!==p)return p}p=c[a];n=c[b];return p<n?-1:p>n?1:0})}a.bSorted=!0}function Mb(a){var b=a.aoColumns,
82
+ c=X(a);a=a.oLanguage.oAria;for(var d=0,e=b.length;d<e;d++){var h=b[d];var g=h.asSorting;var k=h.sTitle.replace(/<.*?>/g,"");var f=h.nTh;f.removeAttribute("aria-sort");h.bSortable&&(0<c.length&&c[0].col==d?(f.setAttribute("aria-sort","asc"==c[0].dir?"ascending":"descending"),h=g[c[0].index+1]||g[0]):h=g[0],k+="asc"===h?a.sSortAscending:a.sSortDescending);f.setAttribute("aria-label",k)}}function Ya(a,b,c,d){var e=a.aaSorting,h=a.aoColumns[b].asSorting,g=function(a,b){var c=a._idx;c===n&&(c=f.inArray(a[1],
83
+ h));return c+1<h.length?c+1:b?null:0};"number"===typeof e[0]&&(e=a.aaSorting=[e]);c&&a.oFeatures.bSortMulti?(c=f.inArray(b,K(e,"0")),-1!==c?(b=g(e[c],!0),null===b&&1===e.length&&(b=0),null===b?e.splice(c,1):(e[c][1]=h[b],e[c]._idx=b)):(e.push([b,h[0],0]),e[e.length-1]._idx=0)):e.length&&e[0][0]==b?(b=g(e[0]),e.length=1,e[0][1]=h[b],e[0]._idx=b):(e.length=0,e.push([b,h[0]]),e[0]._idx=0);U(a);"function"==typeof d&&d(a)}function Pa(a,b,c,d){var e=a.aoColumns[c];Za(b,{},function(b){!1!==e.bSortable&&
84
+ (a.oFeatures.bProcessing?(J(a,!0),setTimeout(function(){Ya(a,c,b.shiftKey,d);"ssp"!==I(a)&&J(a,!1)},0)):Ya(a,c,b.shiftKey,d))})}function za(a){var b=a.aLastSort,c=a.oClasses.sSortColumn,d=X(a),e=a.oFeatures,h;if(e.bSort&&e.bSortClasses){e=0;for(h=b.length;e<h;e++){var g=b[e].src;f(K(a.aoData,"anCells",g)).removeClass(c+(2>e?e+1:3))}e=0;for(h=d.length;e<h;e++)g=d[e].src,f(K(a.aoData,"anCells",g)).addClass(c+(2>e?e+1:3))}a.aLastSort=d}function Lb(a,b){var c=a.aoColumns[b],d=q.ext.order[c.sSortDataType],
85
+ e;d&&(e=d.call(a.oInstance,a,b,ba(a,b)));for(var h,g=q.ext.type.order[c.sType+"-pre"],f=0,l=a.aoData.length;f<l;f++)if(c=a.aoData[f],c._aSortData||(c._aSortData=[]),!c._aSortData[b]||d)h=d?e[f]:F(a,f,b,"sort"),c._aSortData[b]=g?g(h):h}function Aa(a){if(a.oFeatures.bStateSave&&!a.bDestroying){var b={time:+new Date,start:a._iDisplayStart,length:a._iDisplayLength,order:f.extend(!0,[],a.aaSorting),search:Eb(a.oPreviousSearch),columns:f.map(a.aoColumns,function(b,d){return{visible:b.bVisible,search:Eb(a.aoPreSearchCols[d])}})};
86
+ A(a,"aoStateSaveParams","stateSaveParams",[a,b]);a.oSavedState=b;a.fnStateSaveCallback.call(a.oInstance,a,b)}}function Nb(a,b,c){var d,e,h=a.aoColumns;b=function(b){if(b&&b.time){var g=A(a,"aoStateLoadParams","stateLoadParams",[a,b]);if(-1===f.inArray(!1,g)&&(g=a.iStateDuration,!(0<g&&b.time<+new Date-1E3*g||b.columns&&h.length!==b.columns.length))){a.oLoadedState=f.extend(!0,{},b);b.start!==n&&(a._iDisplayStart=b.start,a.iInitDisplayStart=b.start);b.length!==n&&(a._iDisplayLength=b.length);b.order!==
87
+ n&&(a.aaSorting=[],f.each(b.order,function(b,c){a.aaSorting.push(c[0]>=h.length?[0,c[1]]:c)}));b.search!==n&&f.extend(a.oPreviousSearch,Fb(b.search));if(b.columns)for(d=0,e=b.columns.length;d<e;d++)g=b.columns[d],g.visible!==n&&(h[d].bVisible=g.visible),g.search!==n&&f.extend(a.aoPreSearchCols[d],Fb(g.search));A(a,"aoStateLoaded","stateLoaded",[a,b])}}c()};if(a.oFeatures.bStateSave){var g=a.fnStateLoadCallback.call(a.oInstance,a,b);g!==n&&b(g)}else c()}function Ba(a){var b=q.settings;a=f.inArray(a,
88
+ K(b,"nTable"));return-1!==a?b[a]:null}function O(a,b,c,d){c="DataTables warning: "+(a?"table id="+a.sTableId+" - ":"")+c;d&&(c+=". For more information about this error, please see http://datatables.net/tn/"+d);if(b)y.console&&console.log&&console.log(c);else if(b=q.ext,b=b.sErrMode||b.errMode,a&&A(a,null,"error",[a,d,c]),"alert"==b)alert(c);else{if("throw"==b)throw Error(c);"function"==typeof b&&b(a,d,c)}}function M(a,b,c,d){f.isArray(c)?f.each(c,function(c,d){f.isArray(d)?M(a,b,d[0],d[1]):M(a,b,
89
+ d)}):(d===n&&(d=c),b[c]!==n&&(a[d]=b[c]))}function $a(a,b,c){var d;for(d in b)if(b.hasOwnProperty(d)){var e=b[d];f.isPlainObject(e)?(f.isPlainObject(a[d])||(a[d]={}),f.extend(!0,a[d],e)):c&&"data"!==d&&"aaData"!==d&&f.isArray(e)?a[d]=e.slice():a[d]=e}return a}function Za(a,b,c){f(a).on("click.DT",b,function(b){f(a).trigger("blur");c(b)}).on("keypress.DT",b,function(a){13===a.which&&(a.preventDefault(),c(a))}).on("selectstart.DT",function(){return!1})}function D(a,b,c,d){c&&a[b].push({fn:c,sName:d})}
90
+ function A(a,b,c,d){var e=[];b&&(e=f.map(a[b].slice().reverse(),function(b,c){return b.fn.apply(a.oInstance,d)}));null!==c&&(b=f.Event(c+".dt"),f(a.nTable).trigger(b,d),e.push(b.result));return e}function Va(a){var b=a._iDisplayStart,c=a.fnDisplayEnd(),d=a._iDisplayLength;b>=c&&(b=c-d);b-=b%d;if(-1===d||0>b)b=0;a._iDisplayStart=b}function Qa(a,b){a=a.renderer;var c=q.ext.renderer[b];return f.isPlainObject(a)&&a[b]?c[a[b]]||c._:"string"===typeof a?c[a]||c._:c._}function I(a){return a.oFeatures.bServerSide?
91
+ "ssp":a.ajax||a.sAjaxSource?"ajax":"dom"}function ja(a,b){var c=Ob.numbers_length,d=Math.floor(c/2);b<=c?a=Y(0,b):a<=d?(a=Y(0,c-2),a.push("ellipsis"),a.push(b-1)):(a>=b-1-d?a=Y(b-(c-2),b):(a=Y(a-d+2,a+d-1),a.push("ellipsis"),a.push(b-1)),a.splice(0,0,"ellipsis"),a.splice(0,0,0));a.DT_el="span";return a}function Ga(a){f.each({num:function(b){return Ca(b,a)},"num-fmt":function(b){return Ca(b,a,ab)},"html-num":function(b){return Ca(b,a,Da)},"html-num-fmt":function(b){return Ca(b,a,Da,ab)}},function(b,
92
+ c){C.type.order[b+a+"-pre"]=c;b.match(/^html\-/)&&(C.type.search[b+a]=C.type.search.html)})}function Pb(a){return function(){var b=[Ba(this[q.ext.iApiIndex])].concat(Array.prototype.slice.call(arguments));return q.ext.internal[a].apply(this,b)}}var q=function(a){this.$=function(a,b){return this.api(!0).$(a,b)};this._=function(a,b){return this.api(!0).rows(a,b).data()};this.api=function(a){return a?new x(Ba(this[C.iApiIndex])):new x(this)};this.fnAddData=function(a,b){var c=this.api(!0);a=f.isArray(a)&&
93
+ (f.isArray(a[0])||f.isPlainObject(a[0]))?c.rows.add(a):c.row.add(a);(b===n||b)&&c.draw();return a.flatten().toArray()};this.fnAdjustColumnSizing=function(a){var b=this.api(!0).columns.adjust(),c=b.settings()[0],d=c.oScroll;a===n||a?b.draw(!1):(""!==d.sX||""!==d.sY)&&ma(c)};this.fnClearTable=function(a){var b=this.api(!0).clear();(a===n||a)&&b.draw()};this.fnClose=function(a){this.api(!0).row(a).child.hide()};this.fnDeleteRow=function(a,b,c){var d=this.api(!0);a=d.rows(a);var e=a.settings()[0],h=e.aoData[a[0][0]];
94
+ a.remove();b&&b.call(this,e,h);(c===n||c)&&d.draw();return h};this.fnDestroy=function(a){this.api(!0).destroy(a)};this.fnDraw=function(a){this.api(!0).draw(a)};this.fnFilter=function(a,b,c,d,e,f){e=this.api(!0);null===b||b===n?e.search(a,c,d,f):e.column(b).search(a,c,d,f);e.draw()};this.fnGetData=function(a,b){var c=this.api(!0);if(a!==n){var d=a.nodeName?a.nodeName.toLowerCase():"";return b!==n||"td"==d||"th"==d?c.cell(a,b).data():c.row(a).data()||null}return c.data().toArray()};this.fnGetNodes=
95
+ function(a){var b=this.api(!0);return a!==n?b.row(a).node():b.rows().nodes().flatten().toArray()};this.fnGetPosition=function(a){var b=this.api(!0),c=a.nodeName.toUpperCase();return"TR"==c?b.row(a).index():"TD"==c||"TH"==c?(a=b.cell(a).index(),[a.row,a.columnVisible,a.column]):null};this.fnIsOpen=function(a){return this.api(!0).row(a).child.isShown()};this.fnOpen=function(a,b,c){return this.api(!0).row(a).child(b,c).show().child()[0]};this.fnPageChange=function(a,b){a=this.api(!0).page(a);(b===n||
96
+ b)&&a.draw(!1)};this.fnSetColumnVis=function(a,b,c){a=this.api(!0).column(a).visible(b);(c===n||c)&&a.columns.adjust().draw()};this.fnSettings=function(){return Ba(this[C.iApiIndex])};this.fnSort=function(a){this.api(!0).order(a).draw()};this.fnSortListener=function(a,b,c){this.api(!0).order.listener(a,b,c)};this.fnUpdate=function(a,b,c,d,e){var h=this.api(!0);c===n||null===c?h.row(b).data(a):h.cell(b,c).data(a);(e===n||e)&&h.columns.adjust();(d===n||d)&&h.draw();return 0};this.fnVersionCheck=C.fnVersionCheck;
97
+ var b=this,c=a===n,d=this.length;c&&(a={});this.oApi=this.internal=C.internal;for(var e in q.ext.internal)e&&(this[e]=Pb(e));this.each(function(){var e={},g=1<d?$a(e,a,!0):a,k=0,l;e=this.getAttribute("id");var m=!1,p=q.defaults,v=f(this);if("table"!=this.nodeName.toLowerCase())O(null,0,"Non-table node initialisation ("+this.nodeName+")",2);else{ib(p);jb(p.column);L(p,p,!0);L(p.column,p.column,!0);L(p,f.extend(g,v.data()),!0);var u=q.settings;k=0;for(l=u.length;k<l;k++){var t=u[k];if(t.nTable==this||
98
+ t.nTHead&&t.nTHead.parentNode==this||t.nTFoot&&t.nTFoot.parentNode==this){var w=g.bRetrieve!==n?g.bRetrieve:p.bRetrieve;if(c||w)return t.oInstance;if(g.bDestroy!==n?g.bDestroy:p.bDestroy){t.oInstance.fnDestroy();break}else{O(t,0,"Cannot reinitialise DataTable",3);return}}if(t.sTableId==this.id){u.splice(k,1);break}}if(null===e||""===e)this.id=e="DataTables_Table_"+q.ext._unique++;var r=f.extend(!0,{},q.models.oSettings,{sDestroyWidth:v[0].style.width,sInstance:e,sTableId:e});r.nTable=this;r.oApi=
99
+ b.internal;r.oInit=g;u.push(r);r.oInstance=1===b.length?b:v.dataTable();ib(g);Fa(g.oLanguage);g.aLengthMenu&&!g.iDisplayLength&&(g.iDisplayLength=f.isArray(g.aLengthMenu[0])?g.aLengthMenu[0][0]:g.aLengthMenu[0]);g=$a(f.extend(!0,{},p),g);M(r.oFeatures,g,"bPaginate bLengthChange bFilter bSort bSortMulti bInfo bProcessing bAutoWidth bSortClasses bServerSide bDeferRender".split(" "));M(r,g,["asStripeClasses","ajax","fnServerData","fnFormatNumber","sServerMethod","aaSorting","aaSortingFixed","aLengthMenu",
100
+ "sPaginationType","sAjaxSource","sAjaxDataProp","iStateDuration","sDom","bSortCellsTop","iTabIndex","fnStateLoadCallback","fnStateSaveCallback","renderer","searchDelay","rowId",["iCookieDuration","iStateDuration"],["oSearch","oPreviousSearch"],["aoSearchCols","aoPreSearchCols"],["iDisplayLength","_iDisplayLength"]]);M(r.oScroll,g,[["sScrollX","sX"],["sScrollXInner","sXInner"],["sScrollY","sY"],["bScrollCollapse","bCollapse"]]);M(r.oLanguage,g,"fnInfoCallback");D(r,"aoDrawCallback",g.fnDrawCallback,
101
+ "user");D(r,"aoServerParams",g.fnServerParams,"user");D(r,"aoStateSaveParams",g.fnStateSaveParams,"user");D(r,"aoStateLoadParams",g.fnStateLoadParams,"user");D(r,"aoStateLoaded",g.fnStateLoaded,"user");D(r,"aoRowCallback",g.fnRowCallback,"user");D(r,"aoRowCreatedCallback",g.fnCreatedRow,"user");D(r,"aoHeaderCallback",g.fnHeaderCallback,"user");D(r,"aoFooterCallback",g.fnFooterCallback,"user");D(r,"aoInitComplete",g.fnInitComplete,"user");D(r,"aoPreDrawCallback",g.fnPreDrawCallback,"user");r.rowIdFn=
102
+ T(g.rowId);kb(r);var x=r.oClasses;f.extend(x,q.ext.classes,g.oClasses);v.addClass(x.sTable);r.iInitDisplayStart===n&&(r.iInitDisplayStart=g.iDisplayStart,r._iDisplayStart=g.iDisplayStart);null!==g.iDeferLoading&&(r.bDeferLoading=!0,e=f.isArray(g.iDeferLoading),r._iRecordsDisplay=e?g.iDeferLoading[0]:g.iDeferLoading,r._iRecordsTotal=e?g.iDeferLoading[1]:g.iDeferLoading);var y=r.oLanguage;f.extend(!0,y,g.oLanguage);y.sUrl&&(f.ajax({dataType:"json",url:y.sUrl,success:function(a){Fa(a);L(p.oLanguage,
103
+ a);f.extend(!0,y,a);ia(r)},error:function(){ia(r)}}),m=!0);null===g.asStripeClasses&&(r.asStripeClasses=[x.sStripeOdd,x.sStripeEven]);e=r.asStripeClasses;var z=v.children("tbody").find("tr").eq(0);-1!==f.inArray(!0,f.map(e,function(a,b){return z.hasClass(a)}))&&(f("tbody tr",this).removeClass(e.join(" ")),r.asDestroyStripes=e.slice());e=[];u=this.getElementsByTagName("thead");0!==u.length&&(ea(r.aoHeader,u[0]),e=ta(r));if(null===g.aoColumns)for(u=[],k=0,l=e.length;k<l;k++)u.push(null);else u=g.aoColumns;
104
+ k=0;for(l=u.length;k<l;k++)Ha(r,e?e[k]:null);mb(r,g.aoColumnDefs,u,function(a,b){la(r,a,b)});if(z.length){var B=function(a,b){return null!==a.getAttribute("data-"+b)?b:null};f(z[0]).children("th, td").each(function(a,b){var c=r.aoColumns[a];if(c.mData===a){var d=B(b,"sort")||B(b,"order");b=B(b,"filter")||B(b,"search");if(null!==d||null!==b)c.mData={_:a+".display",sort:null!==d?a+".@data-"+d:n,type:null!==d?a+".@data-"+d:n,filter:null!==b?a+".@data-"+b:n},la(r,a)}})}var C=r.oFeatures;e=function(){if(g.aaSorting===
105
+ n){var a=r.aaSorting;k=0;for(l=a.length;k<l;k++)a[k][1]=r.aoColumns[k].asSorting[0]}za(r);C.bSort&&D(r,"aoDrawCallback",function(){if(r.bSorted){var a=X(r),b={};f.each(a,function(a,c){b[c.src]=c.dir});A(r,null,"order",[r,a,b]);Mb(r)}});D(r,"aoDrawCallback",function(){(r.bSorted||"ssp"===I(r)||C.bDeferRender)&&za(r)},"sc");a=v.children("caption").each(function(){this._captionSide=f(this).css("caption-side")});var b=v.children("thead");0===b.length&&(b=f("<thead/>").appendTo(v));r.nTHead=b[0];b=v.children("tbody");
106
+ 0===b.length&&(b=f("<tbody/>").appendTo(v));r.nTBody=b[0];b=v.children("tfoot");0===b.length&&0<a.length&&(""!==r.oScroll.sX||""!==r.oScroll.sY)&&(b=f("<tfoot/>").appendTo(v));0===b.length||0===b.children().length?v.addClass(x.sNoFooter):0<b.length&&(r.nTFoot=b[0],ea(r.aoFooter,r.nTFoot));if(g.aaData)for(k=0;k<g.aaData.length;k++)R(r,g.aaData[k]);else(r.bDeferLoading||"dom"==I(r))&&oa(r,f(r.nTBody).children("tr"));r.aiDisplay=r.aiDisplayMaster.slice();r.bInitialised=!0;!1===m&&ia(r)};g.bStateSave?
107
+ (C.bStateSave=!0,D(r,"aoDrawCallback",Aa,"state_save"),Nb(r,g,e)):e()}});b=null;return this},C,t,z,bb={},Qb=/[\r\n\u2028]/g,Da=/<.*?>/g,cc=/^\d{2,4}[\.\/\-]\d{1,2}[\.\/\-]\d{1,2}([T ]{1}\d{1,2}[:\.]\d{2}([\.:]\d{2})?)?$/,dc=/(\/|\.|\*|\+|\?|\||\(|\)|\[|\]|\{|\}|\\|\$|\^|\-)/g,ab=/[',$£€¥%\u2009\u202F\u20BD\u20a9\u20BArfkɃΞ]/gi,P=function(a){return a&&!0!==a&&"-"!==a?!1:!0},Rb=function(a){var b=parseInt(a,10);return!isNaN(b)&&isFinite(a)?b:null},Sb=function(a,b){bb[b]||(bb[b]=new RegExp(Ta(b),"g"));
108
+ return"string"===typeof a&&"."!==b?a.replace(/\./g,"").replace(bb[b],"."):a},cb=function(a,b,c){var d="string"===typeof a;if(P(a))return!0;b&&d&&(a=Sb(a,b));c&&d&&(a=a.replace(ab,""));return!isNaN(parseFloat(a))&&isFinite(a)},Tb=function(a,b,c){return P(a)?!0:P(a)||"string"===typeof a?cb(a.replace(Da,""),b,c)?!0:null:null},K=function(a,b,c){var d=[],e=0,h=a.length;if(c!==n)for(;e<h;e++)a[e]&&a[e][b]&&d.push(a[e][b][c]);else for(;e<h;e++)a[e]&&d.push(a[e][b]);return d},ka=function(a,b,c,d){var e=[],
109
+ h=0,g=b.length;if(d!==n)for(;h<g;h++)a[b[h]][c]&&e.push(a[b[h]][c][d]);else for(;h<g;h++)e.push(a[b[h]][c]);return e},Y=function(a,b){var c=[];if(b===n){b=0;var d=a}else d=b,b=a;for(a=b;a<d;a++)c.push(a);return c},Ub=function(a){for(var b=[],c=0,d=a.length;c<d;c++)a[c]&&b.push(a[c]);return b},sa=function(a){a:{if(!(2>a.length)){var b=a.slice().sort();for(var c=b[0],d=1,e=b.length;d<e;d++){if(b[d]===c){b=!1;break a}c=b[d]}}b=!0}if(b)return a.slice();b=[];e=a.length;var h,g=0;d=0;a:for(;d<e;d++){c=
110
+ a[d];for(h=0;h<g;h++)if(b[h]===c)continue a;b.push(c);g++}return b};q.util={throttle:function(a,b){var c=b!==n?b:200,d,e;return function(){var b=this,g=+new Date,f=arguments;d&&g<d+c?(clearTimeout(e),e=setTimeout(function(){d=n;a.apply(b,f)},c)):(d=g,a.apply(b,f))}},escapeRegex:function(a){return a.replace(dc,"\\$1")}};var E=function(a,b,c){a[b]!==n&&(a[c]=a[b])},ca=/\[.*?\]$/,W=/\(\)$/,Ta=q.util.escapeRegex,xa=f("<div>")[0],$b=xa.textContent!==n,bc=/<.*?>/g,Ra=q.util.throttle,Vb=[],G=Array.prototype,
111
+ ec=function(a){var b,c=q.settings,d=f.map(c,function(a,b){return a.nTable});if(a){if(a.nTable&&a.oApi)return[a];if(a.nodeName&&"table"===a.nodeName.toLowerCase()){var e=f.inArray(a,d);return-1!==e?[c[e]]:null}if(a&&"function"===typeof a.settings)return a.settings().toArray();"string"===typeof a?b=f(a):a instanceof f&&(b=a)}else return[];if(b)return b.map(function(a){e=f.inArray(this,d);return-1!==e?c[e]:null}).toArray()};var x=function(a,b){if(!(this instanceof x))return new x(a,b);var c=[],d=function(a){(a=
112
+ ec(a))&&c.push.apply(c,a)};if(f.isArray(a))for(var e=0,h=a.length;e<h;e++)d(a[e]);else d(a);this.context=sa(c);b&&f.merge(this,b);this.selector={rows:null,cols:null,opts:null};x.extend(this,this,Vb)};q.Api=x;f.extend(x.prototype,{any:function(){return 0!==this.count()},concat:G.concat,context:[],count:function(){return this.flatten().length},each:function(a){for(var b=0,c=this.length;b<c;b++)a.call(this,this[b],b,this);return this},eq:function(a){var b=this.context;return b.length>a?new x(b[a],this[a]):
113
+ null},filter:function(a){var b=[];if(G.filter)b=G.filter.call(this,a,this);else for(var c=0,d=this.length;c<d;c++)a.call(this,this[c],c,this)&&b.push(this[c]);return new x(this.context,b)},flatten:function(){var a=[];return new x(this.context,a.concat.apply(a,this.toArray()))},join:G.join,indexOf:G.indexOf||function(a,b){b=b||0;for(var c=this.length;b<c;b++)if(this[b]===a)return b;return-1},iterator:function(a,b,c,d){var e=[],h,g,f=this.context,l,m=this.selector;"string"===typeof a&&(d=c,c=b,b=a,
114
+ a=!1);var p=0;for(h=f.length;p<h;p++){var q=new x(f[p]);if("table"===b){var u=c.call(q,f[p],p);u!==n&&e.push(u)}else if("columns"===b||"rows"===b)u=c.call(q,f[p],this[p],p),u!==n&&e.push(u);else if("column"===b||"column-rows"===b||"row"===b||"cell"===b){var t=this[p];"column-rows"===b&&(l=Ea(f[p],m.opts));var w=0;for(g=t.length;w<g;w++)u=t[w],u="cell"===b?c.call(q,f[p],u.row,u.column,p,w):c.call(q,f[p],u,p,w,l),u!==n&&e.push(u)}}return e.length||d?(a=new x(f,a?e.concat.apply([],e):e),b=a.selector,
115
+ b.rows=m.rows,b.cols=m.cols,b.opts=m.opts,a):this},lastIndexOf:G.lastIndexOf||function(a,b){return this.indexOf.apply(this.toArray.reverse(),arguments)},length:0,map:function(a){var b=[];if(G.map)b=G.map.call(this,a,this);else for(var c=0,d=this.length;c<d;c++)b.push(a.call(this,this[c],c));return new x(this.context,b)},pluck:function(a){return this.map(function(b){return b[a]})},pop:G.pop,push:G.push,reduce:G.reduce||function(a,b){return lb(this,a,b,0,this.length,1)},reduceRight:G.reduceRight||function(a,
116
+ b){return lb(this,a,b,this.length-1,-1,-1)},reverse:G.reverse,selector:null,shift:G.shift,slice:function(){return new x(this.context,this)},sort:G.sort,splice:G.splice,toArray:function(){return G.slice.call(this)},to$:function(){return f(this)},toJQuery:function(){return f(this)},unique:function(){return new x(this.context,sa(this))},unshift:G.unshift});x.extend=function(a,b,c){if(c.length&&b&&(b instanceof x||b.__dt_wrapper)){var d,e=function(a,b,c){return function(){var d=b.apply(a,arguments);x.extend(d,
117
+ d,c.methodExt);return d}};var h=0;for(d=c.length;h<d;h++){var f=c[h];b[f.name]="function"===f.type?e(a,f.val,f):"object"===f.type?{}:f.val;b[f.name].__dt_wrapper=!0;x.extend(a,b[f.name],f.propExt)}}};x.register=t=function(a,b){if(f.isArray(a))for(var c=0,d=a.length;c<d;c++)x.register(a[c],b);else{d=a.split(".");var e=Vb,h;a=0;for(c=d.length;a<c;a++){var g=(h=-1!==d[a].indexOf("()"))?d[a].replace("()",""):d[a];a:{var k=0;for(var l=e.length;k<l;k++)if(e[k].name===g){k=e[k];break a}k=null}k||(k={name:g,
118
+ val:{},methodExt:[],propExt:[],type:"object"},e.push(k));a===c-1?(k.val=b,k.type="function"===typeof b?"function":f.isPlainObject(b)?"object":"other"):e=h?k.methodExt:k.propExt}}};x.registerPlural=z=function(a,b,c){x.register(a,c);x.register(b,function(){var a=c.apply(this,arguments);return a===this?this:a instanceof x?a.length?f.isArray(a[0])?new x(a.context,a[0]):a[0]:n:a})};var Wb=function(a,b){if(f.isArray(a))return f.map(a,function(a){return Wb(a,b)});if("number"===typeof a)return[b[a]];var c=
119
+ f.map(b,function(a,b){return a.nTable});return f(c).filter(a).map(function(a){a=f.inArray(this,c);return b[a]}).toArray()};t("tables()",function(a){return a!==n&&null!==a?new x(Wb(a,this.context)):this});t("table()",function(a){a=this.tables(a);var b=a.context;return b.length?new x(b[0]):a});z("tables().nodes()","table().node()",function(){return this.iterator("table",function(a){return a.nTable},1)});z("tables().body()","table().body()",function(){return this.iterator("table",function(a){return a.nTBody},
120
+ 1)});z("tables().header()","table().header()",function(){return this.iterator("table",function(a){return a.nTHead},1)});z("tables().footer()","table().footer()",function(){return this.iterator("table",function(a){return a.nTFoot},1)});z("tables().containers()","table().container()",function(){return this.iterator("table",function(a){return a.nTableWrapper},1)});t("draw()",function(a){return this.iterator("table",function(b){"page"===a?S(b):("string"===typeof a&&(a="full-hold"===a?!1:!0),U(b,!1===
121
+ a))})});t("page()",function(a){return a===n?this.page.info().page:this.iterator("table",function(b){Wa(b,a)})});t("page.info()",function(a){if(0===this.context.length)return n;a=this.context[0];var b=a._iDisplayStart,c=a.oFeatures.bPaginate?a._iDisplayLength:-1,d=a.fnRecordsDisplay(),e=-1===c;return{page:e?0:Math.floor(b/c),pages:e?1:Math.ceil(d/c),start:b,end:a.fnDisplayEnd(),length:c,recordsTotal:a.fnRecordsTotal(),recordsDisplay:d,serverSide:"ssp"===I(a)}});t("page.len()",function(a){return a===
122
+ n?0!==this.context.length?this.context[0]._iDisplayLength:n:this.iterator("table",function(b){Ua(b,a)})});var Xb=function(a,b,c){if(c){var d=new x(a);d.one("draw",function(){c(d.ajax.json())})}if("ssp"==I(a))U(a,b);else{J(a,!0);var e=a.jqXHR;e&&4!==e.readyState&&e.abort();ua(a,[],function(c){pa(a);c=va(a,c);for(var d=0,e=c.length;d<e;d++)R(a,c[d]);U(a,b);J(a,!1)})}};t("ajax.json()",function(){var a=this.context;if(0<a.length)return a[0].json});t("ajax.params()",function(){var a=this.context;if(0<
123
+ a.length)return a[0].oAjaxData});t("ajax.reload()",function(a,b){return this.iterator("table",function(c){Xb(c,!1===b,a)})});t("ajax.url()",function(a){var b=this.context;if(a===n){if(0===b.length)return n;b=b[0];return b.ajax?f.isPlainObject(b.ajax)?b.ajax.url:b.ajax:b.sAjaxSource}return this.iterator("table",function(b){f.isPlainObject(b.ajax)?b.ajax.url=a:b.ajax=a})});t("ajax.url().load()",function(a,b){return this.iterator("table",function(c){Xb(c,!1===b,a)})});var db=function(a,b,c,d,e){var h=
124
+ [],g,k,l;var m=typeof b;b&&"string"!==m&&"function"!==m&&b.length!==n||(b=[b]);m=0;for(k=b.length;m<k;m++){var p=b[m]&&b[m].split&&!b[m].match(/[\[\(:]/)?b[m].split(","):[b[m]];var q=0;for(l=p.length;q<l;q++)(g=c("string"===typeof p[q]?f.trim(p[q]):p[q]))&&g.length&&(h=h.concat(g))}a=C.selector[a];if(a.length)for(m=0,k=a.length;m<k;m++)h=a[m](d,e,h);return sa(h)},eb=function(a){a||(a={});a.filter&&a.search===n&&(a.search=a.filter);return f.extend({search:"none",order:"current",page:"all"},a)},fb=
125
+ function(a){for(var b=0,c=a.length;b<c;b++)if(0<a[b].length)return a[0]=a[b],a[0].length=1,a.length=1,a.context=[a.context[b]],a;a.length=0;return a},Ea=function(a,b){var c=[],d=a.aiDisplay;var e=a.aiDisplayMaster;var h=b.search;var g=b.order;b=b.page;if("ssp"==I(a))return"removed"===h?[]:Y(0,e.length);if("current"==b)for(g=a._iDisplayStart,a=a.fnDisplayEnd();g<a;g++)c.push(d[g]);else if("current"==g||"applied"==g)if("none"==h)c=e.slice();else if("applied"==h)c=d.slice();else{if("removed"==h){var k=
126
+ {};g=0;for(a=d.length;g<a;g++)k[d[g]]=null;c=f.map(e,function(a){return k.hasOwnProperty(a)?null:a})}}else if("index"==g||"original"==g)for(g=0,a=a.aoData.length;g<a;g++)"none"==h?c.push(g):(e=f.inArray(g,d),(-1===e&&"removed"==h||0<=e&&"applied"==h)&&c.push(g));return c},fc=function(a,b,c){var d;return db("row",b,function(b){var e=Rb(b),g=a.aoData;if(null!==e&&!c)return[e];d||(d=Ea(a,c));if(null!==e&&-1!==f.inArray(e,d))return[e];if(null===b||b===n||""===b)return d;if("function"===typeof b)return f.map(d,
127
+ function(a){var c=g[a];return b(a,c._aData,c.nTr)?a:null});if(b.nodeName){e=b._DT_RowIndex;var k=b._DT_CellIndex;if(e!==n)return g[e]&&g[e].nTr===b?[e]:[];if(k)return g[k.row]&&g[k.row].nTr===b.parentNode?[k.row]:[];e=f(b).closest("*[data-dt-row]");return e.length?[e.data("dt-row")]:[]}if("string"===typeof b&&"#"===b.charAt(0)&&(e=a.aIds[b.replace(/^#/,"")],e!==n))return[e.idx];e=Ub(ka(a.aoData,d,"nTr"));return f(e).filter(b).map(function(){return this._DT_RowIndex}).toArray()},a,c)};t("rows()",function(a,
128
+ b){a===n?a="":f.isPlainObject(a)&&(b=a,a="");b=eb(b);var c=this.iterator("table",function(c){return fc(c,a,b)},1);c.selector.rows=a;c.selector.opts=b;return c});t("rows().nodes()",function(){return this.iterator("row",function(a,b){return a.aoData[b].nTr||n},1)});t("rows().data()",function(){return this.iterator(!0,"rows",function(a,b){return ka(a.aoData,b,"_aData")},1)});z("rows().cache()","row().cache()",function(a){return this.iterator("row",function(b,c){b=b.aoData[c];return"search"===a?b._aFilterData:
129
+ b._aSortData},1)});z("rows().invalidate()","row().invalidate()",function(a){return this.iterator("row",function(b,c){da(b,c,a)})});z("rows().indexes()","row().index()",function(){return this.iterator("row",function(a,b){return b},1)});z("rows().ids()","row().id()",function(a){for(var b=[],c=this.context,d=0,e=c.length;d<e;d++)for(var f=0,g=this[d].length;f<g;f++){var k=c[d].rowIdFn(c[d].aoData[this[d][f]]._aData);b.push((!0===a?"#":"")+k)}return new x(c,b)});z("rows().remove()","row().remove()",function(){var a=
130
+ this;this.iterator("row",function(b,c,d){var e=b.aoData,f=e[c],g,k;e.splice(c,1);var l=0;for(g=e.length;l<g;l++){var m=e[l];var p=m.anCells;null!==m.nTr&&(m.nTr._DT_RowIndex=l);if(null!==p)for(m=0,k=p.length;m<k;m++)p[m]._DT_CellIndex.row=l}qa(b.aiDisplayMaster,c);qa(b.aiDisplay,c);qa(a[d],c,!1);0<b._iRecordsDisplay&&b._iRecordsDisplay--;Va(b);c=b.rowIdFn(f._aData);c!==n&&delete b.aIds[c]});this.iterator("table",function(a){for(var b=0,d=a.aoData.length;b<d;b++)a.aoData[b].idx=b});return this});t("rows.add()",
131
+ function(a){var b=this.iterator("table",function(b){var c,d=[];var f=0;for(c=a.length;f<c;f++){var k=a[f];k.nodeName&&"TR"===k.nodeName.toUpperCase()?d.push(oa(b,k)[0]):d.push(R(b,k))}return d},1),c=this.rows(-1);c.pop();f.merge(c,b);return c});t("row()",function(a,b){return fb(this.rows(a,b))});t("row().data()",function(a){var b=this.context;if(a===n)return b.length&&this.length?b[0].aoData[this[0]]._aData:n;var c=b[0].aoData[this[0]];c._aData=a;f.isArray(a)&&c.nTr&&c.nTr.id&&Q(b[0].rowId)(a,c.nTr.id);
132
+ da(b[0],this[0],"data");return this});t("row().node()",function(){var a=this.context;return a.length&&this.length?a[0].aoData[this[0]].nTr||null:null});t("row.add()",function(a){a instanceof f&&a.length&&(a=a[0]);var b=this.iterator("table",function(b){return a.nodeName&&"TR"===a.nodeName.toUpperCase()?oa(b,a)[0]:R(b,a)});return this.row(b[0])});var gc=function(a,b,c,d){var e=[],h=function(b,c){if(f.isArray(b)||b instanceof f)for(var d=0,g=b.length;d<g;d++)h(b[d],c);else b.nodeName&&"tr"===b.nodeName.toLowerCase()?
133
+ e.push(b):(d=f("<tr><td/></tr>").addClass(c),f("td",d).addClass(c).html(b)[0].colSpan=V(a),e.push(d[0]))};h(c,d);b._details&&b._details.detach();b._details=f(e);b._detailsShow&&b._details.insertAfter(b.nTr)},gb=function(a,b){var c=a.context;c.length&&(a=c[0].aoData[b!==n?b:a[0]])&&a._details&&(a._details.remove(),a._detailsShow=n,a._details=n)},Yb=function(a,b){var c=a.context;c.length&&a.length&&(a=c[0].aoData[a[0]],a._details&&((a._detailsShow=b)?a._details.insertAfter(a.nTr):a._details.detach(),
134
+ hc(c[0])))},hc=function(a){var b=new x(a),c=a.aoData;b.off("draw.dt.DT_details column-visibility.dt.DT_details destroy.dt.DT_details");0<K(c,"_details").length&&(b.on("draw.dt.DT_details",function(d,e){a===e&&b.rows({page:"current"}).eq(0).each(function(a){a=c[a];a._detailsShow&&a._details.insertAfter(a.nTr)})}),b.on("column-visibility.dt.DT_details",function(b,e,f,g){if(a===e)for(e=V(e),f=0,g=c.length;f<g;f++)b=c[f],b._details&&b._details.children("td[colspan]").attr("colspan",e)}),b.on("destroy.dt.DT_details",
135
+ function(d,e){if(a===e)for(d=0,e=c.length;d<e;d++)c[d]._details&&gb(b,d)}))};t("row().child()",function(a,b){var c=this.context;if(a===n)return c.length&&this.length?c[0].aoData[this[0]]._details:n;!0===a?this.child.show():!1===a?gb(this):c.length&&this.length&&gc(c[0],c[0].aoData[this[0]],a,b);return this});t(["row().child.show()","row().child().show()"],function(a){Yb(this,!0);return this});t(["row().child.hide()","row().child().hide()"],function(){Yb(this,!1);return this});t(["row().child.remove()",
136
+ "row().child().remove()"],function(){gb(this);return this});t("row().child.isShown()",function(){var a=this.context;return a.length&&this.length?a[0].aoData[this[0]]._detailsShow||!1:!1});var ic=/^([^:]+):(name|visIdx|visible)$/,Zb=function(a,b,c,d,e){c=[];d=0;for(var f=e.length;d<f;d++)c.push(F(a,e[d],b));return c},jc=function(a,b,c){var d=a.aoColumns,e=K(d,"sName"),h=K(d,"nTh");return db("column",b,function(b){var g=Rb(b);if(""===b)return Y(d.length);if(null!==g)return[0<=g?g:d.length+g];if("function"===
137
+ typeof b){var l=Ea(a,c);return f.map(d,function(c,d){return b(d,Zb(a,d,0,0,l),h[d])?d:null})}var m="string"===typeof b?b.match(ic):"";if(m)switch(m[2]){case "visIdx":case "visible":g=parseInt(m[1],10);if(0>g){var p=f.map(d,function(a,b){return a.bVisible?b:null});return[p[p.length+g]]}return[aa(a,g)];case "name":return f.map(e,function(a,b){return a===m[1]?b:null});default:return[]}if(b.nodeName&&b._DT_CellIndex)return[b._DT_CellIndex.column];g=f(h).filter(b).map(function(){return f.inArray(this,
138
+ h)}).toArray();if(g.length||!b.nodeName)return g;g=f(b).closest("*[data-dt-column]");return g.length?[g.data("dt-column")]:[]},a,c)};t("columns()",function(a,b){a===n?a="":f.isPlainObject(a)&&(b=a,a="");b=eb(b);var c=this.iterator("table",function(c){return jc(c,a,b)},1);c.selector.cols=a;c.selector.opts=b;return c});z("columns().header()","column().header()",function(a,b){return this.iterator("column",function(a,b){return a.aoColumns[b].nTh},1)});z("columns().footer()","column().footer()",function(a,
139
+ b){return this.iterator("column",function(a,b){return a.aoColumns[b].nTf},1)});z("columns().data()","column().data()",function(){return this.iterator("column-rows",Zb,1)});z("columns().dataSrc()","column().dataSrc()",function(){return this.iterator("column",function(a,b){return a.aoColumns[b].mData},1)});z("columns().cache()","column().cache()",function(a){return this.iterator("column-rows",function(b,c,d,e,f){return ka(b.aoData,f,"search"===a?"_aFilterData":"_aSortData",c)},1)});z("columns().nodes()",
140
+ "column().nodes()",function(){return this.iterator("column-rows",function(a,b,c,d,e){return ka(a.aoData,e,"anCells",b)},1)});z("columns().visible()","column().visible()",function(a,b){var c=this,d=this.iterator("column",function(b,c){if(a===n)return b.aoColumns[c].bVisible;var d=b.aoColumns,e=d[c],h=b.aoData,m;if(a!==n&&e.bVisible!==a){if(a){var p=f.inArray(!0,K(d,"bVisible"),c+1);d=0;for(m=h.length;d<m;d++){var q=h[d].nTr;b=h[d].anCells;q&&q.insertBefore(b[c],b[p]||null)}}else f(K(b.aoData,"anCells",
141
+ c)).detach();e.bVisible=a}});a!==n&&this.iterator("table",function(d){fa(d,d.aoHeader);fa(d,d.aoFooter);d.aiDisplay.length||f(d.nTBody).find("td[colspan]").attr("colspan",V(d));Aa(d);c.iterator("column",function(c,d){A(c,null,"column-visibility",[c,d,a,b])});(b===n||b)&&c.columns.adjust()});return d});z("columns().indexes()","column().index()",function(a){return this.iterator("column",function(b,c){return"visible"===a?ba(b,c):c},1)});t("columns.adjust()",function(){return this.iterator("table",function(a){Z(a)},
142
+ 1)});t("column.index()",function(a,b){if(0!==this.context.length){var c=this.context[0];if("fromVisible"===a||"toData"===a)return aa(c,b);if("fromData"===a||"toVisible"===a)return ba(c,b)}});t("column()",function(a,b){return fb(this.columns(a,b))});var kc=function(a,b,c){var d=a.aoData,e=Ea(a,c),h=Ub(ka(d,e,"anCells")),g=f([].concat.apply([],h)),k,l=a.aoColumns.length,m,p,q,u,t,w;return db("cell",b,function(b){var c="function"===typeof b;if(null===b||b===n||c){m=[];p=0;for(q=e.length;p<q;p++)for(k=
143
+ e[p],u=0;u<l;u++)t={row:k,column:u},c?(w=d[k],b(t,F(a,k,u),w.anCells?w.anCells[u]:null)&&m.push(t)):m.push(t);return m}if(f.isPlainObject(b))return b.column!==n&&b.row!==n&&-1!==f.inArray(b.row,e)?[b]:[];c=g.filter(b).map(function(a,b){return{row:b._DT_CellIndex.row,column:b._DT_CellIndex.column}}).toArray();if(c.length||!b.nodeName)return c;w=f(b).closest("*[data-dt-row]");return w.length?[{row:w.data("dt-row"),column:w.data("dt-column")}]:[]},a,c)};t("cells()",function(a,b,c){f.isPlainObject(a)&&
144
+ (a.row===n?(c=a,a=null):(c=b,b=null));f.isPlainObject(b)&&(c=b,b=null);if(null===b||b===n)return this.iterator("table",function(b){return kc(b,a,eb(c))});var d=c?{page:c.page,order:c.order,search:c.search}:{},e=this.columns(b,d),h=this.rows(a,d),g,k,l,m;d=this.iterator("table",function(a,b){a=[];g=0;for(k=h[b].length;g<k;g++)for(l=0,m=e[b].length;l<m;l++)a.push({row:h[b][g],column:e[b][l]});return a},1);d=c&&c.selected?this.cells(d,c):d;f.extend(d.selector,{cols:b,rows:a,opts:c});return d});z("cells().nodes()",
145
+ "cell().node()",function(){return this.iterator("cell",function(a,b,c){return(a=a.aoData[b])&&a.anCells?a.anCells[c]:n},1)});t("cells().data()",function(){return this.iterator("cell",function(a,b,c){return F(a,b,c)},1)});z("cells().cache()","cell().cache()",function(a){a="search"===a?"_aFilterData":"_aSortData";return this.iterator("cell",function(b,c,d){return b.aoData[c][a][d]},1)});z("cells().render()","cell().render()",function(a){return this.iterator("cell",function(b,c,d){return F(b,c,d,a)},
146
+ 1)});z("cells().indexes()","cell().index()",function(){return this.iterator("cell",function(a,b,c){return{row:b,column:c,columnVisible:ba(a,c)}},1)});z("cells().invalidate()","cell().invalidate()",function(a){return this.iterator("cell",function(b,c,d){da(b,c,a,d)})});t("cell()",function(a,b,c){return fb(this.cells(a,b,c))});t("cell().data()",function(a){var b=this.context,c=this[0];if(a===n)return b.length&&c.length?F(b[0],c[0].row,c[0].column):n;nb(b[0],c[0].row,c[0].column,a);da(b[0],c[0].row,
147
+ "data",c[0].column);return this});t("order()",function(a,b){var c=this.context;if(a===n)return 0!==c.length?c[0].aaSorting:n;"number"===typeof a?a=[[a,b]]:a.length&&!f.isArray(a[0])&&(a=Array.prototype.slice.call(arguments));return this.iterator("table",function(b){b.aaSorting=a.slice()})});t("order.listener()",function(a,b,c){return this.iterator("table",function(d){Pa(d,a,b,c)})});t("order.fixed()",function(a){if(!a){var b=this.context;b=b.length?b[0].aaSortingFixed:n;return f.isArray(b)?{pre:b}:
148
+ b}return this.iterator("table",function(b){b.aaSortingFixed=f.extend(!0,{},a)})});t(["columns().order()","column().order()"],function(a){var b=this;return this.iterator("table",function(c,d){var e=[];f.each(b[d],function(b,c){e.push([c,a])});c.aaSorting=e})});t("search()",function(a,b,c,d){var e=this.context;return a===n?0!==e.length?e[0].oPreviousSearch.sSearch:n:this.iterator("table",function(e){e.oFeatures.bFilter&&ha(e,f.extend({},e.oPreviousSearch,{sSearch:a+"",bRegex:null===b?!1:b,bSmart:null===
149
+ c?!0:c,bCaseInsensitive:null===d?!0:d}),1)})});z("columns().search()","column().search()",function(a,b,c,d){return this.iterator("column",function(e,h){var g=e.aoPreSearchCols;if(a===n)return g[h].sSearch;e.oFeatures.bFilter&&(f.extend(g[h],{sSearch:a+"",bRegex:null===b?!1:b,bSmart:null===c?!0:c,bCaseInsensitive:null===d?!0:d}),ha(e,e.oPreviousSearch,1))})});t("state()",function(){return this.context.length?this.context[0].oSavedState:null});t("state.clear()",function(){return this.iterator("table",
150
+ function(a){a.fnStateSaveCallback.call(a.oInstance,a,{})})});t("state.loaded()",function(){return this.context.length?this.context[0].oLoadedState:null});t("state.save()",function(){return this.iterator("table",function(a){Aa(a)})});q.versionCheck=q.fnVersionCheck=function(a){var b=q.version.split(".");a=a.split(".");for(var c,d,e=0,f=a.length;e<f;e++)if(c=parseInt(b[e],10)||0,d=parseInt(a[e],10)||0,c!==d)return c>d;return!0};q.isDataTable=q.fnIsDataTable=function(a){var b=f(a).get(0),c=!1;if(a instanceof
151
+ q.Api)return!0;f.each(q.settings,function(a,e){a=e.nScrollHead?f("table",e.nScrollHead)[0]:null;var d=e.nScrollFoot?f("table",e.nScrollFoot)[0]:null;if(e.nTable===b||a===b||d===b)c=!0});return c};q.tables=q.fnTables=function(a){var b=!1;f.isPlainObject(a)&&(b=a.api,a=a.visible);var c=f.map(q.settings,function(b){if(!a||a&&f(b.nTable).is(":visible"))return b.nTable});return b?new x(c):c};q.camelToHungarian=L;t("$()",function(a,b){b=this.rows(b).nodes();b=f(b);return f([].concat(b.filter(a).toArray(),
152
+ b.find(a).toArray()))});f.each(["on","one","off"],function(a,b){t(b+"()",function(){var a=Array.prototype.slice.call(arguments);a[0]=f.map(a[0].split(/\s/),function(a){return a.match(/\.dt\b/)?a:a+".dt"}).join(" ");var d=f(this.tables().nodes());d[b].apply(d,a);return this})});t("clear()",function(){return this.iterator("table",function(a){pa(a)})});t("settings()",function(){return new x(this.context,this.context)});t("init()",function(){var a=this.context;return a.length?a[0].oInit:null});t("data()",
153
+ function(){return this.iterator("table",function(a){return K(a.aoData,"_aData")}).flatten()});t("destroy()",function(a){a=a||!1;return this.iterator("table",function(b){var c=b.nTableWrapper.parentNode,d=b.oClasses,e=b.nTable,h=b.nTBody,g=b.nTHead,k=b.nTFoot,l=f(e);h=f(h);var m=f(b.nTableWrapper),p=f.map(b.aoData,function(a){return a.nTr}),n;b.bDestroying=!0;A(b,"aoDestroyCallback","destroy",[b]);a||(new x(b)).columns().visible(!0);m.off(".DT").find(":not(tbody *)").off(".DT");f(y).off(".DT-"+b.sInstance);
154
+ e!=g.parentNode&&(l.children("thead").detach(),l.append(g));k&&e!=k.parentNode&&(l.children("tfoot").detach(),l.append(k));b.aaSorting=[];b.aaSortingFixed=[];za(b);f(p).removeClass(b.asStripeClasses.join(" "));f("th, td",g).removeClass(d.sSortable+" "+d.sSortableAsc+" "+d.sSortableDesc+" "+d.sSortableNone);h.children().detach();h.append(p);g=a?"remove":"detach";l[g]();m[g]();!a&&c&&(c.insertBefore(e,b.nTableReinsertBefore),l.css("width",b.sDestroyWidth).removeClass(d.sTable),(n=b.asDestroyStripes.length)&&
155
+ h.children().each(function(a){f(this).addClass(b.asDestroyStripes[a%n])}));c=f.inArray(b,q.settings);-1!==c&&q.settings.splice(c,1)})});f.each(["column","row","cell"],function(a,b){t(b+"s().every()",function(a){var c=this.selector.opts,e=this;return this.iterator(b,function(d,f,k,l,m){a.call(e[b](f,"cell"===b?k:c,"cell"===b?c:n),f,k,l,m)})})});t("i18n()",function(a,b,c){var d=this.context[0];a=T(a)(d.oLanguage);a===n&&(a=b);c!==n&&f.isPlainObject(a)&&(a=a[c]!==n?a[c]:a._);return a.replace("%d",c)});
156
+ q.version="1.10.21";q.settings=[];q.models={};q.models.oSearch={bCaseInsensitive:!0,sSearch:"",bRegex:!1,bSmart:!0};q.models.oRow={nTr:null,anCells:null,_aData:[],_aSortData:null,_aFilterData:null,_sFilterRow:null,_sRowStripe:"",src:null,idx:-1};q.models.oColumn={idx:null,aDataSort:null,asSorting:null,bSearchable:null,bSortable:null,bVisible:null,_sManualType:null,_bAttrSrc:!1,fnCreatedCell:null,fnGetData:null,fnSetData:null,mData:null,mRender:null,nTh:null,nTf:null,sClass:null,sContentPadding:null,
157
+ sDefaultContent:null,sName:null,sSortDataType:"std",sSortingClass:null,sSortingClassJUI:null,sTitle:null,sType:null,sWidth:null,sWidthOrig:null};q.defaults={aaData:null,aaSorting:[[0,"asc"]],aaSortingFixed:[],ajax:null,aLengthMenu:[10,25,50,100],aoColumns:null,aoColumnDefs:null,aoSearchCols:[],asStripeClasses:null,bAutoWidth:!0,bDeferRender:!1,bDestroy:!1,bFilter:!0,bInfo:!0,bLengthChange:!0,bPaginate:!0,bProcessing:!1,bRetrieve:!1,bScrollCollapse:!1,bServerSide:!1,bSort:!0,bSortMulti:!0,bSortCellsTop:!1,
158
+ bSortClasses:!0,bStateSave:!1,fnCreatedRow:null,fnDrawCallback:null,fnFooterCallback:null,fnFormatNumber:function(a){return a.toString().replace(/\B(?=(\d{3})+(?!\d))/g,this.oLanguage.sThousands)},fnHeaderCallback:null,fnInfoCallback:null,fnInitComplete:null,fnPreDrawCallback:null,fnRowCallback:null,fnServerData:null,fnServerParams:null,fnStateLoadCallback:function(a){try{return JSON.parse((-1===a.iStateDuration?sessionStorage:localStorage).getItem("DataTables_"+a.sInstance+"_"+location.pathname))}catch(b){return{}}},
159
+ fnStateLoadParams:null,fnStateLoaded:null,fnStateSaveCallback:function(a,b){try{(-1===a.iStateDuration?sessionStorage:localStorage).setItem("DataTables_"+a.sInstance+"_"+location.pathname,JSON.stringify(b))}catch(c){}},fnStateSaveParams:null,iStateDuration:7200,iDeferLoading:null,iDisplayLength:10,iDisplayStart:0,iTabIndex:0,oClasses:{},oLanguage:{oAria:{sSortAscending:": activate to sort column ascending",sSortDescending:": activate to sort column descending"},oPaginate:{sFirst:"First",sLast:"Last",
160
+ sNext:"Next",sPrevious:"Previous"},sEmptyTable:"No data available in table",sInfo:"Showing _START_ to _END_ of _TOTAL_ entries",sInfoEmpty:"Showing 0 to 0 of 0 entries",sInfoFiltered:"(filtered from _MAX_ total entries)",sInfoPostFix:"",sDecimal:"",sThousands:",",sLengthMenu:"Show _MENU_ entries",sLoadingRecords:"Loading...",sProcessing:"Processing...",sSearch:"Search:",sSearchPlaceholder:"",sUrl:"",sZeroRecords:"No matching records found"},oSearch:f.extend({},q.models.oSearch),sAjaxDataProp:"data",
161
+ sAjaxSource:null,sDom:"lfrtip",searchDelay:null,sPaginationType:"simple_numbers",sScrollX:"",sScrollXInner:"",sScrollY:"",sServerMethod:"GET",renderer:null,rowId:"DT_RowId"};H(q.defaults);q.defaults.column={aDataSort:null,iDataSort:-1,asSorting:["asc","desc"],bSearchable:!0,bSortable:!0,bVisible:!0,fnCreatedCell:null,mData:null,mRender:null,sCellType:"td",sClass:"",sContentPadding:"",sDefaultContent:null,sName:"",sSortDataType:"std",sTitle:null,sType:null,sWidth:null};H(q.defaults.column);q.models.oSettings=
162
+ {oFeatures:{bAutoWidth:null,bDeferRender:null,bFilter:null,bInfo:null,bLengthChange:null,bPaginate:null,bProcessing:null,bServerSide:null,bSort:null,bSortMulti:null,bSortClasses:null,bStateSave:null},oScroll:{bCollapse:null,iBarWidth:0,sX:null,sXInner:null,sY:null},oLanguage:{fnInfoCallback:null},oBrowser:{bScrollOversize:!1,bScrollbarLeft:!1,bBounding:!1,barWidth:0},ajax:null,aanFeatures:[],aoData:[],aiDisplay:[],aiDisplayMaster:[],aIds:{},aoColumns:[],aoHeader:[],aoFooter:[],oPreviousSearch:{},
163
+ aoPreSearchCols:[],aaSorting:null,aaSortingFixed:[],asStripeClasses:null,asDestroyStripes:[],sDestroyWidth:0,aoRowCallback:[],aoHeaderCallback:[],aoFooterCallback:[],aoDrawCallback:[],aoRowCreatedCallback:[],aoPreDrawCallback:[],aoInitComplete:[],aoStateSaveParams:[],aoStateLoadParams:[],aoStateLoaded:[],sTableId:"",nTable:null,nTHead:null,nTFoot:null,nTBody:null,nTableWrapper:null,bDeferLoading:!1,bInitialised:!1,aoOpenRows:[],sDom:null,searchDelay:null,sPaginationType:"two_button",iStateDuration:0,
164
+ aoStateSave:[],aoStateLoad:[],oSavedState:null,oLoadedState:null,sAjaxSource:null,sAjaxDataProp:null,bAjaxDataGet:!0,jqXHR:null,json:n,oAjaxData:n,fnServerData:null,aoServerParams:[],sServerMethod:null,fnFormatNumber:null,aLengthMenu:null,iDraw:0,bDrawing:!1,iDrawError:-1,_iDisplayLength:10,_iDisplayStart:0,_iRecordsTotal:0,_iRecordsDisplay:0,oClasses:{},bFiltered:!1,bSorted:!1,bSortCellsTop:null,oInit:null,aoDestroyCallback:[],fnRecordsTotal:function(){return"ssp"==I(this)?1*this._iRecordsTotal:
165
+ this.aiDisplayMaster.length},fnRecordsDisplay:function(){return"ssp"==I(this)?1*this._iRecordsDisplay:this.aiDisplay.length},fnDisplayEnd:function(){var a=this._iDisplayLength,b=this._iDisplayStart,c=b+a,d=this.aiDisplay.length,e=this.oFeatures,f=e.bPaginate;return e.bServerSide?!1===f||-1===a?b+d:Math.min(b+a,this._iRecordsDisplay):!f||c>d||-1===a?d:c},oInstance:null,sInstance:null,iTabIndex:0,nScrollHead:null,nScrollFoot:null,aLastSort:[],oPlugins:{},rowIdFn:null,rowId:null};q.ext=C={buttons:{},
166
+ classes:{},builder:"-source-",errMode:"alert",feature:[],search:[],selector:{cell:[],column:[],row:[]},internal:{},legacy:{ajax:null},pager:{},renderer:{pageButton:{},header:{}},order:{},type:{detect:[],search:{},order:{}},_unique:0,fnVersionCheck:q.fnVersionCheck,iApiIndex:0,oJUIClasses:{},sVersion:q.version};f.extend(C,{afnFiltering:C.search,aTypes:C.type.detect,ofnSearch:C.type.search,oSort:C.type.order,afnSortData:C.order,aoFeatures:C.feature,oApi:C.internal,oStdClasses:C.classes,oPagination:C.pager});
167
+ f.extend(q.ext.classes,{sTable:"dataTable",sNoFooter:"no-footer",sPageButton:"paginate_button",sPageButtonActive:"current",sPageButtonDisabled:"disabled",sStripeOdd:"odd",sStripeEven:"even",sRowEmpty:"dataTables_empty",sWrapper:"dataTables_wrapper",sFilter:"dataTables_filter",sInfo:"dataTables_info",sPaging:"dataTables_paginate paging_",sLength:"dataTables_length",sProcessing:"dataTables_processing",sSortAsc:"sorting_asc",sSortDesc:"sorting_desc",sSortable:"sorting",sSortableAsc:"sorting_asc_disabled",
168
  sSortableDesc:"sorting_desc_disabled",sSortableNone:"sorting_disabled",sSortColumn:"sorting_",sFilterInput:"",sLengthSelect:"",sScrollWrapper:"dataTables_scroll",sScrollHead:"dataTables_scrollHead",sScrollHeadInner:"dataTables_scrollHeadInner",sScrollBody:"dataTables_scrollBody",sScrollFoot:"dataTables_scrollFoot",sScrollFootInner:"dataTables_scrollFootInner",sHeaderTH:"",sFooterTH:"",sSortJUIAsc:"",sSortJUIDesc:"",sSortJUI:"",sSortJUIAscAllowed:"",sSortJUIDescAllowed:"",sSortJUIWrapper:"",sSortIcon:"",
169
+ sJUIHeader:"",sJUIFooter:""});var Ob=q.ext.pager;f.extend(Ob,{simple:function(a,b){return["previous","next"]},full:function(a,b){return["first","previous","next","last"]},numbers:function(a,b){return[ja(a,b)]},simple_numbers:function(a,b){return["previous",ja(a,b),"next"]},full_numbers:function(a,b){return["first","previous",ja(a,b),"next","last"]},first_last_numbers:function(a,b){return["first",ja(a,b),"last"]},_numbers:ja,numbers_length:7});f.extend(!0,q.ext.renderer,{pageButton:{_:function(a,b,
170
+ c,d,e,h){var g=a.oClasses,k=a.oLanguage.oPaginate,l=a.oLanguage.oAria.paginate||{},m,p,q=0,t=function(b,d){var n,r=g.sPageButtonDisabled,u=function(b){Wa(a,b.data.action,!0)};var w=0;for(n=d.length;w<n;w++){var v=d[w];if(f.isArray(v)){var x=f("<"+(v.DT_el||"div")+"/>").appendTo(b);t(x,v)}else{m=null;p=v;x=a.iTabIndex;switch(v){case "ellipsis":b.append('<span class="ellipsis">&#x2026;</span>');break;case "first":m=k.sFirst;0===e&&(x=-1,p+=" "+r);break;case "previous":m=k.sPrevious;0===e&&(x=-1,p+=
171
+ " "+r);break;case "next":m=k.sNext;if(0===h||e===h-1)x=-1,p+=" "+r;break;case "last":m=k.sLast;e===h-1&&(x=-1,p+=" "+r);break;default:m=v+1,p=e===v?g.sPageButtonActive:""}null!==m&&(x=f("<a>",{"class":g.sPageButton+" "+p,"aria-controls":a.sTableId,"aria-label":l[v],"data-dt-idx":q,tabindex:x,id:0===c&&"string"===typeof v?a.sTableId+"_"+v:null}).html(m).appendTo(b),Za(x,{action:v},u),q++)}}};try{var x=f(b).find(w.activeElement).data("dt-idx")}catch(lc){}t(f(b).empty(),d);x!==n&&f(b).find("[data-dt-idx="+
172
+ x+"]").trigger("focus")}}});f.extend(q.ext.type.detect,[function(a,b){b=b.oLanguage.sDecimal;return cb(a,b)?"num"+b:null},function(a,b){if(a&&!(a instanceof Date)&&!cc.test(a))return null;b=Date.parse(a);return null!==b&&!isNaN(b)||P(a)?"date":null},function(a,b){b=b.oLanguage.sDecimal;return cb(a,b,!0)?"num-fmt"+b:null},function(a,b){b=b.oLanguage.sDecimal;return Tb(a,b)?"html-num"+b:null},function(a,b){b=b.oLanguage.sDecimal;return Tb(a,b,!0)?"html-num-fmt"+b:null},function(a,b){return P(a)||"string"===
173
+ typeof a&&-1!==a.indexOf("<")?"html":null}]);f.extend(q.ext.type.search,{html:function(a){return P(a)?a:"string"===typeof a?a.replace(Qb," ").replace(Da,""):""},string:function(a){return P(a)?a:"string"===typeof a?a.replace(Qb," "):a}});var Ca=function(a,b,c,d){if(0!==a&&(!a||"-"===a))return-Infinity;b&&(a=Sb(a,b));a.replace&&(c&&(a=a.replace(c,"")),d&&(a=a.replace(d,"")));return 1*a};f.extend(C.type.order,{"date-pre":function(a){a=Date.parse(a);return isNaN(a)?-Infinity:a},"html-pre":function(a){return P(a)?
174
+ "":a.replace?a.replace(/<.*?>/g,"").toLowerCase():a+""},"string-pre":function(a){return P(a)?"":"string"===typeof a?a.toLowerCase():a.toString?a.toString():""},"string-asc":function(a,b){return a<b?-1:a>b?1:0},"string-desc":function(a,b){return a<b?1:a>b?-1:0}});Ga("");f.extend(!0,q.ext.renderer,{header:{_:function(a,b,c,d){f(a.nTable).on("order.dt.DT",function(e,f,g,k){a===f&&(e=c.idx,b.removeClass(c.sSortingClass+" "+d.sSortAsc+" "+d.sSortDesc).addClass("asc"==k[e]?d.sSortAsc:"desc"==k[e]?d.sSortDesc:
175
+ c.sSortingClass))})},jqueryui:function(a,b,c,d){f("<div/>").addClass(d.sSortJUIWrapper).append(b.contents()).append(f("<span/>").addClass(d.sSortIcon+" "+c.sSortingClassJUI)).appendTo(b);f(a.nTable).on("order.dt.DT",function(e,f,g,k){a===f&&(e=c.idx,b.removeClass(d.sSortAsc+" "+d.sSortDesc).addClass("asc"==k[e]?d.sSortAsc:"desc"==k[e]?d.sSortDesc:c.sSortingClass),b.find("span."+d.sSortIcon).removeClass(d.sSortJUIAsc+" "+d.sSortJUIDesc+" "+d.sSortJUI+" "+d.sSortJUIAscAllowed+" "+d.sSortJUIDescAllowed).addClass("asc"==
176
+ k[e]?d.sSortJUIAsc:"desc"==k[e]?d.sSortJUIDesc:c.sSortingClassJUI))})}}});var hb=function(a){return"string"===typeof a?a.replace(/&/g,"&amp;").replace(/</g,"&lt;").replace(/>/g,"&gt;").replace(/"/g,"&quot;"):a};q.render={number:function(a,b,c,d,e){return{display:function(f){if("number"!==typeof f&&"string"!==typeof f)return f;var g=0>f?"-":"",h=parseFloat(f);if(isNaN(h))return hb(f);h=h.toFixed(c);f=Math.abs(h);h=parseInt(f,10);f=c?b+(f-h).toFixed(c).substring(2):"";return g+(d||"")+h.toString().replace(/\B(?=(\d{3})+(?!\d))/g,
177
+ a)+f+(e||"")}}},text:function(){return{display:hb,filter:hb}}};f.extend(q.ext.internal,{_fnExternApiFunc:Pb,_fnBuildAjax:ua,_fnAjaxUpdate:pb,_fnAjaxParameters:yb,_fnAjaxUpdateDraw:zb,_fnAjaxDataSrc:va,_fnAddColumn:Ha,_fnColumnOptions:la,_fnAdjustColumnSizing:Z,_fnVisibleToColumnIndex:aa,_fnColumnIndexToVisible:ba,_fnVisbleColumns:V,_fnGetColumns:na,_fnColumnTypes:Ja,_fnApplyColumnDefs:mb,_fnHungarianMap:H,_fnCamelToHungarian:L,_fnLanguageCompat:Fa,_fnBrowserDetect:kb,_fnAddData:R,_fnAddTr:oa,_fnNodeToDataIndex:function(a,
178
+ b){return b._DT_RowIndex!==n?b._DT_RowIndex:null},_fnNodeToColumnIndex:function(a,b,c){return f.inArray(c,a.aoData[b].anCells)},_fnGetCellData:F,_fnSetCellData:nb,_fnSplitObjNotation:Ma,_fnGetObjectDataFn:T,_fnSetObjectDataFn:Q,_fnGetDataMaster:Na,_fnClearTable:pa,_fnDeleteIndex:qa,_fnInvalidate:da,_fnGetRowElements:La,_fnCreateTr:Ka,_fnBuildHead:ob,_fnDrawHead:fa,_fnDraw:S,_fnReDraw:U,_fnAddOptionsHtml:rb,_fnDetectHeader:ea,_fnGetUniqueThs:ta,_fnFeatureHtmlFilter:tb,_fnFilterComplete:ha,_fnFilterCustom:Cb,
179
+ _fnFilterColumn:Bb,_fnFilter:Ab,_fnFilterCreateSearch:Sa,_fnEscapeRegex:Ta,_fnFilterData:Db,_fnFeatureHtmlInfo:wb,_fnUpdateInfo:Gb,_fnInfoMacros:Hb,_fnInitialise:ia,_fnInitComplete:wa,_fnLengthChange:Ua,_fnFeatureHtmlLength:sb,_fnFeatureHtmlPaginate:xb,_fnPageChange:Wa,_fnFeatureHtmlProcessing:ub,_fnProcessingDisplay:J,_fnFeatureHtmlTable:vb,_fnScrollDraw:ma,_fnApplyToChildren:N,_fnCalculateColumnWidths:Ia,_fnThrottle:Ra,_fnConvertToWidth:Ib,_fnGetWidestNode:Jb,_fnGetMaxLenString:Kb,_fnStringToCss:B,
180
+ _fnSortFlatten:X,_fnSort:qb,_fnSortAria:Mb,_fnSortListener:Ya,_fnSortAttachListener:Pa,_fnSortingClasses:za,_fnSortData:Lb,_fnSaveState:Aa,_fnLoadState:Nb,_fnSettingsFromNode:Ba,_fnLog:O,_fnMap:M,_fnBindAction:Za,_fnCallbackReg:D,_fnCallbackFire:A,_fnLengthOverflow:Va,_fnRenderer:Qa,_fnDataSource:I,_fnRowAttributes:Oa,_fnExtend:$a,_fnCalculateEnd:function(){}});f.fn.dataTable=q;q.$=f;f.fn.dataTableSettings=q.settings;f.fn.dataTableExt=q.ext;f.fn.DataTable=function(a){return f(this).dataTable(a).api()};
181
+ f.each(q,function(a,b){f.fn.DataTable[a]=b});return f.fn.dataTable});
 
 
 
 
assets/privacy-tools.css CHANGED
@@ -1,34 +1,34 @@
1
- .gdpr-framework-privacy-tools .gdpr-notice {
2
- padding: 10px 20px;
3
- border: 1px solid #666;
4
- }
5
-
6
- .gdpr-framework-privacy-tools .gdpr-consent td {
7
- padding: 0.6em;
8
- }
9
-
10
- .gdpr-framework-privacy-tools .gdpr-consent td:first-child {
11
- padding-left: 0;
12
- }
13
-
14
- .gdpr-framework-privacy-tools .gdpr-consent td:last-child {
15
- padding-right: 0;
16
- }
17
-
18
- .gdpr-framework-privacy-tools .gdpr-download-button,
19
- .gdpr-framework-privacy-tools .gdpr-export-button,
20
- .gdpr-framework-privacy-tools .gdpr-delete-button {
21
- display: inline-block;
22
- margin-right: 10px;
23
- margin-bottom: 20px;
24
- }
25
-
26
- .gdpr-framework-privacy-tools .gdpr-download-button input.button,
27
- .gdpr-framework-privacy-tools .gdpr-export-button input.button,
28
- .gdpr-framework-privacy-tools .gdpr-delete-button input.button {
29
- min-width: 200px;
30
- }
31
-
32
- .g-recaptcha {
33
- margin: 10px 0px 10px 0px;
34
  }
1
+ .gdpr-framework-privacy-tools .gdpr-notice {
2
+ padding: 10px 20px;
3
+ border: 1px solid #666;
4
+ }
5
+
6
+ .gdpr-framework-privacy-tools .gdpr-consent td {
7
+ padding: 0.6em;
8
+ }
9
+
10
+ .gdpr-framework-privacy-tools .gdpr-consent td:first-child {
11
+ padding-left: 0;
12
+ }
13
+
14
+ .gdpr-framework-privacy-tools .gdpr-consent td:last-child {
15
+ padding-right: 0;
16
+ }
17
+
18
+ .gdpr-framework-privacy-tools .gdpr-download-button,
19
+ .gdpr-framework-privacy-tools .gdpr-export-button,
20
+ .gdpr-framework-privacy-tools .gdpr-delete-button {
21
+ display: inline-block;
22
+ margin-right: 10px;
23
+ margin-bottom: 20px;
24
+ }
25
+
26
+ .gdpr-framework-privacy-tools .gdpr-download-button input.button,
27
+ .gdpr-framework-privacy-tools .gdpr-export-button input.button,
28
+ .gdpr-framework-privacy-tools .gdpr-delete-button input.button {
29
+ min-width: 200px;
30
+ }
31
+
32
+ .g-recaptcha {
33
+ margin: 10px 0px 10px 0px;
34
  }
assets/select2-4.0.3.js CHANGED
@@ -1,3 +1,3 @@
1
- /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */!function(a){"function"==typeof define&&define.amd?define(["jquery"],a):"object"==typeof module&&module.exports?module.exports=function(b,c){return void 0===c&&(c="undefined"!=typeof window?require("jquery"):require("jquery")(b)),a(c),c}:a(jQuery)}(function(a){var b=function(){if(a&&a.fn&&a.fn.select2&&a.fn.select2.amd)var b=a.fn.select2.amd;var b;return function(){if(!b||!b.requirejs){b?c=b:b={};var a,c,d;!function(b){function e(a,b){return u.call(a,b)}function f(a,b){var c,d,e,f,g,h,i,j,k,l,m,n=b&&b.split("/"),o=s.map,p=o&&o["*"]||{};if(a&&"."===a.charAt(0))if(b){for(a=a.split("/"),g=a.length-1,s.nodeIdCompat&&w.test(a[g])&&(a[g]=a[g].replace(w,"")),a=n.slice(0,n.length-1).concat(a),k=0;k<a.length;k+=1)if(m=a[k],"."===m)a.splice(k,1),k-=1;else if(".."===m){if(1===k&&(".."===a[2]||".."===a[0]))break;k>0&&(a.splice(k-1,2),k-=2)}a=a.join("/")}else 0===a.indexOf("./")&&(a=a.substring(2));if((n||p)&&o){for(c=a.split("/"),k=c.length;k>0;k-=1){if(d=c.slice(0,k).join("/"),n)for(l=n.length;l>0;l-=1)if(e=o[n.slice(0,l).join("/")],e&&(e=e[d])){f=e,h=k;break}if(f)break;!i&&p&&p[d]&&(i=p[d],j=k)}!f&&i&&(f=i,h=j),f&&(c.splice(0,h,f),a=c.join("/"))}return a}function g(a,c){return function(){var d=v.call(arguments,0);return"string"!=typeof d[0]&&1===d.length&&d.push(null),n.apply(b,d.concat([a,c]))}}function h(a){return function(b){return f(b,a)}}function i(a){return function(b){q[a]=b}}function j(a){if(e(r,a)){var c=r[a];delete r[a],t[a]=!0,m.apply(b,c)}if(!e(q,a)&&!e(t,a))throw new Error("No "+a);return q[a]}function k(a){var b,c=a?a.indexOf("!"):-1;return c>-1&&(b=a.substring(0,c),a=a.substring(c+1,a.length)),[b,a]}function l(a){return function(){return s&&s.config&&s.config[a]||{}}}var m,n,o,p,q={},r={},s={},t={},u=Object.prototype.hasOwnProperty,v=[].slice,w=/\.js$/;o=function(a,b){var c,d=k(a),e=d[0];return a=d[1],e&&(e=f(e,b),c=j(e)),e?a=c&&c.normalize?c.normalize(a,h(b)):f(a,b):(a=f(a,b),d=k(a),e=d[0],a=d[1],e&&(c=j(e))),{f:e?e+"!"+a:a,n:a,pr:e,p:c}},p={require:function(a){return g(a)},exports:function(a){var b=q[a];return"undefined"!=typeof b?b:q[a]={}},module:function(a){return{id:a,uri:"",exports:q[a],config:l(a)}}},m=function(a,c,d,f){var h,k,l,m,n,s,u=[],v=typeof d;if(f=f||a,"undefined"===v||"function"===v){for(c=!c.length&&d.length?["require","exports","module"]:c,n=0;n<c.length;n+=1)if(m=o(c[n],f),k=m.f,"require"===k)u[n]=p.require(a);else if("exports"===k)u[n]=p.exports(a),s=!0;else if("module"===k)h=u[n]=p.module(a);else if(e(q,k)||e(r,k)||e(t,k))u[n]=j(k);else{if(!m.p)throw new Error(a+" missing "+k);m.p.load(m.n,g(f,!0),i(k),{}),u[n]=q[k]}l=d?d.apply(q[a],u):void 0,a&&(h&&h.exports!==b&&h.exports!==q[a]?q[a]=h.exports:l===b&&s||(q[a]=l))}else a&&(q[a]=d)},a=c=n=function(a,c,d,e,f){if("string"==typeof a)return p[a]?p[a](c):j(o(a,c).f);if(!a.splice){if(s=a,s.deps&&n(s.deps,s.callback),!c)return;c.splice?(a=c,c=d,d=null):a=b}return c=c||function(){},"function"==typeof d&&(d=e,e=f),e?m(b,a,c,d):setTimeout(function(){m(b,a,c,d)},4),n},n.config=function(a){return n(a)},a._defined=q,d=function(a,b,c){if("string"!=typeof a)throw new Error("See almond README: incorrect module build, no module name");b.splice||(c=b,b=[]),e(q,a)||e(r,a)||(r[a]=[a,b,c])},d.amd={jQuery:!0}}(),b.requirejs=a,b.require=c,b.define=d}}(),b.define("almond",function(){}),b.define("jquery",[],function(){var b=a||$;return null==b&&console&&console.error&&console.error("Select2: An instance of jQuery or a jQuery-compatible library was not found. Make sure that you are including jQuery before Select2 on your web page."),b}),b.define("select2/utils",["jquery"],function(a){function b(a){var b=a.prototype,c=[];for(var d in b){var e=b[d];"function"==typeof e&&"constructor"!==d&&c.push(d)}return c}var c={};c.Extend=function(a,b){function c(){this.constructor=a}var d={}.hasOwnProperty;for(var e in b)d.call(b,e)&&(a[e]=b[e]);return c.prototype=b.prototype,a.prototype=new c,a.__super__=b.prototype,a},c.Decorate=function(a,c){function d(){var b=Array.prototype.unshift,d=c.prototype.constructor.length,e=a.prototype.constructor;d>0&&(b.call(arguments,a.prototype.constructor),e=c.prototype.constructor),e.apply(this,arguments)}function e(){this.constructor=d}var f=b(c),g=b(a);c.displayName=a.displayName,d.prototype=new e;for(var h=0;h<g.length;h++){var i=g[h];d.prototype[i]=a.prototype[i]}for(var j=(function(a){var b=function(){};a in d.prototype&&(b=d.prototype[a]);var e=c.prototype[a];return function(){var a=Array.prototype.unshift;return a.call(arguments,b),e.apply(this,arguments)}}),k=0;k<f.length;k++){var l=f[k];d.prototype[l]=j(l)}return d};var d=function(){this.listeners={}};return d.prototype.on=function(a,b){this.listeners=this.listeners||{},a in this.listeners?this.listeners[a].push(b):this.listeners[a]=[b]},d.prototype.trigger=function(a){var b=Array.prototype.slice,c=b.call(arguments,1);this.listeners=this.listeners||{},null==c&&(c=[]),0===c.length&&c.push({}),c[0]._type=a,a in this.listeners&&this.invoke(this.listeners[a],b.call(arguments,1)),"*"in this.listeners&&this.invoke(this.listeners["*"],arguments)},d.prototype.invoke=function(a,b){for(var c=0,d=a.length;d>c;c++)a[c].apply(this,b)},c.Observable=d,c.generateChars=function(a){for(var b="",c=0;a>c;c++){var d=Math.floor(36*Math.random());b+=d.toString(36)}return b},c.bind=function(a,b){return function(){a.apply(b,arguments)}},c._convertData=function(a){for(var b in a){var c=b.split("-"),d=a;if(1!==c.length){for(var e=0;e<c.length;e++){var f=c[e];f=f.substring(0,1).toLowerCase()+f.substring(1),f in d||(d[f]={}),e==c.length-1&&(d[f]=a[b]),d=d[f]}delete a[b]}}return a},c.hasScroll=function(b,c){var d=a(c),e=c.style.overflowX,f=c.style.overflowY;return e!==f||"hidden"!==f&&"visible"!==f?"scroll"===e||"scroll"===f?!0:d.innerHeight()<c.scrollHeight||d.innerWidth()<c.scrollWidth:!1},c.escapeMarkup=function(a){var b={"\\":"&#92;","&":"&amp;","<":"&lt;",">":"&gt;",'"':"&quot;","'":"&#39;","/":"&#47;"};return"string"!=typeof a?a:String(a).replace(/[&<>"'\/\\]/g,function(a){return b[a]})},c.appendMany=function(b,c){if("1.7"===a.fn.jquery.substr(0,3)){var d=a();a.map(c,function(a){d=d.add(a)}),c=d}b.append(c)},c}),b.define("select2/results",["jquery","./utils"],function(a,b){function c(a,b,d){this.$element=a,this.data=d,this.options=b,c.__super__.constructor.call(this)}return b.Extend(c,b.Observable),c.prototype.render=function(){var b=a('<ul class="select2-results__options" role="tree"></ul>');return this.options.get("multiple")&&b.attr("aria-multiselectable","true"),this.$results=b,b},c.prototype.clear=function(){this.$results.empty()},c.prototype.displayMessage=function(b){var c=this.options.get("escapeMarkup");this.clear(),this.hideLoading();var d=a('<li role="treeitem" aria-live="assertive" class="select2-results__option"></li>'),e=this.options.get("translations").get(b.message);d.append(c(e(b.args))),d[0].className+=" select2-results__message",this.$results.append(d)},c.prototype.hideMessages=function(){this.$results.find(".select2-results__message").remove()},c.prototype.append=function(a){this.hideLoading();var b=[];if(null==a.results||0===a.results.length)return void(0===this.$results.children().length&&this.trigger("results:message",{message:"noResults"}));a.results=this.sort(a.results);for(var c=0;c<a.results.length;c++){var d=a.results[c],e=this.option(d);b.push(e)}this.$results.append(b)},c.prototype.position=function(a,b){var c=b.find(".select2-results");c.append(a)},c.prototype.sort=function(a){var b=this.options.get("sorter");return b(a)},c.prototype.highlightFirstItem=function(){var a=this.$results.find(".select2-results__option[aria-selected]"),b=a.filter("[aria-selected=true]");b.length>0?b.first().trigger("mouseenter"):a.first().trigger("mouseenter"),this.ensureHighlightVisible()},c.prototype.setClasses=function(){var b=this;this.data.current(function(c){var d=a.map(c,function(a){return a.id.toString()}),e=b.$results.find(".select2-results__option[aria-selected]");e.each(function(){var b=a(this),c=a.data(this,"data"),e=""+c.id;null!=c.element&&c.element.selected||null==c.element&&a.inArray(e,d)>-1?b.attr("aria-selected","true"):b.attr("aria-selected","false")})})},c.prototype.showLoading=function(a){this.hideLoading();var b=this.options.get("translations").get("searching"),c={disabled:!0,loading:!0,text:b(a)},d=this.option(c);d.className+=" loading-results",this.$results.prepend(d)},c.prototype.hideLoading=function(){this.$results.find(".loading-results").remove()},c.prototype.option=function(b){var c=document.createElement("li");c.className="select2-results__option";var d={role:"treeitem","aria-selected":"false"};b.disabled&&(delete d["aria-selected"],d["aria-disabled"]="true"),null==b.id&&delete d["aria-selected"],null!=b._resultId&&(c.id=b._resultId),b.title&&(c.title=b.title),b.children&&(d.role="group",d["aria-label"]=b.text,delete d["aria-selected"]);for(var e in d){var f=d[e];c.setAttribute(e,f)}if(b.children){var g=a(c),h=document.createElement("strong");h.className="select2-results__group";a(h);this.template(b,h);for(var i=[],j=0;j<b.children.length;j++){var k=b.children[j],l=this.option(k);i.push(l)}var m=a("<ul></ul>",{"class":"select2-results__options select2-results__options--nested"});m.append(i),g.append(h),g.append(m)}else this.template(b,c);return a.data(c,"data",b),c},c.prototype.bind=function(b,c){var d=this,e=b.id+"-results";this.$results.attr("id",e),b.on("results:all",function(a){d.clear(),d.append(a.data),b.isOpen()&&(d.setClasses(),d.highlightFirstItem())}),b.on("results:append",function(a){d.append(a.data),b.isOpen()&&d.setClasses()}),b.on("query",function(a){d.hideMessages(),d.showLoading(a)}),b.on("select",function(){b.isOpen()&&(d.setClasses(),d.highlightFirstItem())}),b.on("unselect",function(){b.isOpen()&&(d.setClasses(),d.highlightFirstItem())}),b.on("open",function(){d.$results.attr("aria-expanded","true"),d.$results.attr("aria-hidden","false"),d.setClasses(),d.ensureHighlightVisible()}),b.on("close",function(){d.$results.attr("aria-expanded","false"),d.$results.attr("aria-hidden","true"),d.$results.removeAttr("aria-activedescendant")}),b.on("results:toggle",function(){var a=d.getHighlightedResults();0!==a.length&&a.trigger("mouseup")}),b.on("results:select",function(){var a=d.getHighlightedResults();if(0!==a.length){var b=a.data("data");"true"==a.attr("aria-selected")?d.trigger("close",{}):d.trigger("select",{data:b})}}),b.on("results:previous",function(){var a=d.getHighlightedResults(),b=d.$results.find("[aria-selected]"),c=b.index(a);if(0!==c){var e=c-1;0===a.length&&(e=0);var f=b.eq(e);f.trigger("mouseenter");var g=d.$results.offset().top,h=f.offset().top,i=d.$results.scrollTop()+(h-g);0===e?d.$results.scrollTop(0):0>h-g&&d.$results.scrollTop(i)}}),b.on("results:next",function(){var a=d.getHighlightedResults(),b=d.$results.find("[aria-selected]"),c=b.index(a),e=c+1;if(!(e>=b.length)){var f=b.eq(e);f.trigger("mouseenter");var g=d.$results.offset().top+d.$results.outerHeight(!1),h=f.offset().top+f.outerHeight(!1),i=d.$results.scrollTop()+h-g;0===e?d.$results.scrollTop(0):h>g&&d.$results.scrollTop(i)}}),b.on("results:focus",function(a){a.element.addClass("select2-results__option--highlighted")}),b.on("results:message",function(a){d.displayMessage(a)}),a.fn.mousewheel&&this.$results.on("mousewheel",function(a){var b=d.$results.scrollTop(),c=d.$results.get(0).scrollHeight-b+a.deltaY,e=a.deltaY>0&&b-a.deltaY<=0,f=a.deltaY<0&&c<=d.$results.height();e?(d.$results.scrollTop(0),a.preventDefault(),a.stopPropagation()):f&&(d.$results.scrollTop(d.$results.get(0).scrollHeight-d.$results.height()),a.preventDefault(),a.stopPropagation())}),this.$results.on("mouseup",".select2-results__option[aria-selected]",function(b){var c=a(this),e=c.data("data");return"true"===c.attr("aria-selected")?void(d.options.get("multiple")?d.trigger("unselect",{originalEvent:b,data:e}):d.trigger("close",{})):void d.trigger("select",{originalEvent:b,data:e})}),this.$results.on("mouseenter",".select2-results__option[aria-selected]",function(b){var c=a(this).data("data");d.getHighlightedResults().removeClass("select2-results__option--highlighted"),d.trigger("results:focus",{data:c,element:a(this)})})},c.prototype.getHighlightedResults=function(){var a=this.$results.find(".select2-results__option--highlighted");return a},c.prototype.destroy=function(){this.$results.remove()},c.prototype.ensureHighlightVisible=function(){var a=this.getHighlightedResults();if(0!==a.length){var b=this.$results.find("[aria-selected]"),c=b.index(a),d=this.$results.offset().top,e=a.offset().top,f=this.$results.scrollTop()+(e-d),g=e-d;f-=2*a.outerHeight(!1),2>=c?this.$results.scrollTop(0):(g>this.$results.outerHeight()||0>g)&&this.$results.scrollTop(f)}},c.prototype.template=function(b,c){var d=this.options.get("templateResult"),e=this.options.get("escapeMarkup"),f=d(b,c);null==f?c.style.display="none":"string"==typeof f?c.innerHTML=e(f):a(c).append(f)},c}),b.define("select2/keys",[],function(){var a={BACKSPACE:8,TAB:9,ENTER:13,SHIFT:16,CTRL:17,ALT:18,ESC:27,SPACE:32,PAGE_UP:33,PAGE_DOWN:34,END:35,HOME:36,LEFT:37,UP:38,RIGHT:39,DOWN:40,DELETE:46};return a}),b.define("select2/selection/base",["jquery","../utils","../keys"],function(a,b,c){function d(a,b){this.$element=a,this.options=b,d.__super__.constructor.call(this)}return b.Extend(d,b.Observable),d.prototype.render=function(){var b=a('<span class="select2-selection" role="combobox" aria-haspopup="true" aria-expanded="false"></span>');return this._tabindex=0,null!=this.$element.data("old-tabindex")?this._tabindex=this.$element.data("old-tabindex"):null!=this.$element.attr("tabindex")&&(this._tabindex=this.$element.attr("tabindex")),b.attr("title",this.$element.attr("title")),b.attr("tabindex",this._tabindex),this.$selection=b,b},d.prototype.bind=function(a,b){var d=this,e=(a.id+"-container",a.id+"-results");this.container=a,this.$selection.on("focus",function(a){d.trigger("focus",a)}),this.$selection.on("blur",function(a){d._handleBlur(a)}),this.$selection.on("keydown",function(a){d.trigger("keypress",a),a.which===c.SPACE&&a.preventDefault()}),a.on("results:focus",function(a){d.$selection.attr("aria-activedescendant",a.data._resultId)}),a.on("selection:update",function(a){d.update(a.data)}),a.on("open",function(){d.$selection.attr("aria-expanded","true"),d.$selection.attr("aria-owns",e),d._attachCloseHandler(a)}),a.on("close",function(){d.$selection.attr("aria-expanded","false"),d.$selection.removeAttr("aria-activedescendant"),d.$selection.removeAttr("aria-owns"),d.$selection.focus(),d._detachCloseHandler(a)}),a.on("enable",function(){d.$selection.attr("tabindex",d._tabindex)}),a.on("disable",function(){d.$selection.attr("tabindex","-1")})},d.prototype._handleBlur=function(b){var c=this;window.setTimeout(function(){document.activeElement==c.$selection[0]||a.contains(c.$selection[0],document.activeElement)||c.trigger("blur",b)},1)},d.prototype._attachCloseHandler=function(b){a(document.body).on("mousedown.select2."+b.id,function(b){var c=a(b.target),d=c.closest(".select2"),e=a(".select2.select2-container--open");e.each(function(){var b=a(this);if(this!=d[0]){var c=b.data("element");c.select2("close")}})})},d.prototype._detachCloseHandler=function(b){a(document.body).off("mousedown.select2."+b.id)},d.prototype.position=function(a,b){var c=b.find(".selection");c.append(a)},d.prototype.destroy=function(){this._detachCloseHandler(this.container)},d.prototype.update=function(a){throw new Error("The `update` method must be defined in child classes.")},d}),b.define("select2/selection/single",["jquery","./base","../utils","../keys"],function(a,b,c,d){function e(){e.__super__.constructor.apply(this,arguments)}return c.Extend(e,b),e.prototype.render=function(){var a=e.__super__.render.call(this);return a.addClass("select2-selection--single"),a.html('<span class="select2-selection__rendered"></span><span class="select2-selection__arrow" role="presentation"><b role="presentation"></b></span>'),a},e.prototype.bind=function(a,b){var c=this;e.__super__.bind.apply(this,arguments);var d=a.id+"-container";this.$selection.find(".select2-selection__rendered").attr("id",d),this.$selection.attr("aria-labelledby",d),this.$selection.on("mousedown",function(a){1===a.which&&c.trigger("toggle",{originalEvent:a})}),this.$selection.on("focus",function(a){}),this.$selection.on("blur",function(a){}),a.on("focus",function(b){a.isOpen()||c.$selection.focus()}),a.on("selection:update",function(a){c.update(a.data)})},e.prototype.clear=function(){this.$selection.find(".select2-selection__rendered").empty()},e.prototype.display=function(a,b){var c=this.options.get("templateSelection"),d=this.options.get("escapeMarkup");return d(c(a,b))},e.prototype.selectionContainer=function(){return a("<span></span>")},e.prototype.update=function(a){if(0===a.length)return void this.clear();var b=a[0],c=this.$selection.find(".select2-selection__rendered"),d=this.display(b,c);c.empty().append(d),c.prop("title",b.title||b.text)},e}),b.define("select2/selection/multiple",["jquery","./base","../utils"],function(a,b,c){function d(a,b){d.__super__.constructor.apply(this,arguments)}return c.Extend(d,b),d.prototype.render=function(){var a=d.__super__.render.call(this);return a.addClass("select2-selection--multiple"),a.html('<ul class="select2-selection__rendered"></ul>'),a},d.prototype.bind=function(b,c){var e=this;d.__super__.bind.apply(this,arguments),this.$selection.on("click",function(a){e.trigger("toggle",{originalEvent:a})}),this.$selection.on("click",".select2-selection__choice__remove",function(b){if(!e.options.get("disabled")){var c=a(this),d=c.parent(),f=d.data("data");e.trigger("unselect",{originalEvent:b,data:f})}})},d.prototype.clear=function(){this.$selection.find(".select2-selection__rendered").empty()},d.prototype.display=function(a,b){var c=this.options.get("templateSelection"),d=this.options.get("escapeMarkup");return d(c(a,b))},d.prototype.selectionContainer=function(){var b=a('<li class="select2-selection__choice"><span class="select2-selection__choice__remove" role="presentation">&times;</span></li>');return b},d.prototype.update=function(a){if(this.clear(),0!==a.length){for(var b=[],d=0;d<a.length;d++){var e=a[d],f=this.selectionContainer(),g=this.display(e,f);f.append(g),f.prop("title",e.title||e.text),f.data("data",e),b.push(f)}var h=this.$selection.find(".select2-selection__rendered");c.appendMany(h,b)}},d}),b.define("select2/selection/placeholder",["../utils"],function(a){function b(a,b,c){this.placeholder=this.normalizePlaceholder(c.get("placeholder")),a.call(this,b,c)}return b.prototype.normalizePlaceholder=function(a,b){return"string"==typeof b&&(b={id:"",text:b}),b},b.prototype.createPlaceholder=function(a,b){var c=this.selectionContainer();return c.html(this.display(b)),c.addClass("select2-selection__placeholder").removeClass("select2-selection__choice"),c},b.prototype.update=function(a,b){var c=1==b.length&&b[0].id!=this.placeholder.id,d=b.length>1;if(d||c)return a.call(this,b);this.clear();var e=this.createPlaceholder(this.placeholder);this.$selection.find(".select2-selection__rendered").append(e)},b}),b.define("select2/selection/allowClear",["jquery","../keys"],function(a,b){function c(){}return c.prototype.bind=function(a,b,c){var d=this;a.call(this,b,c),null==this.placeholder&&this.options.get("debug")&&window.console&&console.error&&console.error("Select2: The `allowClear` option should be used in combination with the `placeholder` option."),this.$selection.on("mousedown",".select2-selection__clear",function(a){d._handleClear(a)}),b.on("keypress",function(a){d._handleKeyboardClear(a,b)})},c.prototype._handleClear=function(a,b){if(!this.options.get("disabled")){var c=this.$selection.find(".select2-selection__clear");if(0!==c.length){b.stopPropagation();for(var d=c.data("data"),e=0;e<d.length;e++){var f={data:d[e]};if(this.trigger("unselect",f),f.prevented)return}this.$element.val(this.placeholder.id).trigger("change"),this.trigger("toggle",{})}}},c.prototype._handleKeyboardClear=function(a,c,d){d.isOpen()||(c.which==b.DELETE||c.which==b.BACKSPACE)&&this._handleClear(c)},c.prototype.update=function(b,c){if(b.call(this,c),!(this.$selection.find(".select2-selection__placeholder").length>0||0===c.length)){var d=a('<span class="select2-selection__clear">&times;</span>');d.data("data",c),this.$selection.find(".select2-selection__rendered").prepend(d)}},c}),b.define("select2/selection/search",["jquery","../utils","../keys"],function(a,b,c){function d(a,b,c){a.call(this,b,c)}return d.prototype.render=function(b){var c=a('<li class="select2-search select2-search--inline"><input class="select2-search__field" type="search" tabindex="-1" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false" role="textbox" aria-autocomplete="list" /></li>');this.$searchContainer=c,this.$search=c.find("input");var d=b.call(this);return this._transferTabIndex(),d},d.prototype.bind=function(a,b,d){var e=this;a.call(this,b,d),b.on("open",function(){e.$search.trigger("focus")}),b.on("close",function(){e.$search.val(""),e.$search.removeAttr("aria-activedescendant"),e.$search.trigger("focus")}),b.on("enable",function(){e.$search.prop("disabled",!1),e._transferTabIndex()}),b.on("disable",function(){e.$search.prop("disabled",!0)}),b.on("focus",function(a){e.$search.trigger("focus")}),b.on("results:focus",function(a){e.$search.attr("aria-activedescendant",a.id)}),this.$selection.on("focusin",".select2-search--inline",function(a){e.trigger("focus",a)}),this.$selection.on("focusout",".select2-search--inline",function(a){e._handleBlur(a)}),this.$selection.on("keydown",".select2-search--inline",function(a){a.stopPropagation(),e.trigger("keypress",a),e._keyUpPrevented=a.isDefaultPrevented();var b=a.which;if(b===c.BACKSPACE&&""===e.$search.val()){var d=e.$searchContainer.prev(".select2-selection__choice");if(d.length>0){var f=d.data("data");e.searchRemoveChoice(f),a.preventDefault()}}});var f=document.documentMode,g=f&&11>=f;this.$selection.on("input.searchcheck",".select2-search--inline",function(a){return g?void e.$selection.off("input.search input.searchcheck"):void e.$selection.off("keyup.search")}),this.$selection.on("keyup.search input.search",".select2-search--inline",function(a){if(g&&"input"===a.type)return void e.$selection.off("input.search input.searchcheck");var b=a.which;b!=c.SHIFT&&b!=c.CTRL&&b!=c.ALT&&b!=c.TAB&&e.handleSearch(a)})},d.prototype._transferTabIndex=function(a){this.$search.attr("tabindex",this.$selection.attr("tabindex")),this.$selection.attr("tabindex","-1")},d.prototype.createPlaceholder=function(a,b){this.$search.attr("placeholder",b.text)},d.prototype.update=function(a,b){var c=this.$search[0]==document.activeElement;this.$search.attr("placeholder",""),a.call(this,b),this.$selection.find(".select2-selection__rendered").append(this.$searchContainer),this.resizeSearch(),c&&this.$search.focus()},d.prototype.handleSearch=function(){if(this.resizeSearch(),!this._keyUpPrevented){var a=this.$search.val();this.trigger("query",{term:a})}this._keyUpPrevented=!1},d.prototype.searchRemoveChoice=function(a,b){this.trigger("unselect",{data:b}),this.$search.val(b.text),this.handleSearch()},d.prototype.resizeSearch=function(){this.$search.css("width","25px");var a="";if(""!==this.$search.attr("placeholder"))a=this.$selection.find(".select2-selection__rendered").innerWidth();else{var b=this.$search.val().length+1;a=.75*b+"em"}this.$search.css("width",a)},d}),b.define("select2/selection/eventRelay",["jquery"],function(a){function b(){}return b.prototype.bind=function(b,c,d){var e=this,f=["open","opening","close","closing","select","selecting","unselect","unselecting"],g=["opening","closing","selecting","unselecting"];b.call(this,c,d),c.on("*",function(b,c){if(-1!==a.inArray(b,f)){c=c||{};var d=a.Event("select2:"+b,{params:c});e.$element.trigger(d),-1!==a.inArray(b,g)&&(c.prevented=d.isDefaultPrevented())}})},b}),b.define("select2/translation",["jquery","require"],function(a,b){function c(a){this.dict=a||{}}return c.prototype.all=function(){return this.dict},c.prototype.get=function(a){return this.dict[a]},c.prototype.extend=function(b){this.dict=a.extend({},b.all(),this.dict)},c._cache={},c.loadPath=function(a){if(!(a in c._cache)){var d=b(a);c._cache[a]=d}return new c(c._cache[a])},c}),b.define("select2/diacritics",[],function(){var a={"â’¶":"A","A":"A","À":"A","Á":"A","Â":"A","Ầ":"A","Ấ":"A","Ẫ":"A","Ẩ":"A","Ã":"A","Ä€":"A","Ä‚":"A","Ằ":"A","Ắ":"A","Ẵ":"A","Ẳ":"A","Ȧ":"A","Ç ":"A","Ä":"A","Çž":"A","Ả":"A","Ã…":"A","Ǻ":"A","Ǎ":"A","È€":"A","È‚":"A","Ạ":"A","Ậ":"A","Ặ":"A","Ḁ":"A","Ä„":"A","Ⱥ":"A","Ɐ":"A","Ꜳ":"AA","Æ":"AE","Ǽ":"AE","Ç¢":"AE","Ꜵ":"AO","Ꜷ":"AU","Ꜹ":"AV","Ꜻ":"AV","Ꜽ":"AY","â’·":"B","ï¼¢":"B","Ḃ":"B","Ḅ":"B","Ḇ":"B","Ƀ":"B","Æ‚":"B","Ɓ":"B","â’¸":"C","ï¼£":"C","Ć":"C","Ĉ":"C","ÄŠ":"C","ÄŒ":"C","Ç":"C","Ḉ":"C","Ƈ":"C","È»":"C","Ꜿ":"C","â’¹":"D","D":"D","Ḋ":"D","ÄŽ":"D","Ḍ":"D","Ḑ":"D","Ḓ":"D","Ḏ":"D","Đ":"D","Æ‹":"D","ÆŠ":"D","Ɖ":"D","Ꝺ":"D","DZ":"DZ","Ç„":"DZ","Dz":"Dz","Ç…":"Dz","â’º":"E","ï¼¥":"E","È":"E","É":"E","Ê":"E","Ề":"E","Ế":"E","Ễ":"E","Ể":"E","Ẽ":"E","Ä’":"E","Ḕ":"E","Ḗ":"E","Ä”":"E","Ä–":"E","Ë":"E","Ẻ":"E","Äš":"E","È„":"E","Ȇ":"E","Ẹ":"E","Ệ":"E","Ȩ":"E","Ḝ":"E","Ę":"E","Ḙ":"E","Ḛ":"E","Ɛ":"E","ÆŽ":"E","â’»":"F","F":"F","Ḟ":"F","Æ‘":"F","Ꝼ":"F","â’¼":"G","G":"G","Ç´":"G","Äœ":"G","Ḡ":"G","Äž":"G","Ä ":"G","Ǧ":"G","Ä¢":"G","Ǥ":"G","Æ“":"G","êž ":"G","Ᵹ":"G","Ꝿ":"G","â’½":"H","H":"H","Ĥ":"H","Ḣ":"H","Ḧ":"H","Èž":"H","Ḥ":"H","Ḩ":"H","Ḫ":"H","Ħ":"H","Ⱨ":"H","â±µ":"H","Ɥ":"H","â’¾":"I","I":"I","ÃŒ":"I","Í":"I","ÃŽ":"I","Ĩ":"I","Ī":"I","Ĭ":"I","Ä°":"I","Ï":"I","Ḯ":"I","Ỉ":"I","Ǐ":"I","Ȉ":"I","ÈŠ":"I","Ị":"I","Ä®":"I","Ḭ":"I","Æ—":"I","â’¿":"J","J":"J","Ä´":"J","Ɉ":"J","â“€":"K","K":"K","Ḱ":"K","Ǩ":"K","Ḳ":"K","Ķ":"K","Ḵ":"K","Ƙ":"K","Ⱪ":"K","Ꝁ":"K","Ꝃ":"K","Ꝅ":"K","Ꞣ":"K","Ⓛ":"L","L":"L","Ä¿":"L","Ĺ":"L","Ľ":"L","Ḷ":"L","Ḹ":"L","Ä»":"L","Ḽ":"L","Ḻ":"L","Ł":"L","Ƚ":"L","â±¢":"L","â± ":"L","Ꝉ":"L","Ꝇ":"L","Ꞁ":"L","LJ":"LJ","Lj":"Lj","â“‚":"M","ï¼­":"M","Ḿ":"M","á¹€":"M","Ṃ":"M","â±®":"M","Æœ":"M","Ⓝ":"N","ï¼®":"N","Ǹ":"N","Ń":"N","Ñ":"N","Ṅ":"N","Ň":"N","Ṇ":"N","Å…":"N","Ṋ":"N","Ṉ":"N","È ":"N","Ɲ":"N","Ꞑ":"N","Ꞥ":"N","ÇŠ":"NJ","Ç‹":"Nj","â“„":"O","O":"O","Ã’":"O","Ó":"O","Ô":"O","á»’":"O","Ố":"O","á»–":"O","á»”":"O","Õ":"O","Ṍ":"O","Ȭ":"O","Ṏ":"O","ÅŒ":"O","Ṑ":"O","á¹’":"O","ÅŽ":"O","È®":"O","È°":"O","Ö":"O","Ȫ":"O","Ỏ":"O","Ő":"O","Ç‘":"O","ÈŒ":"O","ÈŽ":"O","Æ ":"O","Ờ":"O","Ớ":"O","á» ":"O","Ở":"O","Ợ":"O","Ọ":"O","Ộ":"O","Ǫ":"O","Ǭ":"O","Ø":"O","Ǿ":"O","Ɔ":"O","ÆŸ":"O","Ꝋ":"O","Ꝍ":"O","Æ¢":"OI","Ꝏ":"OO","È¢":"OU","â“…":"P","ï¼°":"P","á¹”":"P","á¹–":"P","Ƥ":"P","â±£":"P","Ꝑ":"P","Ꝓ":"P","Ꝕ":"P","Ⓠ":"Q","ï¼±":"Q","Ꝗ":"Q","Ꝙ":"Q","ÉŠ":"Q","Ⓡ":"R","ï¼²":"R","Å”":"R","Ṙ":"R","Ř":"R","Ȑ":"R","È’":"R","Ṛ":"R","Ṝ":"R","Å–":"R","Ṟ":"R","ÉŒ":"R","Ɽ":"R","Ꝛ":"R","Ꞧ":"R","êž‚":"R","Ⓢ":"S","ï¼³":"S","ẞ":"S","Åš":"S","Ṥ":"S","Åœ":"S","á¹ ":"S","Å ":"S","Ṧ":"S","á¹¢":"S","Ṩ":"S","Ș":"S","Åž":"S","â±¾":"S","Ꞩ":"S","êž„":"S","Ⓣ":"T","ï¼´":"T","Ṫ":"T","Ť":"T","Ṭ":"T","Èš":"T","Å¢":"T","á¹°":"T","á¹®":"T","Ŧ":"T","Ƭ":"T","Æ®":"T","Ⱦ":"T","Ꞇ":"T","Ꜩ":"TZ","â“Š":"U","ï¼µ":"U","Ù":"U","Ú":"U","Û":"U","Ũ":"U","Ṹ":"U","Ū":"U","Ṻ":"U","Ŭ":"U","Ãœ":"U","Ç›":"U","Ç—":"U","Ç•":"U","Ç™":"U","Ủ":"U","Å®":"U","Å°":"U","Ç“":"U","È”":"U","È–":"U","Ư":"U","Ừ":"U","Ứ":"U","á»®":"U","Ử":"U","á»°":"U","Ụ":"U","á¹²":"U","Ų":"U","Ṷ":"U","á¹´":"U","É„":"U","â“‹":"V","V":"V","á¹¼":"V","á¹¾":"V","Ʋ":"V","Ꝟ":"V","É…":"V","ê ":"VY","â“Œ":"W","ï¼·":"W","Ẁ":"W","Ẃ":"W","Å´":"W","Ẇ":"W","Ẅ":"W","Ẉ":"W","â±²":"W","Ⓧ":"X","X":"X","Ẋ":"X","Ẍ":"X","â“Ž":"Y","ï¼¹":"Y","Ỳ":"Y","Ý":"Y","Ŷ":"Y","Ỹ":"Y","Ȳ":"Y","Ẏ":"Y","Ÿ":"Y","Ỷ":"Y","á»´":"Y","Ƴ":"Y","ÉŽ":"Y","Ỿ":"Y","Ⓩ":"Z","Z":"Z","Ź":"Z","Ẑ":"Z","Å»":"Z","Ž":"Z","Ẓ":"Z","Ẕ":"Z","Ƶ":"Z","Ȥ":"Z","Ɀ":"Z","Ⱬ":"Z","Ꝣ":"Z","ⓐ":"a","a":"a","ẚ":"a","à ":"a","á":"a","â":"a","ầ":"a","ấ":"a","ẫ":"a","ẩ":"a","ã":"a","ā":"a","ă":"a","ằ":"a","ắ":"a","ẵ":"a","ẳ":"a","ȧ":"a","Ç¡":"a","ä":"a","ÇŸ":"a","ả":"a","Ã¥":"a","Ç»":"a","ÇŽ":"a","ȁ":"a","ȃ":"a","ạ":"a","ậ":"a","ặ":"a","ḁ":"a","Ä…":"a","â±¥":"a","ɐ":"a","ꜳ":"aa","æ":"ae","ǽ":"ae","Ç£":"ae","ꜵ":"ao","ꜷ":"au","ꜹ":"av","ꜻ":"av","ꜽ":"ay","â“‘":"b","b":"b","ḃ":"b","ḅ":"b","ḇ":"b","Æ€":"b","ƃ":"b","É“":"b","â“’":"c","c":"c","ć":"c","ĉ":"c","Ä‹":"c","č":"c","ç":"c","ḉ":"c","ƈ":"c","ȼ":"c","ꜿ":"c","ↄ":"c","â““":"d","d":"d","ḋ":"d","ď":"d","ḍ":"d","ḑ":"d","ḓ":"d","ḏ":"d","Ä‘":"d","ÆŒ":"d","É–":"d","É—":"d","ꝺ":"d","dz":"dz","dž":"dz","â“”":"e","ï½…":"e","è":"e","é":"e","ê":"e","ề":"e","ế":"e","á»…":"e","ể":"e","ẽ":"e","Ä“":"e","ḕ":"e","ḗ":"e","Ä•":"e","Ä—":"e","ë":"e","ẻ":"e","Ä›":"e","È…":"e","ȇ":"e","ẹ":"e","ệ":"e","È©":"e","ḝ":"e","Ä™":"e","ḙ":"e","ḛ":"e","ɇ":"e","É›":"e","ǝ":"e","â“•":"f","f":"f","ḟ":"f","Æ’":"f","ꝼ":"f","â“–":"g","g":"g","ǵ":"g","ĝ":"g","ḡ":"g","ÄŸ":"g","Ä¡":"g","ǧ":"g","Ä£":"g","Ç¥":"g","É ":"g","êž¡":"g","áµ¹":"g","ꝿ":"g","â“—":"h","h":"h","Ä¥":"h","ḣ":"h","ḧ":"h","ÈŸ":"h","ḥ":"h","ḩ":"h","ḫ":"h","ẖ":"h","ħ":"h","ⱨ":"h","ⱶ":"h","É¥":"h","Æ•":"hv","ⓘ":"i","i":"i","ì":"i","í":"i","î":"i","Ä©":"i","Ä«":"i","Ä­":"i","ï":"i","ḯ":"i","ỉ":"i","ǐ":"i","ȉ":"i","È‹":"i","ị":"i","į":"i","ḭ":"i","ɨ":"i","ı":"i","â“™":"j","j":"j","ĵ":"j","Ç°":"j","ɉ":"j","â“š":"k","k":"k","ḱ":"k","Ç©":"k","ḳ":"k","Ä·":"k","ḵ":"k","Æ™":"k","ⱪ":"k","ꝁ":"k","ꝃ":"k","ꝅ":"k","ꞣ":"k","â“›":"l","l":"l","Å€":"l","ĺ":"l","ľ":"l","ḷ":"l","ḹ":"l","ļ":"l","ḽ":"l","ḻ":"l","Å¿":"l","Å‚":"l","Æš":"l","É«":"l","ⱡ":"l","ꝉ":"l","ꞁ":"l","ꝇ":"l","lj":"lj","â“œ":"m","m":"m","ḿ":"m","ṁ":"m","ṃ":"m","ɱ":"m","ɯ":"m","ⓝ":"n","n":"n","ǹ":"n","Å„":"n","ñ":"n","á¹…":"n","ň":"n","ṇ":"n","ņ":"n","ṋ":"n","ṉ":"n","Æž":"n","ɲ":"n","ʼn":"n","êž‘":"n","ꞥ":"n","ÇŒ":"nj","â“ž":"o","o":"o","ò":"o","ó":"o","ô":"o","ồ":"o","ố":"o","á»—":"o","ổ":"o","õ":"o","ṍ":"o","È­":"o","ṏ":"o","ō":"o","ṑ":"o","ṓ":"o","ŏ":"o","ȯ":"o","ȱ":"o","ö":"o","È«":"o","ỏ":"o","Å‘":"o","Ç’":"o","ȍ":"o","ȏ":"o","Æ¡":"o","ờ":"o","á»›":"o","ỡ":"o","ở":"o","ợ":"o","ọ":"o","á»™":"o","Ç«":"o","Ç­":"o","ø":"o","Ç¿":"o","É”":"o","ꝋ":"o","ꝍ":"o","ɵ":"o","Æ£":"oi","È£":"ou","ꝏ":"oo","â“Ÿ":"p","p":"p","ṕ":"p","á¹—":"p","Æ¥":"p","áµ½":"p","ꝑ":"p","ꝓ":"p","ꝕ":"p","â“ ":"q","q":"q","É‹":"q","ꝗ":"q","ꝙ":"q","â“¡":"r","ï½’":"r","Å•":"r","á¹™":"r","Å™":"r","È‘":"r","È“":"r","á¹›":"r","ṝ":"r","Å—":"r","ṟ":"r","ɍ":"r","ɽ":"r","ꝛ":"r","ꞧ":"r","ꞃ":"r","â“¢":"s","s":"s","ß":"s","Å›":"s","á¹¥":"s","ŝ":"s","ṡ":"s","Å¡":"s","ṧ":"s","á¹£":"s","ṩ":"s","È™":"s","ÅŸ":"s","È¿":"s","êž©":"s","êž…":"s","ẛ":"s","â“£":"t","ï½”":"t","ṫ":"t","ẗ":"t","Å¥":"t","á¹­":"t","È›":"t","Å£":"t","á¹±":"t","ṯ":"t","ŧ":"t","Æ­":"t","ʈ":"t","ⱦ":"t","ꞇ":"t","ꜩ":"tz","ⓤ":"u","u":"u","ù":"u","ú":"u","û":"u","Å©":"u","á¹¹":"u","Å«":"u","á¹»":"u","Å­":"u","ü":"u","Çœ":"u","ǘ":"u","Ç–":"u","Çš":"u","ủ":"u","ů":"u","ű":"u","Ç”":"u","È•":"u","È—":"u","Æ°":"u","ừ":"u","ứ":"u","ữ":"u","á»­":"u","á»±":"u","ụ":"u","á¹³":"u","ų":"u","á¹·":"u","á¹µ":"u","ʉ":"u","â“¥":"v","ï½–":"v","á¹½":"v","ṿ":"v","Ê‹":"v","ꝟ":"v","ÊŒ":"v","ꝡ":"vy","ⓦ":"w","ï½—":"w","ẁ":"w","ẃ":"w","ŵ":"w","ẇ":"w","ẅ":"w","ẘ":"w","ẉ":"w","â±³":"w","ⓧ":"x","x":"x","ẋ":"x","ẍ":"x","ⓨ":"y","ï½™":"y","ỳ":"y","ý":"y","Å·":"y","ỹ":"y","ȳ":"y","ẏ":"y","ÿ":"y","á»·":"y","ẙ":"y","ỵ":"y","Æ´":"y","ɏ":"y","ỿ":"y","â“©":"z","z":"z","ź":"z","ẑ":"z","ż":"z","ž":"z","ẓ":"z","ẕ":"z","ƶ":"z","È¥":"z","É€":"z","ⱬ":"z","ꝣ":"z","Ά":"Α","Έ":"Ε","Ή":"Η","Ί":"Ι","Ϊ":"Ι","ÎŒ":"Ο","ÎŽ":"Î¥","Ϋ":"Î¥","Ώ":"Ω","ά":"α","έ":"ε","ή":"η","ί":"ι","ÏŠ":"ι","ΐ":"ι","ÏŒ":"ο","ύ":"Ï…","Ï‹":"Ï…","ΰ":"Ï…","ω":"ω","Ï‚":"σ"};return a}),b.define("select2/data/base",["../utils"],function(a){function b(a,c){b.__super__.constructor.call(this)}return a.Extend(b,a.Observable),b.prototype.current=function(a){throw new Error("The `current` method must be defined in child classes.")},b.prototype.query=function(a,b){throw new Error("The `query` method must be defined in child classes.")},b.prototype.bind=function(a,b){},b.prototype.destroy=function(){},b.prototype.generateResultId=function(b,c){var d=b.id+"-result-";return d+=a.generateChars(4),d+=null!=c.id?"-"+c.id.toString():"-"+a.generateChars(4)},b}),b.define("select2/data/select",["./base","../utils","jquery"],function(a,b,c){function d(a,b){this.$element=a,this.options=b,d.__super__.constructor.call(this)}return b.Extend(d,a),d.prototype.current=function(a){var b=[],d=this;this.$element.find(":selected").each(function(){var a=c(this),e=d.item(a);b.push(e)}),a(b)},d.prototype.select=function(a){
2
- var b=this;if(a.selected=!0,c(a.element).is("option"))return a.element.selected=!0,void this.$element.trigger("change");if(this.$element.prop("multiple"))this.current(function(d){var e=[];a=[a],a.push.apply(a,d);for(var f=0;f<a.length;f++){var g=a[f].id;-1===c.inArray(g,e)&&e.push(g)}b.$element.val(e),b.$element.trigger("change")});else{var d=a.id;this.$element.val(d),this.$element.trigger("change")}},d.prototype.unselect=function(a){var b=this;if(this.$element.prop("multiple"))return a.selected=!1,c(a.element).is("option")?(a.element.selected=!1,void this.$element.trigger("change")):void this.current(function(d){for(var e=[],f=0;f<d.length;f++){var g=d[f].id;g!==a.id&&-1===c.inArray(g,e)&&e.push(g)}b.$element.val(e),b.$element.trigger("change")})},d.prototype.bind=function(a,b){var c=this;this.container=a,a.on("select",function(a){c.select(a.data)}),a.on("unselect",function(a){c.unselect(a.data)})},d.prototype.destroy=function(){this.$element.find("*").each(function(){c.removeData(this,"data")})},d.prototype.query=function(a,b){var d=[],e=this,f=this.$element.children();f.each(function(){var b=c(this);if(b.is("option")||b.is("optgroup")){var f=e.item(b),g=e.matches(a,f);null!==g&&d.push(g)}}),b({results:d})},d.prototype.addOptions=function(a){b.appendMany(this.$element,a)},d.prototype.option=function(a){var b;a.children?(b=document.createElement("optgroup"),b.label=a.text):(b=document.createElement("option"),void 0!==b.textContent?b.textContent=a.text:b.innerText=a.text),void 0!==a.id&&(b.value=a.id),a.disabled&&(b.disabled=!0),a.selected&&(b.selected=!0),a.title&&(b.title=a.title);var d=c(b),e=this._normalizeItem(a);return e.element=b,c.data(b,"data",e),d},d.prototype.item=function(a){var b={};if(b=c.data(a[0],"data"),null!=b)return b;if(a.is("option"))b={id:a.val(),text:a.text(),disabled:a.prop("disabled"),selected:a.prop("selected"),title:a.prop("title")};else if(a.is("optgroup")){b={text:a.prop("label"),children:[],title:a.prop("title")};for(var d=a.children("option"),e=[],f=0;f<d.length;f++){var g=c(d[f]),h=this.item(g);e.push(h)}b.children=e}return b=this._normalizeItem(b),b.element=a[0],c.data(a[0],"data",b),b},d.prototype._normalizeItem=function(a){c.isPlainObject(a)||(a={id:a,text:a}),a=c.extend({},{text:""},a);var b={selected:!1,disabled:!1};return null!=a.id&&(a.id=a.id.toString()),null!=a.text&&(a.text=a.text.toString()),null==a._resultId&&a.id&&null!=this.container&&(a._resultId=this.generateResultId(this.container,a)),c.extend({},b,a)},d.prototype.matches=function(a,b){var c=this.options.get("matcher");return c(a,b)},d}),b.define("select2/data/array",["./select","../utils","jquery"],function(a,b,c){function d(a,b){var c=b.get("data")||[];d.__super__.constructor.call(this,a,b),this.addOptions(this.convertToOptions(c))}return b.Extend(d,a),d.prototype.select=function(a){var b=this.$element.find("option").filter(function(b,c){return c.value==a.id.toString()});0===b.length&&(b=this.option(a),this.addOptions(b)),d.__super__.select.call(this,a)},d.prototype.convertToOptions=function(a){function d(a){return function(){return c(this).val()==a.id}}for(var e=this,f=this.$element.find("option"),g=f.map(function(){return e.item(c(this)).id}).get(),h=[],i=0;i<a.length;i++){var j=this._normalizeItem(a[i]);if(c.inArray(j.id,g)>=0){var k=f.filter(d(j)),l=this.item(k),m=c.extend(!0,{},j,l),n=this.option(m);k.replaceWith(n)}else{var o=this.option(j);if(j.children){var p=this.convertToOptions(j.children);b.appendMany(o,p)}h.push(o)}}return h},d}),b.define("select2/data/ajax",["./array","../utils","jquery"],function(a,b,c){function d(a,b){this.ajaxOptions=this._applyDefaults(b.get("ajax")),null!=this.ajaxOptions.processResults&&(this.processResults=this.ajaxOptions.processResults),d.__super__.constructor.call(this,a,b)}return b.Extend(d,a),d.prototype._applyDefaults=function(a){var b={data:function(a){return c.extend({},a,{q:a.term})},transport:function(a,b,d){var e=c.ajax(a);return e.then(b),e.fail(d),e}};return c.extend({},b,a,!0)},d.prototype.processResults=function(a){return a},d.prototype.query=function(a,b){function d(){var d=f.transport(f,function(d){var f=e.processResults(d,a);e.options.get("debug")&&window.console&&console.error&&(f&&f.results&&c.isArray(f.results)||console.error("Select2: The AJAX results did not return an array in the `results` key of the response.")),b(f)},function(){d.status&&"0"===d.status||e.trigger("results:message",{message:"errorLoading"})});e._request=d}var e=this;null!=this._request&&(c.isFunction(this._request.abort)&&this._request.abort(),this._request=null);var f=c.extend({type:"GET"},this.ajaxOptions);"function"==typeof f.url&&(f.url=f.url.call(this.$element,a)),"function"==typeof f.data&&(f.data=f.data.call(this.$element,a)),this.ajaxOptions.delay&&null!=a.term?(this._queryTimeout&&window.clearTimeout(this._queryTimeout),this._queryTimeout=window.setTimeout(d,this.ajaxOptions.delay)):d()},d}),b.define("select2/data/tags",["jquery"],function(a){function b(b,c,d){var e=d.get("tags"),f=d.get("createTag");void 0!==f&&(this.createTag=f);var g=d.get("insertTag");if(void 0!==g&&(this.insertTag=g),b.call(this,c,d),a.isArray(e))for(var h=0;h<e.length;h++){var i=e[h],j=this._normalizeItem(i),k=this.option(j);this.$element.append(k)}}return b.prototype.query=function(a,b,c){function d(a,f){for(var g=a.results,h=0;h<g.length;h++){var i=g[h],j=null!=i.children&&!d({results:i.children},!0),k=(i.text||"").toUpperCase(),l=(b.term||"").toUpperCase(),m=k===l;if(m||j)return f?!1:(a.data=g,void c(a))}if(f)return!0;var n=e.createTag(b);if(null!=n){var o=e.option(n);o.attr("data-select2-tag",!0),e.addOptions([o]),e.insertTag(g,n)}a.results=g,c(a)}var e=this;return this._removeOldTags(),null==b.term||null!=b.page?void a.call(this,b,c):void a.call(this,b,d)},b.prototype.createTag=function(b,c){var d=a.trim(c.term);return""===d?null:{id:d,text:d}},b.prototype.insertTag=function(a,b,c){b.unshift(c)},b.prototype._removeOldTags=function(b){var c=(this._lastTag,this.$element.find("option[data-select2-tag]"));c.each(function(){this.selected||a(this).remove()})},b}),b.define("select2/data/tokenizer",["jquery"],function(a){function b(a,b,c){var d=c.get("tokenizer");void 0!==d&&(this.tokenizer=d),a.call(this,b,c)}return b.prototype.bind=function(a,b,c){a.call(this,b,c),this.$search=b.dropdown.$search||b.selection.$search||c.find(".select2-search__field")},b.prototype.query=function(b,c,d){function e(b){var c=g._normalizeItem(b),d=g.$element.find("option").filter(function(){return a(this).val()===c.id});if(!d.length){var e=g.option(c);e.attr("data-select2-tag",!0),g._removeOldTags(),g.addOptions([e])}f(c)}function f(a){g.trigger("select",{data:a})}var g=this;c.term=c.term||"";var h=this.tokenizer(c,this.options,e);h.term!==c.term&&(this.$search.length&&(this.$search.val(h.term),this.$search.focus()),c.term=h.term),b.call(this,c,d)},b.prototype.tokenizer=function(b,c,d,e){for(var f=d.get("tokenSeparators")||[],g=c.term,h=0,i=this.createTag||function(a){return{id:a.term,text:a.term}};h<g.length;){var j=g[h];if(-1!==a.inArray(j,f)){var k=g.substr(0,h),l=a.extend({},c,{term:k}),m=i(l);null!=m?(e(m),g=g.substr(h+1)||"",h=0):h++}else h++}return{term:g}},b}),b.define("select2/data/minimumInputLength",[],function(){function a(a,b,c){this.minimumInputLength=c.get("minimumInputLength"),a.call(this,b,c)}return a.prototype.query=function(a,b,c){return b.term=b.term||"",b.term.length<this.minimumInputLength?void this.trigger("results:message",{message:"inputTooShort",args:{minimum:this.minimumInputLength,input:b.term,params:b}}):void a.call(this,b,c)},a}),b.define("select2/data/maximumInputLength",[],function(){function a(a,b,c){this.maximumInputLength=c.get("maximumInputLength"),a.call(this,b,c)}return a.prototype.query=function(a,b,c){return b.term=b.term||"",this.maximumInputLength>0&&b.term.length>this.maximumInputLength?void this.trigger("results:message",{message:"inputTooLong",args:{maximum:this.maximumInputLength,input:b.term,params:b}}):void a.call(this,b,c)},a}),b.define("select2/data/maximumSelectionLength",[],function(){function a(a,b,c){this.maximumSelectionLength=c.get("maximumSelectionLength"),a.call(this,b,c)}return a.prototype.query=function(a,b,c){var d=this;this.current(function(e){var f=null!=e?e.length:0;return d.maximumSelectionLength>0&&f>=d.maximumSelectionLength?void d.trigger("results:message",{message:"maximumSelected",args:{maximum:d.maximumSelectionLength}}):void a.call(d,b,c)})},a}),b.define("select2/dropdown",["jquery","./utils"],function(a,b){function c(a,b){this.$element=a,this.options=b,c.__super__.constructor.call(this)}return b.Extend(c,b.Observable),c.prototype.render=function(){var b=a('<span class="select2-dropdown"><span class="select2-results"></span></span>');return b.attr("dir",this.options.get("dir")),this.$dropdown=b,b},c.prototype.bind=function(){},c.prototype.position=function(a,b){},c.prototype.destroy=function(){this.$dropdown.remove()},c}),b.define("select2/dropdown/search",["jquery","../utils"],function(a,b){function c(){}return c.prototype.render=function(b){var c=b.call(this),d=a('<span class="select2-search select2-search--dropdown"><input class="select2-search__field" type="search" tabindex="-1" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false" role="textbox" /></span>');return this.$searchContainer=d,this.$search=d.find("input"),c.prepend(d),c},c.prototype.bind=function(b,c,d){var e=this;b.call(this,c,d),this.$search.on("keydown",function(a){e.trigger("keypress",a),e._keyUpPrevented=a.isDefaultPrevented()}),this.$search.on("input",function(b){a(this).off("keyup")}),this.$search.on("keyup input",function(a){e.handleSearch(a)}),c.on("open",function(){e.$search.attr("tabindex",0),e.$search.focus(),window.setTimeout(function(){e.$search.focus()},0)}),c.on("close",function(){e.$search.attr("tabindex",-1),e.$search.val("")}),c.on("focus",function(){c.isOpen()&&e.$search.focus()}),c.on("results:all",function(a){if(null==a.query.term||""===a.query.term){var b=e.showSearch(a);b?e.$searchContainer.removeClass("select2-search--hide"):e.$searchContainer.addClass("select2-search--hide")}})},c.prototype.handleSearch=function(a){if(!this._keyUpPrevented){var b=this.$search.val();this.trigger("query",{term:b})}this._keyUpPrevented=!1},c.prototype.showSearch=function(a,b){return!0},c}),b.define("select2/dropdown/hidePlaceholder",[],function(){function a(a,b,c,d){this.placeholder=this.normalizePlaceholder(c.get("placeholder")),a.call(this,b,c,d)}return a.prototype.append=function(a,b){b.results=this.removePlaceholder(b.results),a.call(this,b)},a.prototype.normalizePlaceholder=function(a,b){return"string"==typeof b&&(b={id:"",text:b}),b},a.prototype.removePlaceholder=function(a,b){for(var c=b.slice(0),d=b.length-1;d>=0;d--){var e=b[d];this.placeholder.id===e.id&&c.splice(d,1)}return c},a}),b.define("select2/dropdown/infiniteScroll",["jquery"],function(a){function b(a,b,c,d){this.lastParams={},a.call(this,b,c,d),this.$loadingMore=this.createLoadingMore(),this.loading=!1}return b.prototype.append=function(a,b){this.$loadingMore.remove(),this.loading=!1,a.call(this,b),this.showLoadingMore(b)&&this.$results.append(this.$loadingMore)},b.prototype.bind=function(b,c,d){var e=this;b.call(this,c,d),c.on("query",function(a){e.lastParams=a,e.loading=!0}),c.on("query:append",function(a){e.lastParams=a,e.loading=!0}),this.$results.on("scroll",function(){var b=a.contains(document.documentElement,e.$loadingMore[0]);if(!e.loading&&b){var c=e.$results.offset().top+e.$results.outerHeight(!1),d=e.$loadingMore.offset().top+e.$loadingMore.outerHeight(!1);c+50>=d&&e.loadMore()}})},b.prototype.loadMore=function(){this.loading=!0;var b=a.extend({},{page:1},this.lastParams);b.page++,this.trigger("query:append",b)},b.prototype.showLoadingMore=function(a,b){return b.pagination&&b.pagination.more},b.prototype.createLoadingMore=function(){var b=a('<li class="select2-results__option select2-results__option--load-more"role="treeitem" aria-disabled="true"></li>'),c=this.options.get("translations").get("loadingMore");return b.html(c(this.lastParams)),b},b}),b.define("select2/dropdown/attachBody",["jquery","../utils"],function(a,b){function c(b,c,d){this.$dropdownParent=d.get("dropdownParent")||a(document.body),b.call(this,c,d)}return c.prototype.bind=function(a,b,c){var d=this,e=!1;a.call(this,b,c),b.on("open",function(){d._showDropdown(),d._attachPositioningHandler(b),e||(e=!0,b.on("results:all",function(){d._positionDropdown(),d._resizeDropdown()}),b.on("results:append",function(){d._positionDropdown(),d._resizeDropdown()}))}),b.on("close",function(){d._hideDropdown(),d._detachPositioningHandler(b)}),this.$dropdownContainer.on("mousedown",function(a){a.stopPropagation()})},c.prototype.destroy=function(a){a.call(this),this.$dropdownContainer.remove()},c.prototype.position=function(a,b,c){b.attr("class",c.attr("class")),b.removeClass("select2"),b.addClass("select2-container--open"),b.css({position:"absolute",top:-999999}),this.$container=c},c.prototype.render=function(b){var c=a("<span></span>"),d=b.call(this);return c.append(d),this.$dropdownContainer=c,c},c.prototype._hideDropdown=function(a){this.$dropdownContainer.detach()},c.prototype._attachPositioningHandler=function(c,d){var e=this,f="scroll.select2."+d.id,g="resize.select2."+d.id,h="orientationchange.select2."+d.id,i=this.$container.parents().filter(b.hasScroll);i.each(function(){a(this).data("select2-scroll-position",{x:a(this).scrollLeft(),y:a(this).scrollTop()})}),i.on(f,function(b){var c=a(this).data("select2-scroll-position");a(this).scrollTop(c.y)}),a(window).on(f+" "+g+" "+h,function(a){e._positionDropdown(),e._resizeDropdown()})},c.prototype._detachPositioningHandler=function(c,d){var e="scroll.select2."+d.id,f="resize.select2."+d.id,g="orientationchange.select2."+d.id,h=this.$container.parents().filter(b.hasScroll);h.off(e),a(window).off(e+" "+f+" "+g)},c.prototype._positionDropdown=function(){var b=a(window),c=this.$dropdown.hasClass("select2-dropdown--above"),d=this.$dropdown.hasClass("select2-dropdown--below"),e=null,f=this.$container.offset();f.bottom=f.top+this.$container.outerHeight(!1);var g={height:this.$container.outerHeight(!1)};g.top=f.top,g.bottom=f.top+g.height;var h={height:this.$dropdown.outerHeight(!1)},i={top:b.scrollTop(),bottom:b.scrollTop()+b.height()},j=i.top<f.top-h.height,k=i.bottom>f.bottom+h.height,l={left:f.left,top:g.bottom},m=this.$dropdownParent;"static"===m.css("position")&&(m=m.offsetParent());var n=m.offset();l.top-=n.top,l.left-=n.left,c||d||(e="below"),k||!j||c?!j&&k&&c&&(e="below"):e="above",("above"==e||c&&"below"!==e)&&(l.top=g.top-n.top-h.height),null!=e&&(this.$dropdown.removeClass("select2-dropdown--below select2-dropdown--above").addClass("select2-dropdown--"+e),this.$container.removeClass("select2-container--below select2-container--above").addClass("select2-container--"+e)),this.$dropdownContainer.css(l)},c.prototype._resizeDropdown=function(){var a={width:this.$container.outerWidth(!1)+"px"};this.options.get("dropdownAutoWidth")&&(a.minWidth=a.width,a.position="relative",a.width="auto"),this.$dropdown.css(a)},c.prototype._showDropdown=function(a){this.$dropdownContainer.appendTo(this.$dropdownParent),this._positionDropdown(),this._resizeDropdown()},c}),b.define("select2/dropdown/minimumResultsForSearch",[],function(){function a(b){for(var c=0,d=0;d<b.length;d++){var e=b[d];e.children?c+=a(e.children):c++}return c}function b(a,b,c,d){this.minimumResultsForSearch=c.get("minimumResultsForSearch"),this.minimumResultsForSearch<0&&(this.minimumResultsForSearch=1/0),a.call(this,b,c,d)}return b.prototype.showSearch=function(b,c){return a(c.data.results)<this.minimumResultsForSearch?!1:b.call(this,c)},b}),b.define("select2/dropdown/selectOnClose",[],function(){function a(){}return a.prototype.bind=function(a,b,c){var d=this;a.call(this,b,c),b.on("close",function(a){d._handleSelectOnClose(a)})},a.prototype._handleSelectOnClose=function(a,b){if(b&&null!=b.originalSelect2Event){var c=b.originalSelect2Event;if("select"===c._type||"unselect"===c._type)return}var d=this.getHighlightedResults();if(!(d.length<1)){var e=d.data("data");null!=e.element&&e.element.selected||null==e.element&&e.selected||this.trigger("select",{data:e})}},a}),b.define("select2/dropdown/closeOnSelect",[],function(){function a(){}return a.prototype.bind=function(a,b,c){var d=this;a.call(this,b,c),b.on("select",function(a){d._selectTriggered(a)}),b.on("unselect",function(a){d._selectTriggered(a)})},a.prototype._selectTriggered=function(a,b){var c=b.originalEvent;c&&c.ctrlKey||this.trigger("close",{originalEvent:c,originalSelect2Event:b})},a}),b.define("select2/i18n/en",[],function(){return{errorLoading:function(){return"The results could not be loaded."},inputTooLong:function(a){var b=a.input.length-a.maximum,c="Please delete "+b+" character";return 1!=b&&(c+="s"),c},inputTooShort:function(a){var b=a.minimum-a.input.length,c="Please enter "+b+" or more characters";return c},loadingMore:function(){return"Loading more results…"},maximumSelected:function(a){var b="You can only select "+a.maximum+" item";return 1!=a.maximum&&(b+="s"),b},noResults:function(){return"No results found"},searching:function(){return"Searching…"}}}),b.define("select2/defaults",["jquery","require","./results","./selection/single","./selection/multiple","./selection/placeholder","./selection/allowClear","./selection/search","./selection/eventRelay","./utils","./translation","./diacritics","./data/select","./data/array","./data/ajax","./data/tags","./data/tokenizer","./data/minimumInputLength","./data/maximumInputLength","./data/maximumSelectionLength","./dropdown","./dropdown/search","./dropdown/hidePlaceholder","./dropdown/infiniteScroll","./dropdown/attachBody","./dropdown/minimumResultsForSearch","./dropdown/selectOnClose","./dropdown/closeOnSelect","./i18n/en"],function(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x,y,z,A,B,C){function D(){this.reset()}D.prototype.apply=function(l){if(l=a.extend(!0,{},this.defaults,l),null==l.dataAdapter){if(null!=l.ajax?l.dataAdapter=o:null!=l.data?l.dataAdapter=n:l.dataAdapter=m,l.minimumInputLength>0&&(l.dataAdapter=j.Decorate(l.dataAdapter,r)),l.maximumInputLength>0&&(l.dataAdapter=j.Decorate(l.dataAdapter,s)),l.maximumSelectionLength>0&&(l.dataAdapter=j.Decorate(l.dataAdapter,t)),l.tags&&(l.dataAdapter=j.Decorate(l.dataAdapter,p)),(null!=l.tokenSeparators||null!=l.tokenizer)&&(l.dataAdapter=j.Decorate(l.dataAdapter,q)),null!=l.query){var C=b(l.amdBase+"compat/query");l.dataAdapter=j.Decorate(l.dataAdapter,C)}if(null!=l.initSelection){var D=b(l.amdBase+"compat/initSelection");l.dataAdapter=j.Decorate(l.dataAdapter,D)}}if(null==l.resultsAdapter&&(l.resultsAdapter=c,null!=l.ajax&&(l.resultsAdapter=j.Decorate(l.resultsAdapter,x)),null!=l.placeholder&&(l.resultsAdapter=j.Decorate(l.resultsAdapter,w)),l.selectOnClose&&(l.resultsAdapter=j.Decorate(l.resultsAdapter,A))),null==l.dropdownAdapter){if(l.multiple)l.dropdownAdapter=u;else{var E=j.Decorate(u,v);l.dropdownAdapter=E}if(0!==l.minimumResultsForSearch&&(l.dropdownAdapter=j.Decorate(l.dropdownAdapter,z)),l.closeOnSelect&&(l.dropdownAdapter=j.Decorate(l.dropdownAdapter,B)),null!=l.dropdownCssClass||null!=l.dropdownCss||null!=l.adaptDropdownCssClass){var F=b(l.amdBase+"compat/dropdownCss");l.dropdownAdapter=j.Decorate(l.dropdownAdapter,F)}l.dropdownAdapter=j.Decorate(l.dropdownAdapter,y)}if(null==l.selectionAdapter){if(l.multiple?l.selectionAdapter=e:l.selectionAdapter=d,null!=l.placeholder&&(l.selectionAdapter=j.Decorate(l.selectionAdapter,f)),l.allowClear&&(l.selectionAdapter=j.Decorate(l.selectionAdapter,g)),l.multiple&&(l.selectionAdapter=j.Decorate(l.selectionAdapter,h)),null!=l.containerCssClass||null!=l.containerCss||null!=l.adaptContainerCssClass){var G=b(l.amdBase+"compat/containerCss");l.selectionAdapter=j.Decorate(l.selectionAdapter,G)}l.selectionAdapter=j.Decorate(l.selectionAdapter,i)}if("string"==typeof l.language)if(l.language.indexOf("-")>0){var H=l.language.split("-"),I=H[0];l.language=[l.language,I]}else l.language=[l.language];if(a.isArray(l.language)){var J=new k;l.language.push("en");for(var K=l.language,L=0;L<K.length;L++){var M=K[L],N={};try{N=k.loadPath(M)}catch(O){try{M=this.defaults.amdLanguageBase+M,N=k.loadPath(M)}catch(P){l.debug&&window.console&&console.warn&&console.warn('Select2: The language file for "'+M+'" could not be automatically loaded. A fallback will be used instead.');continue}}J.extend(N)}l.translations=J}else{var Q=k.loadPath(this.defaults.amdLanguageBase+"en"),R=new k(l.language);R.extend(Q),l.translations=R}return l},D.prototype.reset=function(){function b(a){function b(a){return l[a]||a}return a.replace(/[^\u0000-\u007E]/g,b)}function c(d,e){if(""===a.trim(d.term))return e;if(e.children&&e.children.length>0){for(var f=a.extend(!0,{},e),g=e.children.length-1;g>=0;g--){var h=e.children[g],i=c(d,h);null==i&&f.children.splice(g,1)}return f.children.length>0?f:c(d,f)}var j=b(e.text).toUpperCase(),k=b(d.term).toUpperCase();return j.indexOf(k)>-1?e:null}this.defaults={amdBase:"./",amdLanguageBase:"./i18n/",closeOnSelect:!0,debug:!1,dropdownAutoWidth:!1,escapeMarkup:j.escapeMarkup,language:C,matcher:c,minimumInputLength:0,maximumInputLength:0,maximumSelectionLength:0,minimumResultsForSearch:0,selectOnClose:!1,sorter:function(a){return a},templateResult:function(a){return a.text},templateSelection:function(a){return a.text},theme:"default",width:"resolve"}},D.prototype.set=function(b,c){var d=a.camelCase(b),e={};e[d]=c;var f=j._convertData(e);a.extend(this.defaults,f)};var E=new D;return E}),b.define("select2/options",["require","jquery","./defaults","./utils"],function(a,b,c,d){function e(b,e){if(this.options=b,null!=e&&this.fromElement(e),this.options=c.apply(this.options),e&&e.is("input")){var f=a(this.get("amdBase")+"compat/inputData");this.options.dataAdapter=d.Decorate(this.options.dataAdapter,f)}}return e.prototype.fromElement=function(a){var c=["select2"];null==this.options.multiple&&(this.options.multiple=a.prop("multiple")),null==this.options.disabled&&(this.options.disabled=a.prop("disabled")),null==this.options.language&&(a.prop("lang")?this.options.language=a.prop("lang").toLowerCase():a.closest("[lang]").prop("lang")&&(this.options.language=a.closest("[lang]").prop("lang"))),null==this.options.dir&&(a.prop("dir")?this.options.dir=a.prop("dir"):a.closest("[dir]").prop("dir")?this.options.dir=a.closest("[dir]").prop("dir"):this.options.dir="ltr"),a.prop("disabled",this.options.disabled),a.prop("multiple",this.options.multiple),a.data("select2Tags")&&(this.options.debug&&window.console&&console.warn&&console.warn('Select2: The `data-select2-tags` attribute has been changed to use the `data-data` and `data-tags="true"` attributes and will be removed in future versions of Select2.'),a.data("data",a.data("select2Tags")),a.data("tags",!0)),a.data("ajaxUrl")&&(this.options.debug&&window.console&&console.warn&&console.warn("Select2: The `data-ajax-url` attribute has been changed to `data-ajax--url` and support for the old attribute will be removed in future versions of Select2."),a.attr("ajax--url",a.data("ajaxUrl")),a.data("ajax--url",a.data("ajaxUrl")));var e={};e=b.fn.jquery&&"1."==b.fn.jquery.substr(0,2)&&a[0].dataset?b.extend(!0,{},a[0].dataset,a.data()):a.data();var f=b.extend(!0,{},e);f=d._convertData(f);for(var g in f)b.inArray(g,c)>-1||(b.isPlainObject(this.options[g])?b.extend(this.options[g],f[g]):this.options[g]=f[g]);return this},e.prototype.get=function(a){return this.options[a]},e.prototype.set=function(a,b){this.options[a]=b},e}),b.define("select2/core",["jquery","./options","./utils","./keys"],function(a,b,c,d){var e=function(a,c){null!=a.data("select2")&&a.data("select2").destroy(),this.$element=a,this.id=this._generateId(a),c=c||{},this.options=new b(c,a),e.__super__.constructor.call(this);var d=a.attr("tabindex")||0;a.data("old-tabindex",d),a.attr("tabindex","-1");var f=this.options.get("dataAdapter");this.dataAdapter=new f(a,this.options);var g=this.render();this._placeContainer(g);var h=this.options.get("selectionAdapter");this.selection=new h(a,this.options),this.$selection=this.selection.render(),this.selection.position(this.$selection,g);var i=this.options.get("dropdownAdapter");this.dropdown=new i(a,this.options),this.$dropdown=this.dropdown.render(),this.dropdown.position(this.$dropdown,g);var j=this.options.get("resultsAdapter");this.results=new j(a,this.options,this.dataAdapter),this.$results=this.results.render(),this.results.position(this.$results,this.$dropdown);var k=this;this._bindAdapters(),this._registerDomEvents(),this._registerDataEvents(),this._registerSelectionEvents(),this._registerDropdownEvents(),this._registerResultsEvents(),this._registerEvents(),this.dataAdapter.current(function(a){k.trigger("selection:update",{data:a})}),a.addClass("select2-hidden-accessible"),a.attr("aria-hidden","true"),this._syncAttributes(),a.data("select2",this)};return c.Extend(e,c.Observable),e.prototype._generateId=function(a){var b="";return b=null!=a.attr("id")?a.attr("id"):null!=a.attr("name")?a.attr("name")+"-"+c.generateChars(2):c.generateChars(4),b=b.replace(/(:|\.|\[|\]|,)/g,""),b="select2-"+b},e.prototype._placeContainer=function(a){a.insertAfter(this.$element);var b=this._resolveWidth(this.$element,this.options.get("width"));null!=b&&a.css("width",b)},e.prototype._resolveWidth=function(a,b){var c=/^width:(([-+]?([0-9]*\.)?[0-9]+)(px|em|ex|%|in|cm|mm|pt|pc))/i;if("resolve"==b){var d=this._resolveWidth(a,"style");return null!=d?d:this._resolveWidth(a,"element")}if("element"==b){var e=a.outerWidth(!1);return 0>=e?"auto":e+"px"}if("style"==b){var f=a.attr("style");if("string"!=typeof f)return null;for(var g=f.split(";"),h=0,i=g.length;i>h;h+=1){var j=g[h].replace(/\s/g,""),k=j.match(c);if(null!==k&&k.length>=1)return k[1]}return null}return b},e.prototype._bindAdapters=function(){this.dataAdapter.bind(this,this.$container),this.selection.bind(this,this.$container),this.dropdown.bind(this,this.$container),this.results.bind(this,this.$container)},e.prototype._registerDomEvents=function(){var b=this;this.$element.on("change.select2",function(){b.dataAdapter.current(function(a){b.trigger("selection:update",{data:a})})}),this.$element.on("focus.select2",function(a){b.trigger("focus",a)}),this._syncA=c.bind(this._syncAttributes,this),this._syncS=c.bind(this._syncSubtree,this),this.$element[0].attachEvent&&this.$element[0].attachEvent("onpropertychange",this._syncA);var d=window.MutationObserver||window.WebKitMutationObserver||window.MozMutationObserver;null!=d?(this._observer=new d(function(c){a.each(c,b._syncA),a.each(c,b._syncS)}),this._observer.observe(this.$element[0],{attributes:!0,childList:!0,subtree:!1})):this.$element[0].addEventListener&&(this.$element[0].addEventListener("DOMAttrModified",b._syncA,!1),this.$element[0].addEventListener("DOMNodeInserted",b._syncS,!1),this.$element[0].addEventListener("DOMNodeRemoved",b._syncS,!1))},e.prototype._registerDataEvents=function(){var a=this;this.dataAdapter.on("*",function(b,c){a.trigger(b,c)})},e.prototype._registerSelectionEvents=function(){var b=this,c=["toggle","focus"];this.selection.on("toggle",function(){b.toggleDropdown()}),this.selection.on("focus",function(a){b.focus(a)}),this.selection.on("*",function(d,e){-1===a.inArray(d,c)&&b.trigger(d,e)})},e.prototype._registerDropdownEvents=function(){var a=this;this.dropdown.on("*",function(b,c){a.trigger(b,c)})},e.prototype._registerResultsEvents=function(){var a=this;this.results.on("*",function(b,c){a.trigger(b,c)})},e.prototype._registerEvents=function(){var a=this;this.on("open",function(){a.$container.addClass("select2-container--open")}),this.on("close",function(){a.$container.removeClass("select2-container--open")}),this.on("enable",function(){a.$container.removeClass("select2-container--disabled")}),this.on("disable",function(){a.$container.addClass("select2-container--disabled")}),this.on("blur",function(){a.$container.removeClass("select2-container--focus")}),this.on("query",function(b){a.isOpen()||a.trigger("open",{}),this.dataAdapter.query(b,function(c){a.trigger("results:all",{data:c,query:b})})}),this.on("query:append",function(b){this.dataAdapter.query(b,function(c){a.trigger("results:append",{data:c,query:b})})}),this.on("keypress",function(b){var c=b.which;a.isOpen()?c===d.ESC||c===d.TAB||c===d.UP&&b.altKey?(a.close(),b.preventDefault()):c===d.ENTER?(a.trigger("results:select",{}),b.preventDefault()):c===d.SPACE&&b.ctrlKey?(a.trigger("results:toggle",{}),b.preventDefault()):c===d.UP?(a.trigger("results:previous",{}),b.preventDefault()):c===d.DOWN&&(a.trigger("results:next",{}),b.preventDefault()):(c===d.ENTER||c===d.SPACE||c===d.DOWN&&b.altKey)&&(a.open(),b.preventDefault())})},e.prototype._syncAttributes=function(){this.options.set("disabled",this.$element.prop("disabled")),this.options.get("disabled")?(this.isOpen()&&this.close(),this.trigger("disable",{})):this.trigger("enable",{})},e.prototype._syncSubtree=function(a,b){var c=!1,d=this;if(!a||!a.target||"OPTION"===a.target.nodeName||"OPTGROUP"===a.target.nodeName){if(b)if(b.addedNodes&&b.addedNodes.length>0)for(var e=0;e<b.addedNodes.length;e++){var f=b.addedNodes[e];f.selected&&(c=!0)}else b.removedNodes&&b.removedNodes.length>0&&(c=!0);else c=!0;c&&this.dataAdapter.current(function(a){d.trigger("selection:update",{data:a})})}},e.prototype.trigger=function(a,b){var c=e.__super__.trigger,d={open:"opening",close:"closing",select:"selecting",unselect:"unselecting"};if(void 0===b&&(b={}),a in d){var f=d[a],g={prevented:!1,name:a,args:b};if(c.call(this,f,g),g.prevented)return void(b.prevented=!0)}c.call(this,a,b)},e.prototype.toggleDropdown=function(){this.options.get("disabled")||(this.isOpen()?this.close():this.open())},e.prototype.open=function(){this.isOpen()||this.trigger("query",{})},e.prototype.close=function(){this.isOpen()&&this.trigger("close",{})},e.prototype.isOpen=function(){return this.$container.hasClass("select2-container--open")},e.prototype.hasFocus=function(){return this.$container.hasClass("select2-container--focus")},e.prototype.focus=function(a){this.hasFocus()||(this.$container.addClass("select2-container--focus"),this.trigger("focus",{}))},e.prototype.enable=function(a){this.options.get("debug")&&window.console&&console.warn&&console.warn('Select2: The `select2("enable")` method has been deprecated and will be removed in later Select2 versions. Use $element.prop("disabled") instead.'),(null==a||0===a.length)&&(a=[!0]);var b=!a[0];this.$element.prop("disabled",b)},e.prototype.data=function(){this.options.get("debug")&&arguments.length>0&&window.console&&console.warn&&console.warn('Select2: Data can no longer be set using `select2("data")`. You should consider setting the value instead using `$element.val()`.');var a=[];return this.dataAdapter.current(function(b){a=b}),a},e.prototype.val=function(b){if(this.options.get("debug")&&window.console&&console.warn&&console.warn('Select2: The `select2("val")` method has been deprecated and will be removed in later Select2 versions. Use $element.val() instead.'),null==b||0===b.length)return this.$element.val();var c=b[0];a.isArray(c)&&(c=a.map(c,function(a){return a.toString()})),this.$element.val(c).trigger("change")},e.prototype.destroy=function(){this.$container.remove(),this.$element[0].detachEvent&&this.$element[0].detachEvent("onpropertychange",this._syncA),null!=this._observer?(this._observer.disconnect(),this._observer=null):this.$element[0].removeEventListener&&(this.$element[0].removeEventListener("DOMAttrModified",this._syncA,!1),this.$element[0].removeEventListener("DOMNodeInserted",this._syncS,!1),this.$element[0].removeEventListener("DOMNodeRemoved",this._syncS,!1)),this._syncA=null,this._syncS=null,this.$element.off(".select2"),this.$element.attr("tabindex",this.$element.data("old-tabindex")),this.$element.removeClass("select2-hidden-accessible"),this.$element.attr("aria-hidden","false"),this.$element.removeData("select2"),
3
  this.dataAdapter.destroy(),this.selection.destroy(),this.dropdown.destroy(),this.results.destroy(),this.dataAdapter=null,this.selection=null,this.dropdown=null,this.results=null},e.prototype.render=function(){var b=a('<span class="select2 select2-container"><span class="selection"></span><span class="dropdown-wrapper" aria-hidden="true"></span></span>');return b.attr("dir",this.options.get("dir")),this.$container=b,this.$container.addClass("select2-container--"+this.options.get("theme")),b.data("element",this.$element),b},e}),b.define("select2/compat/utils",["jquery"],function(a){function b(b,c,d){var e,f,g=[];e=a.trim(b.attr("class")),e&&(e=""+e,a(e.split(/\s+/)).each(function(){0===this.indexOf("select2-")&&g.push(this)})),e=a.trim(c.attr("class")),e&&(e=""+e,a(e.split(/\s+/)).each(function(){0!==this.indexOf("select2-")&&(f=d(this),null!=f&&g.push(f))})),b.attr("class",g.join(" "))}return{syncCssClasses:b}}),b.define("select2/compat/containerCss",["jquery","./utils"],function(a,b){function c(a){return null}function d(){}return d.prototype.render=function(d){var e=d.call(this),f=this.options.get("containerCssClass")||"";a.isFunction(f)&&(f=f(this.$element));var g=this.options.get("adaptContainerCssClass");if(g=g||c,-1!==f.indexOf(":all:")){f=f.replace(":all:","");var h=g;g=function(a){var b=h(a);return null!=b?b+" "+a:a}}var i=this.options.get("containerCss")||{};return a.isFunction(i)&&(i=i(this.$element)),b.syncCssClasses(e,this.$element,g),e.css(i),e.addClass(f),e},d}),b.define("select2/compat/dropdownCss",["jquery","./utils"],function(a,b){function c(a){return null}function d(){}return d.prototype.render=function(d){var e=d.call(this),f=this.options.get("dropdownCssClass")||"";a.isFunction(f)&&(f=f(this.$element));var g=this.options.get("adaptDropdownCssClass");if(g=g||c,-1!==f.indexOf(":all:")){f=f.replace(":all:","");var h=g;g=function(a){var b=h(a);return null!=b?b+" "+a:a}}var i=this.options.get("dropdownCss")||{};return a.isFunction(i)&&(i=i(this.$element)),b.syncCssClasses(e,this.$element,g),e.css(i),e.addClass(f),e},d}),b.define("select2/compat/initSelection",["jquery"],function(a){function b(a,b,c){c.get("debug")&&window.console&&console.warn&&console.warn("Select2: The `initSelection` option has been deprecated in favor of a custom data adapter that overrides the `current` method. This method is now called multiple times instead of a single time when the instance is initialized. Support will be removed for the `initSelection` option in future versions of Select2"),this.initSelection=c.get("initSelection"),this._isInitialized=!1,a.call(this,b,c)}return b.prototype.current=function(b,c){var d=this;return this._isInitialized?void b.call(this,c):void this.initSelection.call(null,this.$element,function(b){d._isInitialized=!0,a.isArray(b)||(b=[b]),c(b)})},b}),b.define("select2/compat/inputData",["jquery"],function(a){function b(a,b,c){this._currentData=[],this._valueSeparator=c.get("valueSeparator")||",","hidden"===b.prop("type")&&c.get("debug")&&console&&console.warn&&console.warn("Select2: Using a hidden input with Select2 is no longer supported and may stop working in the future. It is recommended to use a `<select>` element instead."),a.call(this,b,c)}return b.prototype.current=function(b,c){function d(b,c){var e=[];return b.selected||-1!==a.inArray(b.id,c)?(b.selected=!0,e.push(b)):b.selected=!1,b.children&&e.push.apply(e,d(b.children,c)),e}for(var e=[],f=0;f<this._currentData.length;f++){var g=this._currentData[f];e.push.apply(e,d(g,this.$element.val().split(this._valueSeparator)))}c(e)},b.prototype.select=function(b,c){if(this.options.get("multiple")){var d=this.$element.val();d+=this._valueSeparator+c.id,this.$element.val(d),this.$element.trigger("change")}else this.current(function(b){a.map(b,function(a){a.selected=!1})}),this.$element.val(c.id),this.$element.trigger("change")},b.prototype.unselect=function(a,b){var c=this;b.selected=!1,this.current(function(a){for(var d=[],e=0;e<a.length;e++){var f=a[e];b.id!=f.id&&d.push(f.id)}c.$element.val(d.join(c._valueSeparator)),c.$element.trigger("change")})},b.prototype.query=function(a,b,c){for(var d=[],e=0;e<this._currentData.length;e++){var f=this._currentData[e],g=this.matches(b,f);null!==g&&d.push(g)}c({results:d})},b.prototype.addOptions=function(b,c){var d=a.map(c,function(b){return a.data(b[0],"data")});this._currentData.push.apply(this._currentData,d)},b}),b.define("select2/compat/matcher",["jquery"],function(a){function b(b){function c(c,d){var e=a.extend(!0,{},d);if(null==c.term||""===a.trim(c.term))return e;if(d.children){for(var f=d.children.length-1;f>=0;f--){var g=d.children[f],h=b(c.term,g.text,g);h||e.children.splice(f,1)}if(e.children.length>0)return e}return b(c.term,d.text,d)?e:null}return c}return b}),b.define("select2/compat/query",[],function(){function a(a,b,c){c.get("debug")&&window.console&&console.warn&&console.warn("Select2: The `query` option has been deprecated in favor of a custom data adapter that overrides the `query` method. Support will be removed for the `query` option in future versions of Select2."),a.call(this,b,c)}return a.prototype.query=function(a,b,c){b.callback=c;var d=this.options.get("query");d.call(null,b)},a}),b.define("select2/dropdown/attachContainer",[],function(){function a(a,b,c){a.call(this,b,c)}return a.prototype.position=function(a,b,c){var d=c.find(".dropdown-wrapper");d.append(b),b.addClass("select2-dropdown--below"),c.addClass("select2-container--below")},a}),b.define("select2/dropdown/stopPropagation",[],function(){function a(){}return a.prototype.bind=function(a,b,c){a.call(this,b,c);var d=["blur","change","click","dblclick","focus","focusin","focusout","input","keydown","keyup","keypress","mousedown","mouseenter","mouseleave","mousemove","mouseover","mouseup","search","touchend","touchstart"];this.$dropdown.on(d.join(" "),function(a){a.stopPropagation()})},a}),b.define("select2/selection/stopPropagation",[],function(){function a(){}return a.prototype.bind=function(a,b,c){a.call(this,b,c);var d=["blur","change","click","dblclick","focus","focusin","focusout","input","keydown","keyup","keypress","mousedown","mouseenter","mouseleave","mousemove","mouseover","mouseup","search","touchend","touchstart"];this.$selection.on(d.join(" "),function(a){a.stopPropagation()})},a}),function(c){"function"==typeof b.define&&b.define.amd?b.define("jquery-mousewheel",["jquery"],c):"object"==typeof exports?module.exports=c:c(a)}(function(a){function b(b){var g=b||window.event,h=i.call(arguments,1),j=0,l=0,m=0,n=0,o=0,p=0;if(b=a.event.fix(g),b.type="mousewheel","detail"in g&&(m=-1*g.detail),"wheelDelta"in g&&(m=g.wheelDelta),"wheelDeltaY"in g&&(m=g.wheelDeltaY),"wheelDeltaX"in g&&(l=-1*g.wheelDeltaX),"axis"in g&&g.axis===g.HORIZONTAL_AXIS&&(l=-1*m,m=0),j=0===m?l:m,"deltaY"in g&&(m=-1*g.deltaY,j=m),"deltaX"in g&&(l=g.deltaX,0===m&&(j=-1*l)),0!==m||0!==l){if(1===g.deltaMode){var q=a.data(this,"mousewheel-line-height");j*=q,m*=q,l*=q}else if(2===g.deltaMode){var r=a.data(this,"mousewheel-page-height");j*=r,m*=r,l*=r}if(n=Math.max(Math.abs(m),Math.abs(l)),(!f||f>n)&&(f=n,d(g,n)&&(f/=40)),d(g,n)&&(j/=40,l/=40,m/=40),j=Math[j>=1?"floor":"ceil"](j/f),l=Math[l>=1?"floor":"ceil"](l/f),m=Math[m>=1?"floor":"ceil"](m/f),k.settings.normalizeOffset&&this.getBoundingClientRect){var s=this.getBoundingClientRect();o=b.clientX-s.left,p=b.clientY-s.top}return b.deltaX=l,b.deltaY=m,b.deltaFactor=f,b.offsetX=o,b.offsetY=p,b.deltaMode=0,h.unshift(b,j,l,m),e&&clearTimeout(e),e=setTimeout(c,200),(a.event.dispatch||a.event.handle).apply(this,h)}}function c(){f=null}function d(a,b){return k.settings.adjustOldDeltas&&"mousewheel"===a.type&&b%120===0}var e,f,g=["wheel","mousewheel","DOMMouseScroll","MozMousePixelScroll"],h="onwheel"in document||document.documentMode>=9?["wheel"]:["mousewheel","DomMouseScroll","MozMousePixelScroll"],i=Array.prototype.slice;if(a.event.fixHooks)for(var j=g.length;j;)a.event.fixHooks[g[--j]]=a.event.mouseHooks;var k=a.event.special.mousewheel={version:"3.1.12",setup:function(){if(this.addEventListener)for(var c=h.length;c;)this.addEventListener(h[--c],b,!1);else this.onmousewheel=b;a.data(this,"mousewheel-line-height",k.getLineHeight(this)),a.data(this,"mousewheel-page-height",k.getPageHeight(this))},teardown:function(){if(this.removeEventListener)for(var c=h.length;c;)this.removeEventListener(h[--c],b,!1);else this.onmousewheel=null;a.removeData(this,"mousewheel-line-height"),a.removeData(this,"mousewheel-page-height")},getLineHeight:function(b){var c=a(b),d=c["offsetParent"in a.fn?"offsetParent":"parent"]();return d.length||(d=a("body")),parseInt(d.css("fontSize"),10)||parseInt(c.css("fontSize"),10)||16},getPageHeight:function(b){return a(b).height()},settings:{adjustOldDeltas:!0,normalizeOffset:!0}};a.fn.extend({mousewheel:function(a){return a?this.bind("mousewheel",a):this.trigger("mousewheel")},unmousewheel:function(a){return this.unbind("mousewheel",a)}})}),b.define("jquery.select2",["jquery","jquery-mousewheel","./select2/core","./select2/defaults"],function(a,b,c,d){if(null==a.fn.select2){var e=["open","close","destroy"];a.fn.select2=function(b){if(b=b||{},"object"==typeof b)return this.each(function(){var d=a.extend(!0,{},b);new c(a(this),d)}),this;if("string"==typeof b){var d,f=Array.prototype.slice.call(arguments,1);return this.each(function(){var c=a(this).data("select2");null==c&&window.console&&console.error&&console.error("The select2('"+b+"') method was called on an element that is not using Select2."),d=c[b].apply(c,f)}),a.inArray(b,e)>-1?this:d}throw new Error("Invalid arguments for Select2: "+b)}}return null==a.fn.select2.defaults&&(a.fn.select2.defaults=d),c}),{define:b.define,require:b.require}}(),c=b.require("jquery.select2");return a.fn.select2.amd=b,c});
1
+ /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */!function(a){"function"==typeof define&&define.amd?define(["jquery"],a):"object"==typeof module&&module.exports?module.exports=function(b,c){return void 0===c&&(c="undefined"!=typeof window?require("jquery"):require("jquery")(b)),a(c),c}:a(jQuery)}(function(a){var b=function(){if(a&&a.fn&&a.fn.select2&&a.fn.select2.amd)var b=a.fn.select2.amd;var b;return function(){if(!b||!b.requirejs){b?c=b:b={};var a,c,d;!function(b){function e(a,b){return u.call(a,b)}function f(a,b){var c,d,e,f,g,h,i,j,k,l,m,n=b&&b.split("/"),o=s.map,p=o&&o["*"]||{};if(a&&"."===a.charAt(0))if(b){for(a=a.split("/"),g=a.length-1,s.nodeIdCompat&&w.test(a[g])&&(a[g]=a[g].replace(w,"")),a=n.slice(0,n.length-1).concat(a),k=0;k<a.length;k+=1)if(m=a[k],"."===m)a.splice(k,1),k-=1;else if(".."===m){if(1===k&&(".."===a[2]||".."===a[0]))break;k>0&&(a.splice(k-1,2),k-=2)}a=a.join("/")}else 0===a.indexOf("./")&&(a=a.substring(2));if((n||p)&&o){for(c=a.split("/"),k=c.length;k>0;k-=1){if(d=c.slice(0,k).join("/"),n)for(l=n.length;l>0;l-=1)if(e=o[n.slice(0,l).join("/")],e&&(e=e[d])){f=e,h=k;break}if(f)break;!i&&p&&p[d]&&(i=p[d],j=k)}!f&&i&&(f=i,h=j),f&&(c.splice(0,h,f),a=c.join("/"))}return a}function g(a,c){return function(){var d=v.call(arguments,0);return"string"!=typeof d[0]&&1===d.length&&d.push(null),n.apply(b,d.concat([a,c]))}}function h(a){return function(b){return f(b,a)}}function i(a){return function(b){q[a]=b}}function j(a){if(e(r,a)){var c=r[a];delete r[a],t[a]=!0,m.apply(b,c)}if(!e(q,a)&&!e(t,a))throw new Error("No "+a);return q[a]}function k(a){var b,c=a?a.indexOf("!"):-1;return c>-1&&(b=a.substring(0,c),a=a.substring(c+1,a.length)),[b,a]}function l(a){return function(){return s&&s.config&&s.config[a]||{}}}var m,n,o,p,q={},r={},s={},t={},u=Object.prototype.hasOwnProperty,v=[].slice,w=/\.js$/;o=function(a,b){var c,d=k(a),e=d[0];return a=d[1],e&&(e=f(e,b),c=j(e)),e?a=c&&c.normalize?c.normalize(a,h(b)):f(a,b):(a=f(a,b),d=k(a),e=d[0],a=d[1],e&&(c=j(e))),{f:e?e+"!"+a:a,n:a,pr:e,p:c}},p={require:function(a){return g(a)},exports:function(a){var b=q[a];return"undefined"!=typeof b?b:q[a]={}},module:function(a){return{id:a,uri:"",exports:q[a],config:l(a)}}},m=function(a,c,d,f){var h,k,l,m,n,s,u=[],v=typeof d;if(f=f||a,"undefined"===v||"function"===v){for(c=!c.length&&d.length?["require","exports","module"]:c,n=0;n<c.length;n+=1)if(m=o(c[n],f),k=m.f,"require"===k)u[n]=p.require(a);else if("exports"===k)u[n]=p.exports(a),s=!0;else if("module"===k)h=u[n]=p.module(a);else if(e(q,k)||e(r,k)||e(t,k))u[n]=j(k);else{if(!m.p)throw new Error(a+" missing "+k);m.p.load(m.n,g(f,!0),i(k),{}),u[n]=q[k]}l=d?d.apply(q[a],u):void 0,a&&(h&&h.exports!==b&&h.exports!==q[a]?q[a]=h.exports:l===b&&s||(q[a]=l))}else a&&(q[a]=d)},a=c=n=function(a,c,d,e,f){if("string"==typeof a)return p[a]?p[a](c):j(o(a,c).f);if(!a.splice){if(s=a,s.deps&&n(s.deps,s.callback),!c)return;c.splice?(a=c,c=d,d=null):a=b}return c=c||function(){},"function"==typeof d&&(d=e,e=f),e?m(b,a,c,d):setTimeout(function(){m(b,a,c,d)},4),n},n.config=function(a){return n(a)},a._defined=q,d=function(a,b,c){if("string"!=typeof a)throw new Error("See almond README: incorrect module build, no module name");b.splice||(c=b,b=[]),e(q,a)||e(r,a)||(r[a]=[a,b,c])},d.amd={jQuery:!0}}(),b.requirejs=a,b.require=c,b.define=d}}(),b.define("almond",function(){}),b.define("jquery",[],function(){var b=a||$;return null==b&&console&&console.error&&console.error("Select2: An instance of jQuery or a jQuery-compatible library was not found. Make sure that you are including jQuery before Select2 on your web page."),b}),b.define("select2/utils",["jquery"],function(a){function b(a){var b=a.prototype,c=[];for(var d in b){var e=b[d];"function"==typeof e&&"constructor"!==d&&c.push(d)}return c}var c={};c.Extend=function(a,b){function c(){this.constructor=a}var d={}.hasOwnProperty;for(var e in b)d.call(b,e)&&(a[e]=b[e]);return c.prototype=b.prototype,a.prototype=new c,a.__super__=b.prototype,a},c.Decorate=function(a,c){function d(){var b=Array.prototype.unshift,d=c.prototype.constructor.length,e=a.prototype.constructor;d>0&&(b.call(arguments,a.prototype.constructor),e=c.prototype.constructor),e.apply(this,arguments)}function e(){this.constructor=d}var f=b(c),g=b(a);c.displayName=a.displayName,d.prototype=new e;for(var h=0;h<g.length;h++){var i=g[h];d.prototype[i]=a.prototype[i]}for(var j=(function(a){var b=function(){};a in d.prototype&&(b=d.prototype[a]);var e=c.prototype[a];return function(){var a=Array.prototype.unshift;return a.call(arguments,b),e.apply(this,arguments)}}),k=0;k<f.length;k++){var l=f[k];d.prototype[l]=j(l)}return d};var d=function(){this.listeners={}};return d.prototype.on=function(a,b){this.listeners=this.listeners||{},a in this.listeners?this.listeners[a].push(b):this.listeners[a]=[b]},d.prototype.trigger=function(a){var b=Array.prototype.slice,c=b.call(arguments,1);this.listeners=this.listeners||{},null==c&&(c=[]),0===c.length&&c.push({}),c[0]._type=a,a in this.listeners&&this.invoke(this.listeners[a],b.call(arguments,1)),"*"in this.listeners&&this.invoke(this.listeners["*"],arguments)},d.prototype.invoke=function(a,b){for(var c=0,d=a.length;d>c;c++)a[c].apply(this,b)},c.Observable=d,c.generateChars=function(a){for(var b="",c=0;a>c;c++){var d=Math.floor(36*Math.random());b+=d.toString(36)}return b},c.bind=function(a,b){return function(){a.apply(b,arguments)}},c._convertData=function(a){for(var b in a){var c=b.split("-"),d=a;if(1!==c.length){for(var e=0;e<c.length;e++){var f=c[e];f=f.substring(0,1).toLowerCase()+f.substring(1),f in d||(d[f]={}),e==c.length-1&&(d[f]=a[b]),d=d[f]}delete a[b]}}return a},c.hasScroll=function(b,c){var d=a(c),e=c.style.overflowX,f=c.style.overflowY;return e!==f||"hidden"!==f&&"visible"!==f?"scroll"===e||"scroll"===f?!0:d.innerHeight()<c.scrollHeight||d.innerWidth()<c.scrollWidth:!1},c.escapeMarkup=function(a){var b={"\\":"&#92;","&":"&amp;","<":"&lt;",">":"&gt;",'"':"&quot;","'":"&#39;","/":"&#47;"};return"string"!=typeof a?a:String(a).replace(/[&<>"'\/\\]/g,function(a){return b[a]})},c.appendMany=function(b,c){if("1.7"===a.fn.jquery.substr(0,3)){var d=a();a.map(c,function(a){d=d.add(a)}),c=d}b.append(c)},c}),b.define("select2/results",["jquery","./utils"],function(a,b){function c(a,b,d){this.$element=a,this.data=d,this.options=b,c.__super__.constructor.call(this)}return b.Extend(c,b.Observable),c.prototype.render=function(){var b=a('<ul class="select2-results__options" role="tree"></ul>');return this.options.get("multiple")&&b.attr("aria-multiselectable","true"),this.$results=b,b},c.prototype.clear=function(){this.$results.empty()},c.prototype.displayMessage=function(b){var c=this.options.get("escapeMarkup");this.clear(),this.hideLoading();var d=a('<li role="treeitem" aria-live="assertive" class="select2-results__option"></li>'),e=this.options.get("translations").get(b.message);d.append(c(e(b.args))),d[0].className+=" select2-results__message",this.$results.append(d)},c.prototype.hideMessages=function(){this.$results.find(".select2-results__message").remove()},c.prototype.append=function(a){this.hideLoading();var b=[];if(null==a.results||0===a.results.length)return void(0===this.$results.children().length&&this.trigger("results:message",{message:"noResults"}));a.results=this.sort(a.results);for(var c=0;c<a.results.length;c++){var d=a.results[c],e=this.option(d);b.push(e)}this.$results.append(b)},c.prototype.position=function(a,b){var c=b.find(".select2-results");c.append(a)},c.prototype.sort=function(a){var b=this.options.get("sorter");return b(a)},c.prototype.highlightFirstItem=function(){var a=this.$results.find(".select2-results__option[aria-selected]"),b=a.filter("[aria-selected=true]");b.length>0?b.first().trigger("mouseenter"):a.first().trigger("mouseenter"),this.ensureHighlightVisible()},c.prototype.setClasses=function(){var b=this;this.data.current(function(c){var d=a.map(c,function(a){return a.id.toString()}),e=b.$results.find(".select2-results__option[aria-selected]");e.each(function(){var b=a(this),c=a.data(this,"data"),e=""+c.id;null!=c.element&&c.element.selected||null==c.element&&a.inArray(e,d)>-1?b.attr("aria-selected","true"):b.attr("aria-selected","false")})})},c.prototype.showLoading=function(a){this.hideLoading();var b=this.options.get("translations").get("searching"),c={disabled:!0,loading:!0,text:b(a)},d=this.option(c);d.className+=" loading-results",this.$results.prepend(d)},c.prototype.hideLoading=function(){this.$results.find(".loading-results").remove()},c.prototype.option=function(b){var c=document.createElement("li");c.className="select2-results__option";var d={role:"treeitem","aria-selected":"false"};b.disabled&&(delete d["aria-selected"],d["aria-disabled"]="true"),null==b.id&&delete d["aria-selected"],null!=b._resultId&&(c.id=b._resultId),b.title&&(c.title=b.title),b.children&&(d.role="group",d["aria-label"]=b.text,delete d["aria-selected"]);for(var e in d){var f=d[e];c.setAttribute(e,f)}if(b.children){var g=a(c),h=document.createElement("strong");h.className="select2-results__group";a(h);this.template(b,h);for(var i=[],j=0;j<b.children.length;j++){var k=b.children[j],l=this.option(k);i.push(l)}var m=a("<ul></ul>",{"class":"select2-results__options select2-results__options--nested"});m.append(i),g.append(h),g.append(m)}else this.template(b,c);return a.data(c,"data",b),c},c.prototype.bind=function(b,c){var d=this,e=b.id+"-results";this.$results.attr("id",e),b.on("results:all",function(a){d.clear(),d.append(a.data),b.isOpen()&&(d.setClasses(),d.highlightFirstItem())}),b.on("results:append",function(a){d.append(a.data),b.isOpen()&&d.setClasses()}),b.on("query",function(a){d.hideMessages(),d.showLoading(a)}),b.on("select",function(){b.isOpen()&&(d.setClasses(),d.highlightFirstItem())}),b.on("unselect",function(){b.isOpen()&&(d.setClasses(),d.highlightFirstItem())}),b.on("open",function(){d.$results.attr("aria-expanded","true"),d.$results.attr("aria-hidden","false"),d.setClasses(),d.ensureHighlightVisible()}),b.on("close",function(){d.$results.attr("aria-expanded","false"),d.$results.attr("aria-hidden","true"),d.$results.removeAttr("aria-activedescendant")}),b.on("results:toggle",function(){var a=d.getHighlightedResults();0!==a.length&&a.trigger("mouseup")}),b.on("results:select",function(){var a=d.getHighlightedResults();if(0!==a.length){var b=a.data("data");"true"==a.attr("aria-selected")?d.trigger("close",{}):d.trigger("select",{data:b})}}),b.on("results:previous",function(){var a=d.getHighlightedResults(),b=d.$results.find("[aria-selected]"),c=b.index(a);if(0!==c){var e=c-1;0===a.length&&(e=0);var f=b.eq(e);f.trigger("mouseenter");var g=d.$results.offset().top,h=f.offset().top,i=d.$results.scrollTop()+(h-g);0===e?d.$results.scrollTop(0):0>h-g&&d.$results.scrollTop(i)}}),b.on("results:next",function(){var a=d.getHighlightedResults(),b=d.$results.find("[aria-selected]"),c=b.index(a),e=c+1;if(!(e>=b.length)){var f=b.eq(e);f.trigger("mouseenter");var g=d.$results.offset().top+d.$results.outerHeight(!1),h=f.offset().top+f.outerHeight(!1),i=d.$results.scrollTop()+h-g;0===e?d.$results.scrollTop(0):h>g&&d.$results.scrollTop(i)}}),b.on("results:focus",function(a){a.element.addClass("select2-results__option--highlighted")}),b.on("results:message",function(a){d.displayMessage(a)}),a.fn.mousewheel&&this.$results.on("mousewheel",function(a){var b=d.$results.scrollTop(),c=d.$results.get(0).scrollHeight-b+a.deltaY,e=a.deltaY>0&&b-a.deltaY<=0,f=a.deltaY<0&&c<=d.$results.height();e?(d.$results.scrollTop(0),a.preventDefault(),a.stopPropagation()):f&&(d.$results.scrollTop(d.$results.get(0).scrollHeight-d.$results.height()),a.preventDefault(),a.stopPropagation())}),this.$results.on("mouseup",".select2-results__option[aria-selected]",function(b){var c=a(this),e=c.data("data");return"true"===c.attr("aria-selected")?void(d.options.get("multiple")?d.trigger("unselect",{originalEvent:b,data:e}):d.trigger("close",{})):void d.trigger("select",{originalEvent:b,data:e})}),this.$results.on("mouseenter",".select2-results__option[aria-selected]",function(b){var c=a(this).data("data");d.getHighlightedResults().removeClass("select2-results__option--highlighted"),d.trigger("results:focus",{data:c,element:a(this)})})},c.prototype.getHighlightedResults=function(){var a=this.$results.find(".select2-results__option--highlighted");return a},c.prototype.destroy=function(){this.$results.remove()},c.prototype.ensureHighlightVisible=function(){var a=this.getHighlightedResults();if(0!==a.length){var b=this.$results.find("[aria-selected]"),c=b.index(a),d=this.$results.offset().top,e=a.offset().top,f=this.$results.scrollTop()+(e-d),g=e-d;f-=2*a.outerHeight(!1),2>=c?this.$results.scrollTop(0):(g>this.$results.outerHeight()||0>g)&&this.$results.scrollTop(f)}},c.prototype.template=function(b,c){var d=this.options.get("templateResult"),e=this.options.get("escapeMarkup"),f=d(b,c);null==f?c.style.display="none":"string"==typeof f?c.innerHTML=e(f):a(c).append(f)},c}),b.define("select2/keys",[],function(){var a={BACKSPACE:8,TAB:9,ENTER:13,SHIFT:16,CTRL:17,ALT:18,ESC:27,SPACE:32,PAGE_UP:33,PAGE_DOWN:34,END:35,HOME:36,LEFT:37,UP:38,RIGHT:39,DOWN:40,DELETE:46};return a}),b.define("select2/selection/base",["jquery","../utils","../keys"],function(a,b,c){function d(a,b){this.$element=a,this.options=b,d.__super__.constructor.call(this)}return b.Extend(d,b.Observable),d.prototype.render=function(){var b=a('<span class="select2-selection" role="combobox" aria-haspopup="true" aria-expanded="false"></span>');return this._tabindex=0,null!=this.$element.data("old-tabindex")?this._tabindex=this.$element.data("old-tabindex"):null!=this.$element.attr("tabindex")&&(this._tabindex=this.$element.attr("tabindex")),b.attr("title",this.$element.attr("title")),b.attr("tabindex",this._tabindex),this.$selection=b,b},d.prototype.bind=function(a,b){var d=this,e=(a.id+"-container",a.id+"-results");this.container=a,this.$selection.on("focus",function(a){d.trigger("focus",a)}),this.$selection.on("blur",function(a){d._handleBlur(a)}),this.$selection.on("keydown",function(a){d.trigger("keypress",a),a.which===c.SPACE&&a.preventDefault()}),a.on("results:focus",function(a){d.$selection.attr("aria-activedescendant",a.data._resultId)}),a.on("selection:update",function(a){d.update(a.data)}),a.on("open",function(){d.$selection.attr("aria-expanded","true"),d.$selection.attr("aria-owns",e),d._attachCloseHandler(a)}),a.on("close",function(){d.$selection.attr("aria-expanded","false"),d.$selection.removeAttr("aria-activedescendant"),d.$selection.removeAttr("aria-owns"),d.$selection.focus(),d._detachCloseHandler(a)}),a.on("enable",function(){d.$selection.attr("tabindex",d._tabindex)}),a.on("disable",function(){d.$selection.attr("tabindex","-1")})},d.prototype._handleBlur=function(b){var c=this;window.setTimeout(function(){document.activeElement==c.$selection[0]||a.contains(c.$selection[0],document.activeElement)||c.trigger("blur",b)},1)},d.prototype._attachCloseHandler=function(b){a(document.body).on("mousedown.select2."+b.id,function(b){var c=a(b.target),d=c.closest(".select2"),e=a(".select2.select2-container--open");e.each(function(){var b=a(this);if(this!=d[0]){var c=b.data("element");c.select2("close")}})})},d.prototype._detachCloseHandler=function(b){a(document.body).off("mousedown.select2."+b.id)},d.prototype.position=function(a,b){var c=b.find(".selection");c.append(a)},d.prototype.destroy=function(){this._detachCloseHandler(this.container)},d.prototype.update=function(a){throw new Error("The `update` method must be defined in child classes.")},d}),b.define("select2/selection/single",["jquery","./base","../utils","../keys"],function(a,b,c,d){function e(){e.__super__.constructor.apply(this,arguments)}return c.Extend(e,b),e.prototype.render=function(){var a=e.__super__.render.call(this);return a.addClass("select2-selection--single"),a.html('<span class="select2-selection__rendered"></span><span class="select2-selection__arrow" role="presentation"><b role="presentation"></b></span>'),a},e.prototype.bind=function(a,b){var c=this;e.__super__.bind.apply(this,arguments);var d=a.id+"-container";this.$selection.find(".select2-selection__rendered").attr("id",d),this.$selection.attr("aria-labelledby",d),this.$selection.on("mousedown",function(a){1===a.which&&c.trigger("toggle",{originalEvent:a})}),this.$selection.on("focus",function(a){}),this.$selection.on("blur",function(a){}),a.on("focus",function(b){a.isOpen()||c.$selection.focus()}),a.on("selection:update",function(a){c.update(a.data)})},e.prototype.clear=function(){this.$selection.find(".select2-selection__rendered").empty()},e.prototype.display=function(a,b){var c=this.options.get("templateSelection"),d=this.options.get("escapeMarkup");return d(c(a,b))},e.prototype.selectionContainer=function(){return a("<span></span>")},e.prototype.update=function(a){if(0===a.length)return void this.clear();var b=a[0],c=this.$selection.find(".select2-selection__rendered"),d=this.display(b,c);c.empty().append(d),c.prop("title",b.title||b.text)},e}),b.define("select2/selection/multiple",["jquery","./base","../utils"],function(a,b,c){function d(a,b){d.__super__.constructor.apply(this,arguments)}return c.Extend(d,b),d.prototype.render=function(){var a=d.__super__.render.call(this);return a.addClass("select2-selection--multiple"),a.html('<ul class="select2-selection__rendered"></ul>'),a},d.prototype.bind=function(b,c){var e=this;d.__super__.bind.apply(this,arguments),this.$selection.on("click",function(a){e.trigger("toggle",{originalEvent:a})}),this.$selection.on("click",".select2-selection__choice__remove",function(b){if(!e.options.get("disabled")){var c=a(this),d=c.parent(),f=d.data("data");e.trigger("unselect",{originalEvent:b,data:f})}})},d.prototype.clear=function(){this.$selection.find(".select2-selection__rendered").empty()},d.prototype.display=function(a,b){var c=this.options.get("templateSelection"),d=this.options.get("escapeMarkup");return d(c(a,b))},d.prototype.selectionContainer=function(){var b=a('<li class="select2-selection__choice"><span class="select2-selection__choice__remove" role="presentation">&times;</span></li>');return b},d.prototype.update=function(a){if(this.clear(),0!==a.length){for(var b=[],d=0;d<a.length;d++){var e=a[d],f=this.selectionContainer(),g=this.display(e,f);f.append(g),f.prop("title",e.title||e.text),f.data("data",e),b.push(f)}var h=this.$selection.find(".select2-selection__rendered");c.appendMany(h,b)}},d}),b.define("select2/selection/placeholder",["../utils"],function(a){function b(a,b,c){this.placeholder=this.normalizePlaceholder(c.get("placeholder")),a.call(this,b,c)}return b.prototype.normalizePlaceholder=function(a,b){return"string"==typeof b&&(b={id:"",text:b}),b},b.prototype.createPlaceholder=function(a,b){var c=this.selectionContainer();return c.html(this.display(b)),c.addClass("select2-selection__placeholder").removeClass("select2-selection__choice"),c},b.prototype.update=function(a,b){var c=1==b.length&&b[0].id!=this.placeholder.id,d=b.length>1;if(d||c)return a.call(this,b);this.clear();var e=this.createPlaceholder(this.placeholder);this.$selection.find(".select2-selection__rendered").append(e)},b}),b.define("select2/selection/allowClear",["jquery","../keys"],function(a,b){function c(){}return c.prototype.bind=function(a,b,c){var d=this;a.call(this,b,c),null==this.placeholder&&this.options.get("debug")&&window.console&&console.error&&console.error("Select2: The `allowClear` option should be used in combination with the `placeholder` option."),this.$selection.on("mousedown",".select2-selection__clear",function(a){d._handleClear(a)}),b.on("keypress",function(a){d._handleKeyboardClear(a,b)})},c.prototype._handleClear=function(a,b){if(!this.options.get("disabled")){var c=this.$selection.find(".select2-selection__clear");if(0!==c.length){b.stopPropagation();for(var d=c.data("data"),e=0;e<d.length;e++){var f={data:d[e]};if(this.trigger("unselect",f),f.prevented)return}this.$element.val(this.placeholder.id).trigger("change"),this.trigger("toggle",{})}}},c.prototype._handleKeyboardClear=function(a,c,d){d.isOpen()||(c.which==b.DELETE||c.which==b.BACKSPACE)&&this._handleClear(c)},c.prototype.update=function(b,c){if(b.call(this,c),!(this.$selection.find(".select2-selection__placeholder").length>0||0===c.length)){var d=a('<span class="select2-selection__clear">&times;</span>');d.data("data",c),this.$selection.find(".select2-selection__rendered").prepend(d)}},c}),b.define("select2/selection/search",["jquery","../utils","../keys"],function(a,b,c){function d(a,b,c){a.call(this,b,c)}return d.prototype.render=function(b){var c=a('<li class="select2-search select2-search--inline"><input class="select2-search__field" type="search" tabindex="-1" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false" role="textbox" aria-autocomplete="list" /></li>');this.$searchContainer=c,this.$search=c.find("input");var d=b.call(this);return this._transferTabIndex(),d},d.prototype.bind=function(a,b,d){var e=this;a.call(this,b,d),b.on("open",function(){e.$search.trigger("focus")}),b.on("close",function(){e.$search.val(""),e.$search.removeAttr("aria-activedescendant"),e.$search.trigger("focus")}),b.on("enable",function(){e.$search.prop("disabled",!1),e._transferTabIndex()}),b.on("disable",function(){e.$search.prop("disabled",!0)}),b.on("focus",function(a){e.$search.trigger("focus")}),b.on("results:focus",function(a){e.$search.attr("aria-activedescendant",a.id)}),this.$selection.on("focusin",".select2-search--inline",function(a){e.trigger("focus",a)}),this.$selection.on("focusout",".select2-search--inline",function(a){e._handleBlur(a)}),this.$selection.on("keydown",".select2-search--inline",function(a){a.stopPropagation(),e.trigger("keypress",a),e._keyUpPrevented=a.isDefaultPrevented();var b=a.which;if(b===c.BACKSPACE&&""===e.$search.val()){var d=e.$searchContainer.prev(".select2-selection__choice");if(d.length>0){var f=d.data("data");e.searchRemoveChoice(f),a.preventDefault()}}});var f=document.documentMode,g=f&&11>=f;this.$selection.on("input.searchcheck",".select2-search--inline",function(a){return g?void e.$selection.off("input.search input.searchcheck"):void e.$selection.off("keyup.search")}),this.$selection.on("keyup.search input.search",".select2-search--inline",function(a){if(g&&"input"===a.type)return void e.$selection.off("input.search input.searchcheck");var b=a.which;b!=c.SHIFT&&b!=c.CTRL&&b!=c.ALT&&b!=c.TAB&&e.handleSearch(a)})},d.prototype._transferTabIndex=function(a){this.$search.attr("tabindex",this.$selection.attr("tabindex")),this.$selection.attr("tabindex","-1")},d.prototype.createPlaceholder=function(a,b){this.$search.attr("placeholder",b.text)},d.prototype.update=function(a,b){var c=this.$search[0]==document.activeElement;this.$search.attr("placeholder",""),a.call(this,b),this.$selection.find(".select2-selection__rendered").append(this.$searchContainer),this.resizeSearch(),c&&this.$search.focus()},d.prototype.handleSearch=function(){if(this.resizeSearch(),!this._keyUpPrevented){var a=this.$search.val();this.trigger("query",{term:a})}this._keyUpPrevented=!1},d.prototype.searchRemoveChoice=function(a,b){this.trigger("unselect",{data:b}),this.$search.val(b.text),this.handleSearch()},d.prototype.resizeSearch=function(){this.$search.css("width","25px");var a="";if(""!==this.$search.attr("placeholder"))a=this.$selection.find(".select2-selection__rendered").innerWidth();else{var b=this.$search.val().length+1;a=.75*b+"em"}this.$search.css("width",a)},d}),b.define("select2/selection/eventRelay",["jquery"],function(a){function b(){}return b.prototype.bind=function(b,c,d){var e=this,f=["open","opening","close","closing","select","selecting","unselect","unselecting"],g=["opening","closing","selecting","unselecting"];b.call(this,c,d),c.on("*",function(b,c){if(-1!==a.inArray(b,f)){c=c||{};var d=a.Event("select2:"+b,{params:c});e.$element.trigger(d),-1!==a.inArray(b,g)&&(c.prevented=d.isDefaultPrevented())}})},b}),b.define("select2/translation",["jquery","require"],function(a,b){function c(a){this.dict=a||{}}return c.prototype.all=function(){return this.dict},c.prototype.get=function(a){return this.dict[a]},c.prototype.extend=function(b){this.dict=a.extend({},b.all(),this.dict)},c._cache={},c.loadPath=function(a){if(!(a in c._cache)){var d=b(a);c._cache[a]=d}return new c(c._cache[a])},c}),b.define("select2/diacritics",[],function(){var a={"â’¶":"A","A":"A","À":"A","Á":"A","Â":"A","Ầ":"A","Ấ":"A","Ẫ":"A","Ẩ":"A","Ã":"A","Ä€":"A","Ä‚":"A","Ằ":"A","Ắ":"A","Ẵ":"A","Ẳ":"A","Ȧ":"A","Ç ":"A","Ä":"A","Çž":"A","Ả":"A","Ã…":"A","Ǻ":"A","Ǎ":"A","È€":"A","È‚":"A","Ạ":"A","Ậ":"A","Ặ":"A","Ḁ":"A","Ä„":"A","Ⱥ":"A","Ɐ":"A","Ꜳ":"AA","Æ":"AE","Ǽ":"AE","Ç¢":"AE","Ꜵ":"AO","Ꜷ":"AU","Ꜹ":"AV","Ꜻ":"AV","Ꜽ":"AY","â’·":"B","ï¼¢":"B","Ḃ":"B","Ḅ":"B","Ḇ":"B","Ƀ":"B","Æ‚":"B","Ɓ":"B","â’¸":"C","ï¼£":"C","Ć":"C","Ĉ":"C","ÄŠ":"C","ÄŒ":"C","Ç":"C","Ḉ":"C","Ƈ":"C","È»":"C","Ꜿ":"C","â’¹":"D","D":"D","Ḋ":"D","ÄŽ":"D","Ḍ":"D","Ḑ":"D","Ḓ":"D","Ḏ":"D","Đ":"D","Æ‹":"D","ÆŠ":"D","Ɖ":"D","Ꝺ":"D","DZ":"DZ","Ç„":"DZ","Dz":"Dz","Ç…":"Dz","â’º":"E","ï¼¥":"E","È":"E","É":"E","Ê":"E","Ề":"E","Ế":"E","Ễ":"E","Ể":"E","Ẽ":"E","Ä’":"E","Ḕ":"E","Ḗ":"E","Ä”":"E","Ä–":"E","Ë":"E","Ẻ":"E","Äš":"E","È„":"E","Ȇ":"E","Ẹ":"E","Ệ":"E","Ȩ":"E","Ḝ":"E","Ę":"E","Ḙ":"E","Ḛ":"E","Ɛ":"E","ÆŽ":"E","â’»":"F","F":"F","Ḟ":"F","Æ‘":"F","Ꝼ":"F","â’¼":"G","G":"G","Ç´":"G","Äœ":"G","Ḡ":"G","Äž":"G","Ä ":"G","Ǧ":"G","Ä¢":"G","Ǥ":"G","Æ“":"G","êž ":"G","Ᵹ":"G","Ꝿ":"G","â’½":"H","H":"H","Ĥ":"H","Ḣ":"H","Ḧ":"H","Èž":"H","Ḥ":"H","Ḩ":"H","Ḫ":"H","Ħ":"H","Ⱨ":"H","â±µ":"H","Ɥ":"H","â’¾":"I","I":"I","ÃŒ":"I","Í":"I","ÃŽ":"I","Ĩ":"I","Ī":"I","Ĭ":"I","Ä°":"I","Ï":"I","Ḯ":"I","Ỉ":"I","Ǐ":"I","Ȉ":"I","ÈŠ":"I","Ị":"I","Ä®":"I","Ḭ":"I","Æ—":"I","â’¿":"J","J":"J","Ä´":"J","Ɉ":"J","â“€":"K","K":"K","Ḱ":"K","Ǩ":"K","Ḳ":"K","Ķ":"K","Ḵ":"K","Ƙ":"K","Ⱪ":"K","Ꝁ":"K","Ꝃ":"K","Ꝅ":"K","Ꞣ":"K","Ⓛ":"L","L":"L","Ä¿":"L","Ĺ":"L","Ľ":"L","Ḷ":"L","Ḹ":"L","Ä»":"L","Ḽ":"L","Ḻ":"L","Ł":"L","Ƚ":"L","â±¢":"L","â± ":"L","Ꝉ":"L","Ꝇ":"L","Ꞁ":"L","LJ":"LJ","Lj":"Lj","â“‚":"M","ï¼­":"M","Ḿ":"M","á¹€":"M","Ṃ":"M","â±®":"M","Æœ":"M","Ⓝ":"N","ï¼®":"N","Ǹ":"N","Ń":"N","Ñ":"N","Ṅ":"N","Ň":"N","Ṇ":"N","Å…":"N","Ṋ":"N","Ṉ":"N","È ":"N","Ɲ":"N","Ꞑ":"N","Ꞥ":"N","ÇŠ":"NJ","Ç‹":"Nj","â“„":"O","O":"O","Ã’":"O","Ó":"O","Ô":"O","á»’":"O","Ố":"O","á»–":"O","á»”":"O","Õ":"O","Ṍ":"O","Ȭ":"O","Ṏ":"O","ÅŒ":"O","Ṑ":"O","á¹’":"O","ÅŽ":"O","È®":"O","È°":"O","Ö":"O","Ȫ":"O","Ỏ":"O","Ő":"O","Ç‘":"O","ÈŒ":"O","ÈŽ":"O","Æ ":"O","Ờ":"O","Ớ":"O","á» ":"O","Ở":"O","Ợ":"O","Ọ":"O","Ộ":"O","Ǫ":"O","Ǭ":"O","Ø":"O","Ǿ":"O","Ɔ":"O","ÆŸ":"O","Ꝋ":"O","Ꝍ":"O","Æ¢":"OI","Ꝏ":"OO","È¢":"OU","â“…":"P","ï¼°":"P","á¹”":"P","á¹–":"P","Ƥ":"P","â±£":"P","Ꝑ":"P","Ꝓ":"P","Ꝕ":"P","Ⓠ":"Q","ï¼±":"Q","Ꝗ":"Q","Ꝙ":"Q","ÉŠ":"Q","Ⓡ":"R","ï¼²":"R","Å”":"R","Ṙ":"R","Ř":"R","Ȑ":"R","È’":"R","Ṛ":"R","Ṝ":"R","Å–":"R","Ṟ":"R","ÉŒ":"R","Ɽ":"R","Ꝛ":"R","Ꞧ":"R","êž‚":"R","Ⓢ":"S","ï¼³":"S","ẞ":"S","Åš":"S","Ṥ":"S","Åœ":"S","á¹ ":"S","Å ":"S","Ṧ":"S","á¹¢":"S","Ṩ":"S","Ș":"S","Åž":"S","â±¾":"S","Ꞩ":"S","êž„":"S","Ⓣ":"T","ï¼´":"T","Ṫ":"T","Ť":"T","Ṭ":"T","Èš":"T","Å¢":"T","á¹°":"T","á¹®":"T","Ŧ":"T","Ƭ":"T","Æ®":"T","Ⱦ":"T","Ꞇ":"T","Ꜩ":"TZ","â“Š":"U","ï¼µ":"U","Ù":"U","Ú":"U","Û":"U","Ũ":"U","Ṹ":"U","Ū":"U","Ṻ":"U","Ŭ":"U","Ãœ":"U","Ç›":"U","Ç—":"U","Ç•":"U","Ç™":"U","Ủ":"U","Å®":"U","Å°":"U","Ç“":"U","È”":"U","È–":"U","Ư":"U","Ừ":"U","Ứ":"U","á»®":"U","Ử":"U","á»°":"U","Ụ":"U","á¹²":"U","Ų":"U","Ṷ":"U","á¹´":"U","É„":"U","â“‹":"V","V":"V","á¹¼":"V","á¹¾":"V","Ʋ":"V","Ꝟ":"V","É…":"V","ê ":"VY","â“Œ":"W","ï¼·":"W","Ẁ":"W","Ẃ":"W","Å´":"W","Ẇ":"W","Ẅ":"W","Ẉ":"W","â±²":"W","Ⓧ":"X","X":"X","Ẋ":"X","Ẍ":"X","â“Ž":"Y","ï¼¹":"Y","Ỳ":"Y","Ý":"Y","Ŷ":"Y","Ỹ":"Y","Ȳ":"Y","Ẏ":"Y","Ÿ":"Y","Ỷ":"Y","á»´":"Y","Ƴ":"Y","ÉŽ":"Y","Ỿ":"Y","Ⓩ":"Z","Z":"Z","Ź":"Z","Ẑ":"Z","Å»":"Z","Ž":"Z","Ẓ":"Z","Ẕ":"Z","Ƶ":"Z","Ȥ":"Z","Ɀ":"Z","Ⱬ":"Z","Ꝣ":"Z","ⓐ":"a","a":"a","ẚ":"a","à ":"a","á":"a","â":"a","ầ":"a","ấ":"a","ẫ":"a","ẩ":"a","ã":"a","ā":"a","ă":"a","ằ":"a","ắ":"a","ẵ":"a","ẳ":"a","ȧ":"a","Ç¡":"a","ä":"a","ÇŸ":"a","ả":"a","Ã¥":"a","Ç»":"a","ÇŽ":"a","ȁ":"a","ȃ":"a","ạ":"a","ậ":"a","ặ":"a","ḁ":"a","Ä…":"a","â±¥":"a","ɐ":"a","ꜳ":"aa","æ":"ae","ǽ":"ae","Ç£":"ae","ꜵ":"ao","ꜷ":"au","ꜹ":"av","ꜻ":"av","ꜽ":"ay","â“‘":"b","b":"b","ḃ":"b","ḅ":"b","ḇ":"b","Æ€":"b","ƃ":"b","É“":"b","â“’":"c","c":"c","ć":"c","ĉ":"c","Ä‹":"c","č":"c","ç":"c","ḉ":"c","ƈ":"c","ȼ":"c","ꜿ":"c","ↄ":"c","â““":"d","d":"d","ḋ":"d","ď":"d","ḍ":"d","ḑ":"d","ḓ":"d","ḏ":"d","Ä‘":"d","ÆŒ":"d","É–":"d","É—":"d","ꝺ":"d","dz":"dz","dž":"dz","â“”":"e","ï½…":"e","è":"e","é":"e","ê":"e","ề":"e","ế":"e","á»…":"e","ể":"e","ẽ":"e","Ä“":"e","ḕ":"e","ḗ":"e","Ä•":"e","Ä—":"e","ë":"e","ẻ":"e","Ä›":"e","È…":"e","ȇ":"e","ẹ":"e","ệ":"e","È©":"e","ḝ":"e","Ä™":"e","ḙ":"e","ḛ":"e","ɇ":"e","É›":"e","ǝ":"e","â“•":"f","f":"f","ḟ":"f","Æ’":"f","ꝼ":"f","â“–":"g","g":"g","ǵ":"g","ĝ":"g","ḡ":"g","ÄŸ":"g","Ä¡":"g","ǧ":"g","Ä£":"g","Ç¥":"g","É ":"g","êž¡":"g","áµ¹":"g","ꝿ":"g","â“—":"h","h":"h","Ä¥":"h","ḣ":"h","ḧ":"h","ÈŸ":"h","ḥ":"h","ḩ":"h","ḫ":"h","ẖ":"h","ħ":"h","ⱨ":"h","ⱶ":"h","É¥":"h","Æ•":"hv","ⓘ":"i","i":"i","ì":"i","í":"i","î":"i","Ä©":"i","Ä«":"i","Ä­":"i","ï":"i","ḯ":"i","ỉ":"i","ǐ":"i","ȉ":"i","È‹":"i","ị":"i","į":"i","ḭ":"i","ɨ":"i","ı":"i","â“™":"j","j":"j","ĵ":"j","Ç°":"j","ɉ":"j","â“š":"k","k":"k","ḱ":"k","Ç©":"k","ḳ":"k","Ä·":"k","ḵ":"k","Æ™":"k","ⱪ":"k","ꝁ":"k","ꝃ":"k","ꝅ":"k","ꞣ":"k","â“›":"l","l":"l","Å€":"l","ĺ":"l","ľ":"l","ḷ":"l","ḹ":"l","ļ":"l","ḽ":"l","ḻ":"l","Å¿":"l","Å‚":"l","Æš":"l","É«":"l","ⱡ":"l","ꝉ":"l","ꞁ":"l","ꝇ":"l","lj":"lj","â“œ":"m","m":"m","ḿ":"m","ṁ":"m","ṃ":"m","ɱ":"m","ɯ":"m","ⓝ":"n","n":"n","ǹ":"n","Å„":"n","ñ":"n","á¹…":"n","ň":"n","ṇ":"n","ņ":"n","ṋ":"n","ṉ":"n","Æž":"n","ɲ":"n","ʼn":"n","êž‘":"n","ꞥ":"n","ÇŒ":"nj","â“ž":"o","o":"o","ò":"o","ó":"o","ô":"o","ồ":"o","ố":"o","á»—":"o","ổ":"o","õ":"o","ṍ":"o","È­":"o","ṏ":"o","ō":"o","ṑ":"o","ṓ":"o","ŏ":"o","ȯ":"o","ȱ":"o","ö":"o","È«":"o","ỏ":"o","Å‘":"o","Ç’":"o","ȍ":"o","ȏ":"o","Æ¡":"o","ờ":"o","á»›":"o","ỡ":"o","ở":"o","ợ":"o","ọ":"o","á»™":"o","Ç«":"o","Ç­":"o","ø":"o","Ç¿":"o","É”":"o","ꝋ":"o","ꝍ":"o","ɵ":"o","Æ£":"oi","È£":"ou","ꝏ":"oo","â“Ÿ":"p","p":"p","ṕ":"p","á¹—":"p","Æ¥":"p","áµ½":"p","ꝑ":"p","ꝓ":"p","ꝕ":"p","â“ ":"q","q":"q","É‹":"q","ꝗ":"q","ꝙ":"q","â“¡":"r","ï½’":"r","Å•":"r","á¹™":"r","Å™":"r","È‘":"r","È“":"r","á¹›":"r","ṝ":"r","Å—":"r","ṟ":"r","ɍ":"r","ɽ":"r","ꝛ":"r","ꞧ":"r","ꞃ":"r","â“¢":"s","s":"s","ß":"s","Å›":"s","á¹¥":"s","ŝ":"s","ṡ":"s","Å¡":"s","ṧ":"s","á¹£":"s","ṩ":"s","È™":"s","ÅŸ":"s","È¿":"s","êž©":"s","êž…":"s","ẛ":"s","â“£":"t","ï½”":"t","ṫ":"t","ẗ":"t","Å¥":"t","á¹­":"t","È›":"t","Å£":"t","á¹±":"t","ṯ":"t","ŧ":"t","Æ­":"t","ʈ":"t","ⱦ":"t","ꞇ":"t","ꜩ":"tz","ⓤ":"u","u":"u","ù":"u","ú":"u","û":"u","Å©":"u","á¹¹":"u","Å«":"u","á¹»":"u","Å­":"u","ü":"u","Çœ":"u","ǘ":"u","Ç–":"u","Çš":"u","ủ":"u","ů":"u","ű":"u","Ç”":"u","È•":"u","È—":"u","Æ°":"u","ừ":"u","ứ":"u","ữ":"u","á»­":"u","á»±":"u","ụ":"u","á¹³":"u","ų":"u","á¹·":"u","á¹µ":"u","ʉ":"u","â“¥":"v","ï½–":"v","á¹½":"v","ṿ":"v","Ê‹":"v","ꝟ":"v","ÊŒ":"v","ꝡ":"vy","ⓦ":"w","ï½—":"w","ẁ":"w","ẃ":"w","ŵ":"w","ẇ":"w","ẅ":"w","ẘ":"w","ẉ":"w","â±³":"w","ⓧ":"x","x":"x","ẋ":"x","ẍ":"x","ⓨ":"y","ï½™":"y","ỳ":"y","ý":"y","Å·":"y","ỹ":"y","ȳ":"y","ẏ":"y","ÿ":"y","á»·":"y","ẙ":"y","ỵ":"y","Æ´":"y","ɏ":"y","ỿ":"y","â“©":"z","z":"z","ź":"z","ẑ":"z","ż":"z","ž":"z","ẓ":"z","ẕ":"z","ƶ":"z","È¥":"z","É€":"z","ⱬ":"z","ꝣ":"z","Ά":"Α","Έ":"Ε","Ή":"Η","Ί":"Ι","Ϊ":"Ι","ÎŒ":"Ο","ÎŽ":"Î¥","Ϋ":"Î¥","Ώ":"Ω","ά":"α","έ":"ε","ή":"η","ί":"ι","ÏŠ":"ι","ΐ":"ι","ÏŒ":"ο","ύ":"Ï…","Ï‹":"Ï…","ΰ":"Ï…","ω":"ω","Ï‚":"σ"};return a}),b.define("select2/data/base",["../utils"],function(a){function b(a,c){b.__super__.constructor.call(this)}return a.Extend(b,a.Observable),b.prototype.current=function(a){throw new Error("The `current` method must be defined in child classes.")},b.prototype.query=function(a,b){throw new Error("The `query` method must be defined in child classes.")},b.prototype.bind=function(a,b){},b.prototype.destroy=function(){},b.prototype.generateResultId=function(b,c){var d=b.id+"-result-";return d+=a.generateChars(4),d+=null!=c.id?"-"+c.id.toString():"-"+a.generateChars(4)},b}),b.define("select2/data/select",["./base","../utils","jquery"],function(a,b,c){function d(a,b){this.$element=a,this.options=b,d.__super__.constructor.call(this)}return b.Extend(d,a),d.prototype.current=function(a){var b=[],d=this;this.$element.find(":selected").each(function(){var a=c(this),e=d.item(a);b.push(e)}),a(b)},d.prototype.select=function(a){
2
+ var b=this;if(a.selected=!0,c(a.element).is("option"))return a.element.selected=!0,void this.$element.trigger("change");if(this.$element.prop("multiple"))this.current(function(d){var e=[];a=[a],a.push.apply(a,d);for(var f=0;f<a.length;f++){var g=a[f].id;-1===c.inArray(g,e)&&e.push(g)}b.$element.val(e),b.$element.trigger("change")});else{var d=a.id;this.$element.val(d),this.$element.trigger("change")}},d.prototype.unselect=function(a){var b=this;if(this.$element.prop("multiple"))return a.selected=!1,c(a.element).is("option")?(a.element.selected=!1,void this.$element.trigger("change")):void this.current(function(d){for(var e=[],f=0;f<d.length;f++){var g=d[f].id;g!==a.id&&-1===c.inArray(g,e)&&e.push(g)}b.$element.val(e),b.$element.trigger("change")})},d.prototype.bind=function(a,b){var c=this;this.container=a,a.on("select",function(a){c.select(a.data)}),a.on("unselect",function(a){c.unselect(a.data)})},d.prototype.destroy=function(){this.$element.find("*").each(function(){c.removeData(this,"data")})},d.prototype.query=function(a,b){var d=[],e=this,f=this.$element.children();f.each(function(){var b=c(this);if(b.is("option")||b.is("optgroup")){var f=e.item(b),g=e.matches(a,f);null!==g&&d.push(g)}}),b({results:d})},d.prototype.addOptions=function(a){b.appendMany(this.$element,a)},d.prototype.option=function(a){var b;a.children?(b=document.createElement("optgroup"),b.label=a.text):(b=document.createElement("option"),void 0!==b.textContent?b.textContent=a.text:b.innerText=a.text),void 0!==a.id&&(b.value=a.id),a.disabled&&(b.disabled=!0),a.selected&&(b.selected=!0),a.title&&(b.title=a.title);var d=c(b),e=this._normalizeItem(a);return e.element=b,c.data(b,"data",e),d},d.prototype.item=function(a){var b={};if(b=c.data(a[0],"data"),null!=b)return b;if(a.is("option"))b={id:a.val(),text:a.text(),disabled:a.prop("disabled"),selected:a.prop("selected"),title:a.prop("title")};else if(a.is("optgroup")){b={text:a.prop("label"),children:[],title:a.prop("title")};for(var d=a.children("option"),e=[],f=0;f<d.length;f++){var g=c(d[f]),h=this.item(g);e.push(h)}b.children=e}return b=this._normalizeItem(b),b.element=a[0],c.data(a[0],"data",b),b},d.prototype._normalizeItem=function(a){c.isPlainObject(a)||(a={id:a,text:a}),a=c.extend({},{text:""},a);var b={selected:!1,disabled:!1};return null!=a.id&&(a.id=a.id.toString()),null!=a.text&&(a.text=a.text.toString()),null==a._resultId&&a.id&&null!=this.container&&(a._resultId=this.generateResultId(this.container,a)),c.extend({},b,a)},d.prototype.matches=function(a,b){var c=this.options.get("matcher");return c(a,b)},d}),b.define("select2/data/array",["./select","../utils","jquery"],function(a,b,c){function d(a,b){var c=b.get("data")||[];d.__super__.constructor.call(this,a,b),this.addOptions(this.convertToOptions(c))}return b.Extend(d,a),d.prototype.select=function(a){var b=this.$element.find("option").filter(function(b,c){return c.value==a.id.toString()});0===b.length&&(b=this.option(a),this.addOptions(b)),d.__super__.select.call(this,a)},d.prototype.convertToOptions=function(a){function d(a){return function(){return c(this).val()==a.id}}for(var e=this,f=this.$element.find("option"),g=f.map(function(){return e.item(c(this)).id}).get(),h=[],i=0;i<a.length;i++){var j=this._normalizeItem(a[i]);if(c.inArray(j.id,g)>=0){var k=f.filter(d(j)),l=this.item(k),m=c.extend(!0,{},j,l),n=this.option(m);k.replaceWith(n)}else{var o=this.option(j);if(j.children){var p=this.convertToOptions(j.children);b.appendMany(o,p)}h.push(o)}}return h},d}),b.define("select2/data/ajax",["./array","../utils","jquery"],function(a,b,c){function d(a,b){this.ajaxOptions=this._applyDefaults(b.get("ajax")),null!=this.ajaxOptions.processResults&&(this.processResults=this.ajaxOptions.processResults),d.__super__.constructor.call(this,a,b)}return b.Extend(d,a),d.prototype._applyDefaults=function(a){var b={data:function(a){return c.extend({},a,{q:a.term})},transport:function(a,b,d){var e=c.ajax(a);return e.then(b),e.fail(d),e}};return c.extend({},b,a,!0)},d.prototype.processResults=function(a){return a},d.prototype.query=function(a,b){function d(){var d=f.transport(f,function(d){var f=e.processResults(d,a);e.options.get("debug")&&window.console&&console.error&&(f&&f.results&&c.isArray(f.results)||console.error("Select2: The AJAX results did not return an array in the `results` key of the response.")),b(f)},function(){d.status&&"0"===d.status||e.trigger("results:message",{message:"errorLoading"})});e._request=d}var e=this;null!=this._request&&(c.isFunction(this._request.abort)&&this._request.abort(),this._request=null);var f=c.extend({type:"GET"},this.ajaxOptions);"function"==typeof f.url&&(f.url=f.url.call(this.$element,a)),"function"==typeof f.data&&(f.data=f.data.call(this.$element,a)),this.ajaxOptions.delay&&null!=a.term?(this._queryTimeout&&window.clearTimeout(this._queryTimeout),this._queryTimeout=window.setTimeout(d,this.ajaxOptions.delay)):d()},d}),b.define("select2/data/tags",["jquery"],function(a){function b(b,c,d){var e=d.get("tags"),f=d.get("createTag");void 0!==f&&(this.createTag=f);var g=d.get("insertTag");if(void 0!==g&&(this.insertTag=g),b.call(this,c,d),a.isArray(e))for(var h=0;h<e.length;h++){var i=e[h],j=this._normalizeItem(i),k=this.option(j);this.$element.append(k)}}return b.prototype.query=function(a,b,c){function d(a,f){for(var g=a.results,h=0;h<g.length;h++){var i=g[h],j=null!=i.children&&!d({results:i.children},!0),k=(i.text||"").toUpperCase(),l=(b.term||"").toUpperCase(),m=k===l;if(m||j)return f?!1:(a.data=g,void c(a))}if(f)return!0;var n=e.createTag(b);if(null!=n){var o=e.option(n);o.attr("data-select2-tag",!0),e.addOptions([o]),e.insertTag(g,n)}a.results=g,c(a)}var e=this;return this._removeOldTags(),null==b.term||null!=b.page?void a.call(this,b,c):void a.call(this,b,d)},b.prototype.createTag=function(b,c){var d=a.trim(c.term);return""===d?null:{id:d,text:d}},b.prototype.insertTag=function(a,b,c){b.unshift(c)},b.prototype._removeOldTags=function(b){var c=(this._lastTag,this.$element.find("option[data-select2-tag]"));c.each(function(){this.selected||a(this).remove()})},b}),b.define("select2/data/tokenizer",["jquery"],function(a){function b(a,b,c){var d=c.get("tokenizer");void 0!==d&&(this.tokenizer=d),a.call(this,b,c)}return b.prototype.bind=function(a,b,c){a.call(this,b,c),this.$search=b.dropdown.$search||b.selection.$search||c.find(".select2-search__field")},b.prototype.query=function(b,c,d){function e(b){var c=g._normalizeItem(b),d=g.$element.find("option").filter(function(){return a(this).val()===c.id});if(!d.length){var e=g.option(c);e.attr("data-select2-tag",!0),g._removeOldTags(),g.addOptions([e])}f(c)}function f(a){g.trigger("select",{data:a})}var g=this;c.term=c.term||"";var h=this.tokenizer(c,this.options,e);h.term!==c.term&&(this.$search.length&&(this.$search.val(h.term),this.$search.focus()),c.term=h.term),b.call(this,c,d)},b.prototype.tokenizer=function(b,c,d,e){for(var f=d.get("tokenSeparators")||[],g=c.term,h=0,i=this.createTag||function(a){return{id:a.term,text:a.term}};h<g.length;){var j=g[h];if(-1!==a.inArray(j,f)){var k=g.substr(0,h),l=a.extend({},c,{term:k}),m=i(l);null!=m?(e(m),g=g.substr(h+1)||"",h=0):h++}else h++}return{term:g}},b}),b.define("select2/data/minimumInputLength",[],function(){function a(a,b,c){this.minimumInputLength=c.get("minimumInputLength"),a.call(this,b,c)}return a.prototype.query=function(a,b,c){return b.term=b.term||"",b.term.length<this.minimumInputLength?void this.trigger("results:message",{message:"inputTooShort",args:{minimum:this.minimumInputLength,input:b.term,params:b}}):void a.call(this,b,c)},a}),b.define("select2/data/maximumInputLength",[],function(){function a(a,b,c){this.maximumInputLength=c.get("maximumInputLength"),a.call(this,b,c)}return a.prototype.query=function(a,b,c){return b.term=b.term||"",this.maximumInputLength>0&&b.term.length>this.maximumInputLength?void this.trigger("results:message",{message:"inputTooLong",args:{maximum:this.maximumInputLength,input:b.term,params:b}}):void a.call(this,b,c)},a}),b.define("select2/data/maximumSelectionLength",[],function(){function a(a,b,c){this.maximumSelectionLength=c.get("maximumSelectionLength"),a.call(this,b,c)}return a.prototype.query=function(a,b,c){var d=this;this.current(function(e){var f=null!=e?e.length:0;return d.maximumSelectionLength>0&&f>=d.maximumSelectionLength?void d.trigger("results:message",{message:"maximumSelected",args:{maximum:d.maximumSelectionLength}}):void a.call(d,b,c)})},a}),b.define("select2/dropdown",["jquery","./utils"],function(a,b){function c(a,b){this.$element=a,this.options=b,c.__super__.constructor.call(this)}return b.Extend(c,b.Observable),c.prototype.render=function(){var b=a('<span class="select2-dropdown"><span class="select2-results"></span></span>');return b.attr("dir",this.options.get("dir")),this.$dropdown=b,b},c.prototype.bind=function(){},c.prototype.position=function(a,b){},c.prototype.destroy=function(){this.$dropdown.remove()},c}),b.define("select2/dropdown/search",["jquery","../utils"],function(a,b){function c(){}return c.prototype.render=function(b){var c=b.call(this),d=a('<span class="select2-search select2-search--dropdown"><input class="select2-search__field" type="search" tabindex="-1" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false" role="textbox" /></span>');return this.$searchContainer=d,this.$search=d.find("input"),c.prepend(d),c},c.prototype.bind=function(b,c,d){var e=this;b.call(this,c,d),this.$search.on("keydown",function(a){e.trigger("keypress",a),e._keyUpPrevented=a.isDefaultPrevented()}),this.$search.on("input",function(b){a(this).off("keyup")}),this.$search.on("keyup input",function(a){e.handleSearch(a)}),c.on("open",function(){e.$search.attr("tabindex",0),e.$search.focus(),window.setTimeout(function(){e.$search.focus()},0)}),c.on("close",function(){e.$search.attr("tabindex",-1),e.$search.val("")}),c.on("focus",function(){c.isOpen()&&e.$search.focus()}),c.on("results:all",function(a){if(null==a.query.term||""===a.query.term){var b=e.showSearch(a);b?e.$searchContainer.removeClass("select2-search--hide"):e.$searchContainer.addClass("select2-search--hide")}})},c.prototype.handleSearch=function(a){if(!this._keyUpPrevented){var b=this.$search.val();this.trigger("query",{term:b})}this._keyUpPrevented=!1},c.prototype.showSearch=function(a,b){return!0},c}),b.define("select2/dropdown/hidePlaceholder",[],function(){function a(a,b,c,d){this.placeholder=this.normalizePlaceholder(c.get("placeholder")),a.call(this,b,c,d)}return a.prototype.append=function(a,b){b.results=this.removePlaceholder(b.results),a.call(this,b)},a.prototype.normalizePlaceholder=function(a,b){return"string"==typeof b&&(b={id:"",text:b}),b},a.prototype.removePlaceholder=function(a,b){for(var c=b.slice(0),d=b.length-1;d>=0;d--){var e=b[d];this.placeholder.id===e.id&&c.splice(d,1)}return c},a}),b.define("select2/dropdown/infiniteScroll",["jquery"],function(a){function b(a,b,c,d){this.lastParams={},a.call(this,b,c,d),this.$loadingMore=this.createLoadingMore(),this.loading=!1}return b.prototype.append=function(a,b){this.$loadingMore.remove(),this.loading=!1,a.call(this,b),this.showLoadingMore(b)&&this.$results.append(this.$loadingMore)},b.prototype.bind=function(b,c,d){var e=this;b.call(this,c,d),c.on("query",function(a){e.lastParams=a,e.loading=!0}),c.on("query:append",function(a){e.lastParams=a,e.loading=!0}),this.$results.on("scroll",function(){var b=a.contains(document.documentElement,e.$loadingMore[0]);if(!e.loading&&b){var c=e.$results.offset().top+e.$results.outerHeight(!1),d=e.$loadingMore.offset().top+e.$loadingMore.outerHeight(!1);c+50>=d&&e.loadMore()}})},b.prototype.loadMore=function(){this.loading=!0;var b=a.extend({},{page:1},this.lastParams);b.page++,this.trigger("query:append",b)},b.prototype.showLoadingMore=function(a,b){return b.pagination&&b.pagination.more},b.prototype.createLoadingMore=function(){var b=a('<li class="select2-results__option select2-results__option--load-more"role="treeitem" aria-disabled="true"></li>'),c=this.options.get("translations").get("loadingMore");return b.html(c(this.lastParams)),b},b}),b.define("select2/dropdown/attachBody",["jquery","../utils"],function(a,b){function c(b,c,d){this.$dropdownParent=d.get("dropdownParent")||a(document.body),b.call(this,c,d)}return c.prototype.bind=function(a,b,c){var d=this,e=!1;a.call(this,b,c),b.on("open",function(){d._showDropdown(),d._attachPositioningHandler(b),e||(e=!0,b.on("results:all",function(){d._positionDropdown(),d._resizeDropdown()}),b.on("results:append",function(){d._positionDropdown(),d._resizeDropdown()}))}),b.on("close",function(){d._hideDropdown(),d._detachPositioningHandler(b)}),this.$dropdownContainer.on("mousedown",function(a){a.stopPropagation()})},c.prototype.destroy=function(a){a.call(this),this.$dropdownContainer.remove()},c.prototype.position=function(a,b,c){b.attr("class",c.attr("class")),b.removeClass("select2"),b.addClass("select2-container--open"),b.css({position:"absolute",top:-999999}),this.$container=c},c.prototype.render=function(b){var c=a("<span></span>"),d=b.call(this);return c.append(d),this.$dropdownContainer=c,c},c.prototype._hideDropdown=function(a){this.$dropdownContainer.detach()},c.prototype._attachPositioningHandler=function(c,d){var e=this,f="scroll.select2."+d.id,g="resize.select2."+d.id,h="orientationchange.select2."+d.id,i=this.$container.parents().filter(b.hasScroll);i.each(function(){a(this).data("select2-scroll-position",{x:a(this).scrollLeft(),y:a(this).scrollTop()})}),i.on(f,function(b){var c=a(this).data("select2-scroll-position");a(this).scrollTop(c.y)}),a(window).on(f+" "+g+" "+h,function(a){e._positionDropdown(),e._resizeDropdown()})},c.prototype._detachPositioningHandler=function(c,d){var e="scroll.select2."+d.id,f="resize.select2."+d.id,g="orientationchange.select2."+d.id,h=this.$container.parents().filter(b.hasScroll);h.off(e),a(window).off(e+" "+f+" "+g)},c.prototype._positionDropdown=function(){var b=a(window),c=this.$dropdown.hasClass("select2-dropdown--above"),d=this.$dropdown.hasClass("select2-dropdown--below"),e=null,f=this.$container.offset();f.bottom=f.top+this.$container.outerHeight(!1);var g={height:this.$container.outerHeight(!1)};g.top=f.top,g.bottom=f.top+g.height;var h={height:this.$dropdown.outerHeight(!1)},i={top:b.scrollTop(),bottom:b.scrollTop()+b.height()},j=i.top<f.top-h.height,k=i.bottom>f.bottom+h.height,l={left:f.left,top:g.bottom},m=this.$dropdownParent;"static"===m.css("position")&&(m=m.offsetParent());var n=m.offset();l.top-=n.top,l.left-=n.left,c||d||(e="below"),k||!j||c?!j&&k&&c&&(e="below"):e="above",("above"==e||c&&"below"!==e)&&(l.top=g.top-n.top-h.height),null!=e&&(this.$dropdown.removeClass("select2-dropdown--below select2-dropdown--above").addClass("select2-dropdown--"+e),this.$container.removeClass("select2-container--below select2-container--above").addClass("select2-container--"+e)),this.$dropdownContainer.css(l)},c.prototype._resizeDropdown=function(){var a={width:this.$container.outerWidth(!1)+"px"};this.options.get("dropdownAutoWidth")&&(a.minWidth=a.width,a.position="relative",a.width="auto"),this.$dropdown.css(a)},c.prototype._showDropdown=function(a){this.$dropdownContainer.appendTo(this.$dropdownParent),this._positionDropdown(),this._resizeDropdown()},c}),b.define("select2/dropdown/minimumResultsForSearch",[],function(){function a(b){for(var c=0,d=0;d<b.length;d++){var e=b[d];e.children?c+=a(e.children):c++}return c}function b(a,b,c,d){this.minimumResultsForSearch=c.get("minimumResultsForSearch"),this.minimumResultsForSearch<0&&(this.minimumResultsForSearch=1/0),a.call(this,b,c,d)}return b.prototype.showSearch=function(b,c){return a(c.data.results)<this.minimumResultsForSearch?!1:b.call(this,c)},b}),b.define("select2/dropdown/selectOnClose",[],function(){function a(){}return a.prototype.bind=function(a,b,c){var d=this;a.call(this,b,c),b.on("close",function(a){d._handleSelectOnClose(a)})},a.prototype._handleSelectOnClose=function(a,b){if(b&&null!=b.originalSelect2Event){var c=b.originalSelect2Event;if("select"===c._type||"unselect"===c._type)return}var d=this.getHighlightedResults();if(!(d.length<1)){var e=d.data("data");null!=e.element&&e.element.selected||null==e.element&&e.selected||this.trigger("select",{data:e})}},a}),b.define("select2/dropdown/closeOnSelect",[],function(){function a(){}return a.prototype.bind=function(a,b,c){var d=this;a.call(this,b,c),b.on("select",function(a){d._selectTriggered(a)}),b.on("unselect",function(a){d._selectTriggered(a)})},a.prototype._selectTriggered=function(a,b){var c=b.originalEvent;c&&c.ctrlKey||this.trigger("close",{originalEvent:c,originalSelect2Event:b})},a}),b.define("select2/i18n/en",[],function(){return{errorLoading:function(){return"The results could not be loaded."},inputTooLong:function(a){var b=a.input.length-a.maximum,c="Please delete "+b+" character";return 1!=b&&(c+="s"),c},inputTooShort:function(a){var b=a.minimum-a.input.length,c="Please enter "+b+" or more characters";return c},loadingMore:function(){return"Loading more results…"},maximumSelected:function(a){var b="You can only select "+a.maximum+" item";return 1!=a.maximum&&(b+="s"),b},noResults:function(){return"No results found"},searching:function(){return"Searching…"}}}),b.define("select2/defaults",["jquery","require","./results","./selection/single","./selection/multiple","./selection/placeholder","./selection/allowClear","./selection/search","./selection/eventRelay","./utils","./translation","./diacritics","./data/select","./data/array","./data/ajax","./data/tags","./data/tokenizer","./data/minimumInputLength","./data/maximumInputLength","./data/maximumSelectionLength","./dropdown","./dropdown/search","./dropdown/hidePlaceholder","./dropdown/infiniteScroll","./dropdown/attachBody","./dropdown/minimumResultsForSearch","./dropdown/selectOnClose","./dropdown/closeOnSelect","./i18n/en"],function(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x,y,z,A,B,C){function D(){this.reset()}D.prototype.apply=function(l){if(l=a.extend(!0,{},this.defaults,l),null==l.dataAdapter){if(null!=l.ajax?l.dataAdapter=o:null!=l.data?l.dataAdapter=n:l.dataAdapter=m,l.minimumInputLength>0&&(l.dataAdapter=j.Decorate(l.dataAdapter,r)),l.maximumInputLength>0&&(l.dataAdapter=j.Decorate(l.dataAdapter,s)),l.maximumSelectionLength>0&&(l.dataAdapter=j.Decorate(l.dataAdapter,t)),l.tags&&(l.dataAdapter=j.Decorate(l.dataAdapter,p)),(null!=l.tokenSeparators||null!=l.tokenizer)&&(l.dataAdapter=j.Decorate(l.dataAdapter,q)),null!=l.query){var C=b(l.amdBase+"compat/query");l.dataAdapter=j.Decorate(l.dataAdapter,C)}if(null!=l.initSelection){var D=b(l.amdBase+"compat/initSelection");l.dataAdapter=j.Decorate(l.dataAdapter,D)}}if(null==l.resultsAdapter&&(l.resultsAdapter=c,null!=l.ajax&&(l.resultsAdapter=j.Decorate(l.resultsAdapter,x)),null!=l.placeholder&&(l.resultsAdapter=j.Decorate(l.resultsAdapter,w)),l.selectOnClose&&(l.resultsAdapter=j.Decorate(l.resultsAdapter,A))),null==l.dropdownAdapter){if(l.multiple)l.dropdownAdapter=u;else{var E=j.Decorate(u,v);l.dropdownAdapter=E}if(0!==l.minimumResultsForSearch&&(l.dropdownAdapter=j.Decorate(l.dropdownAdapter,z)),l.closeOnSelect&&(l.dropdownAdapter=j.Decorate(l.dropdownAdapter,B)),null!=l.dropdownCssClass||null!=l.dropdownCss||null!=l.adaptDropdownCssClass){var F=b(l.amdBase+"compat/dropdownCss");l.dropdownAdapter=j.Decorate(l.dropdownAdapter,F)}l.dropdownAdapter=j.Decorate(l.dropdownAdapter,y)}if(null==l.selectionAdapter){if(l.multiple?l.selectionAdapter=e:l.selectionAdapter=d,null!=l.placeholder&&(l.selectionAdapter=j.Decorate(l.selectionAdapter,f)),l.allowClear&&(l.selectionAdapter=j.Decorate(l.selectionAdapter,g)),l.multiple&&(l.selectionAdapter=j.Decorate(l.selectionAdapter,h)),null!=l.containerCssClass||null!=l.containerCss||null!=l.adaptContainerCssClass){var G=b(l.amdBase+"compat/containerCss");l.selectionAdapter=j.Decorate(l.selectionAdapter,G)}l.selectionAdapter=j.Decorate(l.selectionAdapter,i)}if("string"==typeof l.language)if(l.language.indexOf("-")>0){var H=l.language.split("-"),I=H[0];l.language=[l.language,I]}else l.language=[l.language];if(a.isArray(l.language)){var J=new k;l.language.push("en");for(var K=l.language,L=0;L<K.length;L++){var M=K[L],N={};try{N=k.loadPath(M)}catch(O){try{M=this.defaults.amdLanguageBase+M,N=k.loadPath(M)}catch(P){l.debug&&window.console&&console.warn&&console.warn('Select2: The language file for "'+M+'" could not be automatically loaded. A fallback will be used instead.');continue}}J.extend(N)}l.translations=J}else{var Q=k.loadPath(this.defaults.amdLanguageBase+"en"),R=new k(l.language);R.extend(Q),l.translations=R}return l},D.prototype.reset=function(){function b(a){function b(a){return l[a]||a}return a.replace(/[^\u0000-\u007E]/g,b)}function c(d,e){if(""===a.trim(d.term))return e;if(e.children&&e.children.length>0){for(var f=a.extend(!0,{},e),g=e.children.length-1;g>=0;g--){var h=e.children[g],i=c(d,h);null==i&&f.children.splice(g,1)}return f.children.length>0?f:c(d,f)}var j=b(e.text).toUpperCase(),k=b(d.term).toUpperCase();return j.indexOf(k)>-1?e:null}this.defaults={amdBase:"./",amdLanguageBase:"./i18n/",closeOnSelect:!0,debug:!1,dropdownAutoWidth:!1,escapeMarkup:j.escapeMarkup,language:C,matcher:c,minimumInputLength:0,maximumInputLength:0,maximumSelectionLength:0,minimumResultsForSearch:0,selectOnClose:!1,sorter:function(a){return a},templateResult:function(a){return a.text},templateSelection:function(a){return a.text},theme:"default",width:"resolve"}},D.prototype.set=function(b,c){var d=a.camelCase(b),e={};e[d]=c;var f=j._convertData(e);a.extend(this.defaults,f)};var E=new D;return E}),b.define("select2/options",["require","jquery","./defaults","./utils"],function(a,b,c,d){function e(b,e){if(this.options=b,null!=e&&this.fromElement(e),this.options=c.apply(this.options),e&&e.is("input")){var f=a(this.get("amdBase")+"compat/inputData");this.options.dataAdapter=d.Decorate(this.options.dataAdapter,f)}}return e.prototype.fromElement=function(a){var c=["select2"];null==this.options.multiple&&(this.options.multiple=a.prop("multiple")),null==this.options.disabled&&(this.options.disabled=a.prop("disabled")),null==this.options.language&&(a.prop("lang")?this.options.language=a.prop("lang").toLowerCase():a.closest("[lang]").prop("lang")&&(this.options.language=a.closest("[lang]").prop("lang"))),null==this.options.dir&&(a.prop("dir")?this.options.dir=a.prop("dir"):a.closest("[dir]").prop("dir")?this.options.dir=a.closest("[dir]").prop("dir"):this.options.dir="ltr"),a.prop("disabled",this.options.disabled),a.prop("multiple",this.options.multiple),a.data("select2Tags")&&(this.options.debug&&window.console&&console.warn&&console.warn('Select2: The `data-select2-tags` attribute has been changed to use the `data-data` and `data-tags="true"` attributes and will be removed in future versions of Select2.'),a.data("data",a.data("select2Tags")),a.data("tags",!0)),a.data("ajaxUrl")&&(this.options.debug&&window.console&&console.warn&&console.warn("Select2: The `data-ajax-url` attribute has been changed to `data-ajax--url` and support for the old attribute will be removed in future versions of Select2."),a.attr("ajax--url",a.data("ajaxUrl")),a.data("ajax--url",a.data("ajaxUrl")));var e={};e=b.fn.jquery&&"1."==b.fn.jquery.substr(0,2)&&a[0].dataset?b.extend(!0,{},a[0].dataset,a.data()):a.data();var f=b.extend(!0,{},e);f=d._convertData(f);for(var g in f)b.inArray(g,c)>-1||(b.isPlainObject(this.options[g])?b.extend(this.options[g],f[g]):this.options[g]=f[g]);return this},e.prototype.get=function(a){return this.options[a]},e.prototype.set=function(a,b){this.options[a]=b},e}),b.define("select2/core",["jquery","./options","./utils","./keys"],function(a,b,c,d){var e=function(a,c){null!=a.data("select2")&&a.data("select2").destroy(),this.$element=a,this.id=this._generateId(a),c=c||{},this.options=new b(c,a),e.__super__.constructor.call(this);var d=a.attr("tabindex")||0;a.data("old-tabindex",d),a.attr("tabindex","-1");var f=this.options.get("dataAdapter");this.dataAdapter=new f(a,this.options);var g=this.render();this._placeContainer(g);var h=this.options.get("selectionAdapter");this.selection=new h(a,this.options),this.$selection=this.selection.render(),this.selection.position(this.$selection,g);var i=this.options.get("dropdownAdapter");this.dropdown=new i(a,this.options),this.$dropdown=this.dropdown.render(),this.dropdown.position(this.$dropdown,g);var j=this.options.get("resultsAdapter");this.results=new j(a,this.options,this.dataAdapter),this.$results=this.results.render(),this.results.position(this.$results,this.$dropdown);var k=this;this._bindAdapters(),this._registerDomEvents(),this._registerDataEvents(),this._registerSelectionEvents(),this._registerDropdownEvents(),this._registerResultsEvents(),this._registerEvents(),this.dataAdapter.current(function(a){k.trigger("selection:update",{data:a})}),a.addClass("select2-hidden-accessible"),a.attr("aria-hidden","true"),this._syncAttributes(),a.data("select2",this)};return c.Extend(e,c.Observable),e.prototype._generateId=function(a){var b="";return b=null!=a.attr("id")?a.attr("id"):null!=a.attr("name")?a.attr("name")+"-"+c.generateChars(2):c.generateChars(4),b=b.replace(/(:|\.|\[|\]|,)/g,""),b="select2-"+b},e.prototype._placeContainer=function(a){a.insertAfter(this.$element);var b=this._resolveWidth(this.$element,this.options.get("width"));null!=b&&a.css("width",b)},e.prototype._resolveWidth=function(a,b){var c=/^width:(([-+]?([0-9]*\.)?[0-9]+)(px|em|ex|%|in|cm|mm|pt|pc))/i;if("resolve"==b){var d=this._resolveWidth(a,"style");return null!=d?d:this._resolveWidth(a,"element")}if("element"==b){var e=a.outerWidth(!1);return 0>=e?"auto":e+"px"}if("style"==b){var f=a.attr("style");if("string"!=typeof f)return null;for(var g=f.split(";"),h=0,i=g.length;i>h;h+=1){var j=g[h].replace(/\s/g,""),k=j.match(c);if(null!==k&&k.length>=1)return k[1]}return null}return b},e.prototype._bindAdapters=function(){this.dataAdapter.bind(this,this.$container),this.selection.bind(this,this.$container),this.dropdown.bind(this,this.$container),this.results.bind(this,this.$container)},e.prototype._registerDomEvents=function(){var b=this;this.$element.on("change.select2",function(){b.dataAdapter.current(function(a){b.trigger("selection:update",{data:a})})}),this.$element.on("focus.select2",function(a){b.trigger("focus",a)}),this._syncA=c.bind(this._syncAttributes,this),this._syncS=c.bind(this._syncSubtree,this),this.$element[0].attachEvent&&this.$element[0].attachEvent("onpropertychange",this._syncA);var d=window.MutationObserver||window.WebKitMutationObserver||window.MozMutationObserver;null!=d?(this._observer=new d(function(c){a.each(c,b._syncA),a.each(c,b._syncS)}),this._observer.observe(this.$element[0],{attributes:!0,childList:!0,subtree:!1})):this.$element[0].addEventListener&&(this.$element[0].addEventListener("DOMAttrModified",b._syncA,!1),this.$element[0].addEventListener("DOMNodeInserted",b._syncS,!1),this.$element[0].addEventListener("DOMNodeRemoved",b._syncS,!1))},e.prototype._registerDataEvents=function(){var a=this;this.dataAdapter.on("*",function(b,c){a.trigger(b,c)})},e.prototype._registerSelectionEvents=function(){var b=this,c=["toggle","focus"];this.selection.on("toggle",function(){b.toggleDropdown()}),this.selection.on("focus",function(a){b.focus(a)}),this.selection.on("*",function(d,e){-1===a.inArray(d,c)&&b.trigger(d,e)})},e.prototype._registerDropdownEvents=function(){var a=this;this.dropdown.on("*",function(b,c){a.trigger(b,c)})},e.prototype._registerResultsEvents=function(){var a=this;this.results.on("*",function(b,c){a.trigger(b,c)})},e.prototype._registerEvents=function(){var a=this;this.on("open",function(){a.$container.addClass("select2-container--open")}),this.on("close",function(){a.$container.removeClass("select2-container--open")}),this.on("enable",function(){a.$container.removeClass("select2-container--disabled")}),this.on("disable",function(){a.$container.addClass("select2-container--disabled")}),this.on("blur",function(){a.$container.removeClass("select2-container--focus")}),this.on("query",function(b){a.isOpen()||a.trigger("open",{}),this.dataAdapter.query(b,function(c){a.trigger("results:all",{data:c,query:b})})}),this.on("query:append",function(b){this.dataAdapter.query(b,function(c){a.trigger("results:append",{data:c,query:b})})}),this.on("keypress",function(b){var c=b.which;a.isOpen()?c===d.ESC||c===d.TAB||c===d.UP&&b.altKey?(a.close(),b.preventDefault()):c===d.ENTER?(a.trigger("results:select",{}),b.preventDefault()):c===d.SPACE&&b.ctrlKey?(a.trigger("results:toggle",{}),b.preventDefault()):c===d.UP?(a.trigger("results:previous",{}),b.preventDefault()):c===d.DOWN&&(a.trigger("results:next",{}),b.preventDefault()):(c===d.ENTER||c===d.SPACE||c===d.DOWN&&b.altKey)&&(a.open(),b.preventDefault())})},e.prototype._syncAttributes=function(){this.options.set("disabled",this.$element.prop("disabled")),this.options.get("disabled")?(this.isOpen()&&this.close(),this.trigger("disable",{})):this.trigger("enable",{})},e.prototype._syncSubtree=function(a,b){var c=!1,d=this;if(!a||!a.target||"OPTION"===a.target.nodeName||"OPTGROUP"===a.target.nodeName){if(b)if(b.addedNodes&&b.addedNodes.length>0)for(var e=0;e<b.addedNodes.length;e++){var f=b.addedNodes[e];f.selected&&(c=!0)}else b.removedNodes&&b.removedNodes.length>0&&(c=!0);else c=!0;c&&this.dataAdapter.current(function(a){d.trigger("selection:update",{data:a})})}},e.prototype.trigger=function(a,b){var c=e.__super__.trigger,d={open:"opening",close:"closing",select:"selecting",unselect:"unselecting"};if(void 0===b&&(b={}),a in d){var f=d[a],g={prevented:!1,name:a,args:b};if(c.call(this,f,g),g.prevented)return void(b.prevented=!0)}c.call(this,a,b)},e.prototype.toggleDropdown=function(){this.options.get("disabled")||(this.isOpen()?this.close():this.open())},e.prototype.open=function(){this.isOpen()||this.trigger("query",{})},e.prototype.close=function(){this.isOpen()&&this.trigger("close",{})},e.prototype.isOpen=function(){return this.$container.hasClass("select2-container--open")},e.prototype.hasFocus=function(){return this.$container.hasClass("select2-container--focus")},e.prototype.focus=function(a){this.hasFocus()||(this.$container.addClass("select2-container--focus"),this.trigger("focus",{}))},e.prototype.enable=function(a){this.options.get("debug")&&window.console&&console.warn&&console.warn('Select2: The `select2("enable")` method has been deprecated and will be removed in later Select2 versions. Use $element.prop("disabled") instead.'),(null==a||0===a.length)&&(a=[!0]);var b=!a[0];this.$element.prop("disabled",b)},e.prototype.data=function(){this.options.get("debug")&&arguments.length>0&&window.console&&console.warn&&console.warn('Select2: Data can no longer be set using `select2("data")`. You should consider setting the value instead using `$element.val()`.');var a=[];return this.dataAdapter.current(function(b){a=b}),a},e.prototype.val=function(b){if(this.options.get("debug")&&window.console&&console.warn&&console.warn('Select2: The `select2("val")` method has been deprecated and will be removed in later Select2 versions. Use $element.val() instead.'),null==b||0===b.length)return this.$element.val();var c=b[0];a.isArray(c)&&(c=a.map(c,function(a){return a.toString()})),this.$element.val(c).trigger("change")},e.prototype.destroy=function(){this.$container.remove(),this.$element[0].detachEvent&&this.$element[0].detachEvent("onpropertychange",this._syncA),null!=this._observer?(this._observer.disconnect(),this._observer=null):this.$element[0].removeEventListener&&(this.$element[0].removeEventListener("DOMAttrModified",this._syncA,!1),this.$element[0].removeEventListener("DOMNodeInserted",this._syncS,!1),this.$element[0].removeEventListener("DOMNodeRemoved",this._syncS,!1)),this._syncA=null,this._syncS=null,this.$element.off(".select2"),this.$element.attr("tabindex",this.$element.data("old-tabindex")),this.$element.removeClass("select2-hidden-accessible"),this.$element.attr("aria-hidden","false"),this.$element.removeData("select2"),
3
  this.dataAdapter.destroy(),this.selection.destroy(),this.dropdown.destroy(),this.results.destroy(),this.dataAdapter=null,this.selection=null,this.dropdown=null,this.results=null},e.prototype.render=function(){var b=a('<span class="select2 select2-container"><span class="selection"></span><span class="dropdown-wrapper" aria-hidden="true"></span></span>');return b.attr("dir",this.options.get("dir")),this.$container=b,this.$container.addClass("select2-container--"+this.options.get("theme")),b.data("element",this.$element),b},e}),b.define("select2/compat/utils",["jquery"],function(a){function b(b,c,d){var e,f,g=[];e=a.trim(b.attr("class")),e&&(e=""+e,a(e.split(/\s+/)).each(function(){0===this.indexOf("select2-")&&g.push(this)})),e=a.trim(c.attr("class")),e&&(e=""+e,a(e.split(/\s+/)).each(function(){0!==this.indexOf("select2-")&&(f=d(this),null!=f&&g.push(f))})),b.attr("class",g.join(" "))}return{syncCssClasses:b}}),b.define("select2/compat/containerCss",["jquery","./utils"],function(a,b){function c(a){return null}function d(){}return d.prototype.render=function(d){var e=d.call(this),f=this.options.get("containerCssClass")||"";a.isFunction(f)&&(f=f(this.$element));var g=this.options.get("adaptContainerCssClass");if(g=g||c,-1!==f.indexOf(":all:")){f=f.replace(":all:","");var h=g;g=function(a){var b=h(a);return null!=b?b+" "+a:a}}var i=this.options.get("containerCss")||{};return a.isFunction(i)&&(i=i(this.$element)),b.syncCssClasses(e,this.$element,g),e.css(i),e.addClass(f),e},d}),b.define("select2/compat/dropdownCss",["jquery","./utils"],function(a,b){function c(a){return null}function d(){}return d.prototype.render=function(d){var e=d.call(this),f=this.options.get("dropdownCssClass")||"";a.isFunction(f)&&(f=f(this.$element));var g=this.options.get("adaptDropdownCssClass");if(g=g||c,-1!==f.indexOf(":all:")){f=f.replace(":all:","");var h=g;g=function(a){var b=h(a);return null!=b?b+" "+a:a}}var i=this.options.get("dropdownCss")||{};return a.isFunction(i)&&(i=i(this.$element)),b.syncCssClasses(e,this.$element,g),e.css(i),e.addClass(f),e},d}),b.define("select2/compat/initSelection",["jquery"],function(a){function b(a,b,c){c.get("debug")&&window.console&&console.warn&&console.warn("Select2: The `initSelection` option has been deprecated in favor of a custom data adapter that overrides the `current` method. This method is now called multiple times instead of a single time when the instance is initialized. Support will be removed for the `initSelection` option in future versions of Select2"),this.initSelection=c.get("initSelection"),this._isInitialized=!1,a.call(this,b,c)}return b.prototype.current=function(b,c){var d=this;return this._isInitialized?void b.call(this,c):void this.initSelection.call(null,this.$element,function(b){d._isInitialized=!0,a.isArray(b)||(b=[b]),c(b)})},b}),b.define("select2/compat/inputData",["jquery"],function(a){function b(a,b,c){this._currentData=[],this._valueSeparator=c.get("valueSeparator")||",","hidden"===b.prop("type")&&c.get("debug")&&console&&console.warn&&console.warn("Select2: Using a hidden input with Select2 is no longer supported and may stop working in the future. It is recommended to use a `<select>` element instead."),a.call(this,b,c)}return b.prototype.current=function(b,c){function d(b,c){var e=[];return b.selected||-1!==a.inArray(b.id,c)?(b.selected=!0,e.push(b)):b.selected=!1,b.children&&e.push.apply(e,d(b.children,c)),e}for(var e=[],f=0;f<this._currentData.length;f++){var g=this._currentData[f];e.push.apply(e,d(g,this.$element.val().split(this._valueSeparator)))}c(e)},b.prototype.select=function(b,c){if(this.options.get("multiple")){var d=this.$element.val();d+=this._valueSeparator+c.id,this.$element.val(d),this.$element.trigger("change")}else this.current(function(b){a.map(b,function(a){a.selected=!1})}),this.$element.val(c.id),this.$element.trigger("change")},b.prototype.unselect=function(a,b){var c=this;b.selected=!1,this.current(function(a){for(var d=[],e=0;e<a.length;e++){var f=a[e];b.id!=f.id&&d.push(f.id)}c.$element.val(d.join(c._valueSeparator)),c.$element.trigger("change")})},b.prototype.query=function(a,b,c){for(var d=[],e=0;e<this._currentData.length;e++){var f=this._currentData[e],g=this.matches(b,f);null!==g&&d.push(g)}c({results:d})},b.prototype.addOptions=function(b,c){var d=a.map(c,function(b){return a.data(b[0],"data")});this._currentData.push.apply(this._currentData,d)},b}),b.define("select2/compat/matcher",["jquery"],function(a){function b(b){function c(c,d){var e=a.extend(!0,{},d);if(null==c.term||""===a.trim(c.term))return e;if(d.children){for(var f=d.children.length-1;f>=0;f--){var g=d.children[f],h=b(c.term,g.text,g);h||e.children.splice(f,1)}if(e.children.length>0)return e}return b(c.term,d.text,d)?e:null}return c}return b}),b.define("select2/compat/query",[],function(){function a(a,b,c){c.get("debug")&&window.console&&console.warn&&console.warn("Select2: The `query` option has been deprecated in favor of a custom data adapter that overrides the `query` method. Support will be removed for the `query` option in future versions of Select2."),a.call(this,b,c)}return a.prototype.query=function(a,b,c){b.callback=c;var d=this.options.get("query");d.call(null,b)},a}),b.define("select2/dropdown/attachContainer",[],function(){function a(a,b,c){a.call(this,b,c)}return a.prototype.position=function(a,b,c){var d=c.find(".dropdown-wrapper");d.append(b),b.addClass("select2-dropdown--below"),c.addClass("select2-container--below")},a}),b.define("select2/dropdown/stopPropagation",[],function(){function a(){}return a.prototype.bind=function(a,b,c){a.call(this,b,c);var d=["blur","change","click","dblclick","focus","focusin","focusout","input","keydown","keyup","keypress","mousedown","mouseenter","mouseleave","mousemove","mouseover","mouseup","search","touchend","touchstart"];this.$dropdown.on(d.join(" "),function(a){a.stopPropagation()})},a}),b.define("select2/selection/stopPropagation",[],function(){function a(){}return a.prototype.bind=function(a,b,c){a.call(this,b,c);var d=["blur","change","click","dblclick","focus","focusin","focusout","input","keydown","keyup","keypress","mousedown","mouseenter","mouseleave","mousemove","mouseover","mouseup","search","touchend","touchstart"];this.$selection.on(d.join(" "),function(a){a.stopPropagation()})},a}),function(c){"function"==typeof b.define&&b.define.amd?b.define("jquery-mousewheel",["jquery"],c):"object"==typeof exports?module.exports=c:c(a)}(function(a){function b(b){var g=b||window.event,h=i.call(arguments,1),j=0,l=0,m=0,n=0,o=0,p=0;if(b=a.event.fix(g),b.type="mousewheel","detail"in g&&(m=-1*g.detail),"wheelDelta"in g&&(m=g.wheelDelta),"wheelDeltaY"in g&&(m=g.wheelDeltaY),"wheelDeltaX"in g&&(l=-1*g.wheelDeltaX),"axis"in g&&g.axis===g.HORIZONTAL_AXIS&&(l=-1*m,m=0),j=0===m?l:m,"deltaY"in g&&(m=-1*g.deltaY,j=m),"deltaX"in g&&(l=g.deltaX,0===m&&(j=-1*l)),0!==m||0!==l){if(1===g.deltaMode){var q=a.data(this,"mousewheel-line-height");j*=q,m*=q,l*=q}else if(2===g.deltaMode){var r=a.data(this,"mousewheel-page-height");j*=r,m*=r,l*=r}if(n=Math.max(Math.abs(m),Math.abs(l)),(!f||f>n)&&(f=n,d(g,n)&&(f/=40)),d(g,n)&&(j/=40,l/=40,m/=40),j=Math[j>=1?"floor":"ceil"](j/f),l=Math[l>=1?"floor":"ceil"](l/f),m=Math[m>=1?"floor":"ceil"](m/f),k.settings.normalizeOffset&&this.getBoundingClientRect){var s=this.getBoundingClientRect();o=b.clientX-s.left,p=b.clientY-s.top}return b.deltaX=l,b.deltaY=m,b.deltaFactor=f,b.offsetX=o,b.offsetY=p,b.deltaMode=0,h.unshift(b,j,l,m),e&&clearTimeout(e),e=setTimeout(c,200),(a.event.dispatch||a.event.handle).apply(this,h)}}function c(){f=null}function d(a,b){return k.settings.adjustOldDeltas&&"mousewheel"===a.type&&b%120===0}var e,f,g=["wheel","mousewheel","DOMMouseScroll","MozMousePixelScroll"],h="onwheel"in document||document.documentMode>=9?["wheel"]:["mousewheel","DomMouseScroll","MozMousePixelScroll"],i=Array.prototype.slice;if(a.event.fixHooks)for(var j=g.length;j;)a.event.fixHooks[g[--j]]=a.event.mouseHooks;var k=a.event.special.mousewheel={version:"3.1.12",setup:function(){if(this.addEventListener)for(var c=h.length;c;)this.addEventListener(h[--c],b,!1);else this.onmousewheel=b;a.data(this,"mousewheel-line-height",k.getLineHeight(this)),a.data(this,"mousewheel-page-height",k.getPageHeight(this))},teardown:function(){if(this.removeEventListener)for(var c=h.length;c;)this.removeEventListener(h[--c],b,!1);else this.onmousewheel=null;a.removeData(this,"mousewheel-line-height"),a.removeData(this,"mousewheel-page-height")},getLineHeight:function(b){var c=a(b),d=c["offsetParent"in a.fn?"offsetParent":"parent"]();return d.length||(d=a("body")),parseInt(d.css("fontSize"),10)||parseInt(c.css("fontSize"),10)||16},getPageHeight:function(b){return a(b).height()},settings:{adjustOldDeltas:!0,normalizeOffset:!0}};a.fn.extend({mousewheel:function(a){return a?this.bind("mousewheel",a):this.trigger("mousewheel")},unmousewheel:function(a){return this.unbind("mousewheel",a)}})}),b.define("jquery.select2",["jquery","jquery-mousewheel","./select2/core","./select2/defaults"],function(a,b,c,d){if(null==a.fn.select2){var e=["open","close","destroy"];a.fn.select2=function(b){if(b=b||{},"object"==typeof b)return this.each(function(){var d=a.extend(!0,{},b);new c(a(this),d)}),this;if("string"==typeof b){var d,f=Array.prototype.slice.call(arguments,1);return this.each(function(){var c=a(this).data("select2");null==c&&window.console&&console.error&&console.error("The select2('"+b+"') method was called on an element that is not using Select2."),d=c[b].apply(c,f)}),a.inArray(b,e)>-1?this:d}throw new Error("Invalid arguments for Select2: "+b)}}return null==a.fn.select2.defaults&&(a.fn.select2.defaults=d),c}),{define:b.define,require:b.require}}(),c=b.require("jquery.select2");return a.fn.select2.amd=b,c});
bootstrap.php CHANGED
@@ -1,61 +1,61 @@
1
- <?php
2
- /**
3
- * Set up config object, store plugin URL and path there
4
- * along with various other items
5
- */
6
-
7
- \Codelight\GDPR\Container::getInstance()->bindIf('config', function () {
8
- return new \Codelight\GDPR\Config([
9
- 'plugin' => [
10
- 'url' => plugin_dir_url(__FILE__),
11
- 'path' => plugin_dir_path(__FILE__),
12
- 'template_path' => plugin_dir_path(__FILE__) . 'views/',
13
- ],
14
- 'help' => [
15
- 'url' => 'https://www.data443.com/gdpr-framework/',
16
- ],
17
- ]);
18
- }, true);
19
-
20
- /**
21
- * Set up the application container
22
- *
23
- * @param string $abstract
24
- * @param array $parameters
25
- * @param Codelight\GDPR\Container $container
26
- *
27
- * @return Codelight\GDPR\Container|mixed
28
- */
29
- function gdpr($abstract = null, $parameters = [], Codelight\GDPR\Container $container = null)
30
- {
31
- $container = $container ?: Codelight\GDPR\Container::getInstance();
32
-
33
- if ( ! $abstract) {
34
- return $container;
35
- }
36
-
37
- return $container->bound($abstract)
38
- ? $container->makeWith($abstract, $parameters)
39
- : $container->makeWith("gdpr.{$abstract}", $parameters);
40
- }
41
-
42
- /**
43
- * Start the plugin on plugins_loaded at priority 0.
44
- */
45
- add_action('plugins_loaded', function () use ($gdpr_error) {
46
-
47
- load_plugin_textdomain('gdpr-framework', false, basename( dirname( __FILE__ ) ) . '/languages/');
48
-
49
- $locale = is_admin() && function_exists( 'get_user_locale' ) ? get_user_locale() : get_locale();
50
-
51
- $locale = apply_filters( 'plugin_locale', $locale, 'gdpr-framework' );
52
-
53
- unload_textdomain( 'gdpr-framework' );
54
-
55
- load_textdomain( 'gdpr-framework', get_stylesheet_directory().'/gdpr-framework/languages/'.'gdpr-framework'.'-'.$locale.'.mo' );
56
-
57
- new \Codelight\GDPR\Updater\Updater();
58
-
59
- new \Codelight\GDPR\Setup();
60
-
61
- }, 0);
1
+ <?php
2
+ /**
3
+ * Set up config object, store plugin URL and path there
4
+ * along with various other items
5
+ */
6
+
7
+ \Codelight\GDPR\Container::getInstance()->bindIf('config', function () {
8
+ return new \Codelight\GDPR\Config([
9
+ 'plugin' => [
10
+ 'url' => plugin_dir_url(__FILE__),
11
+ 'path' => plugin_dir_path(__FILE__),
12
+ 'template_path' => plugin_dir_path(__FILE__) . 'views/',
13
+ ],
14
+ 'help' => [
15
+ 'url' => 'https://www.data443.com/gdpr-framework/',
16
+ ],
17
+ ]);
18
+ }, true);
19
+
20
+ /**
21
+ * Set up the application container
22
+ *
23
+ * @param string $abstract
24
+ * @param array $parameters
25
+ * @param Codelight\GDPR\Container $container
26
+ *
27
+ * @return Codelight\GDPR\Container|mixed
28
+ */
29
+ function gdpr($abstract = null, $parameters = [], Codelight\GDPR\Container $container = null)
30
+ {
31
+ $container = $container ?: Codelight\GDPR\Container::getInstance();
32
+
33
+ if ( ! $abstract) {
34
+ return $container;
35
+ }
36
+
37
+ return $container->bound($abstract)
38
+ ? $container->makeWith($abstract, $parameters)
39
+ : $container->makeWith("gdpr.{$abstract}", $parameters);
40
+ }
41
+
42
+ /**
43
+ * Start the plugin on plugins_loaded at priority 0.
44
+ */
45
+ add_action('plugins_loaded', function () use ($gdpr_error) {
46
+
47
+ load_plugin_textdomain('gdpr-framework', false, basename( dirname( __FILE__ ) ) . '/languages/');
48
+
49
+ $locale = is_admin() && function_exists( 'get_user_locale' ) ? get_user_locale() : get_locale();
50
+
51
+ $locale = apply_filters( 'plugin_locale', $locale, 'gdpr-framework' );
52
+
53
+ unload_textdomain( 'gdpr-framework' );
54
+
55
+ load_textdomain( 'gdpr-framework', get_stylesheet_directory().'/gdpr-framework/languages/'.'gdpr-framework'.'-'.$locale.'.mo' );
56
+
57
+ new \Codelight\GDPR\Updater\Updater();
58
+
59
+ new \Codelight\GDPR\Setup();
60
+
61
+ }, 0);
gdpr-framework.php CHANGED
@@ -1,178 +1,199 @@
1
- <?php
2
-
3
- /**
4
- * Plugin Name: The GDPR Framework
5
- * Plugin URI: https://www.data443.com/gdpr-framework/
6
- * Description: Tools to help make your website GDPR-compliant. Fully documented, extendable and developer-friendly.
7
- * Version: 1.0.42
8
- * Author: Data443
9
- * Author URI: https://www.data443.com/
10
- * Text Domain: gdpr-framework
11
- * Domain Path: /languages
12
- *
13
- * @package WordPress
14
- */
15
-
16
- if (!defined('WPINC'))
17
- {
18
- die;
19
- }
20
-
21
- define('GDPR_FRAMEWORK_VERSION', '1.0.42');
22
-
23
- add_shortcode( 'gdpr_privacy_safe', 'render_privacy_safe' ); // preserve backward compatibility
24
- add_shortcode( 'data443_privacy_safe', 'render_privacy_safe' );
25
-
26
- /**
27
- * Render WHMCS Seal Generator Addon Javascript
28
- */
29
- function render_privacy_safe() {
30
- wp_register_script( 'gdpr_whmcs_seal_generator', gdpr( 'config' )->get( 'plugin.url' ) . 'assets/js/showseal.js', null, true, true );
31
- wp_localize_script(
32
- 'gdpr_whmcs_seal_generator',
33
- 'gdpr_seal_var',
34
- array(
35
- 'gdpr_imageparams' => esc_attr( get_option( 'gdpr_privacy_safe_params' ) ),
36
- 'gdpr_imagecode' => esc_attr( get_option( 'gdpr_privacy_safe_imagecode' ) ),
37
- 'gdpr_showimagefunc' => 'showimage_' . esc_attr( get_option( 'gdpr_privacy_safe_imagecode' ) ),
38
- )
39
- );
40
- wp_enqueue_script( 'gdpr_whmcs_seal_generator', basename( dirname( __FILE__ ) ) . 'assets/js/showseal.js', null, true, true );
41
-
42
- if( get_option( 'gdpr_privacy_safe_backlink' ) === '1' ){
43
- $backlink = '<span style="font-size:12px;">Privacy Management Service by <a href="https://data443.com/products/global-privacy-manager/" target="_blank">Data443</a></span>';
44
- }else{
45
- $backlink = '';
46
- }
47
-
48
- if( get_option( 'gdpr_privacy_safe_imagecode' ) !== '' && get_option( 'gdpr_privacy_safe_params' ) !== '' ){
49
- echo '<a href="javascript:;" onclick="openpopup_' . esc_attr( get_option( 'gdpr_privacy_safe_imagecode' ) ) . '();">
50
- <img src="https://orders.data443.com/seal/seal.php?params=' . esc_attr( get_option( 'gdpr_privacy_safe_params' ) ) . '" alt="" />
51
- </a><br/>' . $backlink;
52
- }else{
53
- echo $backlink;
54
- }
55
- }
56
-
57
- add_action( 'plugins_loaded', 'gdpr_framework_load_textdomain' );
58
- function gdpr_framework_load_textdomain()
59
- {
60
- load_plugin_textdomain( 'gdpr-framework', false, basename( dirname( __FILE__ ) ) . '/languages' );
61
- }
62
- /**
63
- * Our custom post type function
64
- */
65
- function create_custom_post_type() {
66
- $args = array(
67
- 'label' => 'Do Not Sell Info',
68
- 'public' => true,
69
- 'has_archive' => false,
70
- 'exclude_from_search' => true,
71
- 'publicly_queryable' => false,
72
- 'show_ui' => true,
73
- 'hierarchical' => false,
74
- 'rewrite' => array( 'slug' => 'donotsellrequests' ),
75
- 'query_var' => true,
76
- 'supports' => array( 'title', 'editor', 'excerpt', 'custom-fields', 'post-formats' ),
77
- );
78
- register_post_type( 'donotsellrequests', $args );
79
- }
80
- /**
81
- * Hooking up our function to theme setup
82
- */
83
- add_action( 'init', 'create_custom_post_type' );
84
-
85
- /**
86
- * Helper function for prettying up errors
87
- *
88
- * @param string $message
89
- * @param string $subtitle
90
- * @param string $title
91
- */
92
- $gdpr_error = function($message, $subtitle = '', $title = '')
93
- {
94
- $title = $title ?: _x('WordPress GDPR &rsaquo; Error', '(Admin)', 'gdpr-framework');
95
- $message = "<h1>{$title}<br><small>{$subtitle}</small></h1><p>{$message}</p>";
96
- wp_die($message, $title);
97
- };
98
-
99
- /**
100
- * Ensure compatible version of PHP is used
101
- */
102
- if (version_compare(phpversion(), '5.6.0', '<'))
103
- {
104
- $gdpr_error(
105
- _x('You must be using PHP 5.6.0 or greater.', '(Admin)', 'gdpr-framework'),
106
- _x('Invalid PHP version', '(Admin)', 'gdpr-framework')
107
- );
108
- }
109
-
110
- /**
111
- * Ensure compatible version of WordPress is used
112
- */
113
- if (version_compare(get_bloginfo('version'), '4.3', '<'))
114
- {
115
- $gdpr_error(
116
- _x('You must be using WordPress 4.3.0 or greater.', '(Admin)', 'gdpr-framework'),
117
- _x('Invalid WordPress version', '(Admin)', 'gdpr-framework')
118
- );
119
- }
120
-
121
- /**
122
- * Fix issue with redeclate function issue on DIVI theme.
123
- */
124
- function TermAndConditionWithPrivacyContent()
125
- {
126
- return 'I accept the %sTerms and Conditions%s and the %sPrivacy Policy%s';
127
- }
128
-
129
- function gdprfPrivacyPolicy()
130
- {
131
- return 'I accept the %sPrivacy Policy%s';
132
- }
133
-
134
- function gdprfPrivacyPolicyurl($policypage)
135
- {
136
- $policypageURL = get_option( 'gdpr_custom_policy_page' );
137
- if($policypageURL=="")
138
- {
139
- return $policypage;
140
- }else{
141
- return $policypageURL;
142
- }
143
- }
144
-
145
- function gdpr_privacy_accpetance($gdpr_error_massage)
146
- {
147
- return $gdpr_error_massage;
148
- }
149
-
150
- /**
151
- * Save user logs
152
- */
153
- add_action( 'profile_update', 'my_profile_update', 10, 2 );
154
-
155
- function my_profile_update( $user_id, $old_user_data )
156
- {
157
- $data = (array) $old_user_data->data;
158
-
159
- $all_meta_for_user = get_user_meta( $user_id );
160
- if($all_meta_for_user['nickname']['0']){
161
- $data['nickname'] = $all_meta_for_user['nickname']['0'];
162
- }
163
- if($all_meta_for_user['first_name']['0']){
164
- $data['first_name'] = $all_meta_for_user['first_name']['0'];
165
- }
166
- if($all_meta_for_user['last_name']['0']){
167
- $data['last_name'] = $all_meta_for_user['last_name']['0'];
168
- }
169
- if($all_meta_for_user['description']['0']){
170
- $data['description'] = $all_meta_for_user['description']['0'];
171
- }
172
- $userdata = serialize($data);
173
- $model = new \Codelight\GDPR\Components\Consent\UserConsentModel();
174
- $model->savelog($user_id,$userdata);
175
- }
176
-
177
- require_once('gdpr-helper-functions.php');
178
- require_once('bootstrap.php');
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /**
4
+ * Plugin Name: The GDPR Framework
5
+ * Plugin URI: https://www.data443.com/gdpr-framework/
6
+ * Description: Tools to help make your website GDPR-compliant. Fully documented, extendable and developer-friendly.
7
+ * Version: 1.0.43
8
+ * Author: Data443
9
+ * Author URI: https://www.data443.com/
10
+ * Text Domain: gdpr-framework
11
+ * Domain Path: /languages
12
+ *
13
+ * @package WordPress
14
+ */
15
+
16
+ if (!defined('WPINC'))
17
+ {
18
+ die;
19
+ }
20
+
21
+ define('GDPR_FRAMEWORK_VERSION', '1.0.43');
22
+
23
+ add_shortcode( 'gdpr_privacy_safe', 'render_privacy_safe' ); // preserve backward compatibility
24
+ add_shortcode( 'data443_privacy_safe', 'render_privacy_safe' );
25
+
26
+ /**
27
+ * Render WHMCS Seal Generator Addon Javascript
28
+ */
29
+ function render_privacy_safe() {
30
+ wp_register_script( 'gdpr_whmcs_seal_generator', gdpr( 'config' )->get( 'plugin.url' ) . 'assets/js/showseal.js', null, true, true );
31
+ wp_localize_script(
32
+ 'gdpr_whmcs_seal_generator',
33
+ 'gdpr_seal_var',
34
+ array(
35
+ 'gdpr_imageparams' => esc_attr( get_option( 'gdpr_privacy_safe_params' ) ),
36
+ 'gdpr_imagecode' => esc_attr( get_option( 'gdpr_privacy_safe_imagecode' ) ),
37
+ 'gdpr_showimagefunc' => 'showimage_' . esc_attr( get_option( 'gdpr_privacy_safe_imagecode' ) ),
38
+ )
39
+ );
40
+ wp_enqueue_script( 'gdpr_whmcs_seal_generator', basename( dirname( __FILE__ ) ) . 'assets/js/showseal.js', null, true, true );
41
+
42
+ if( get_option( 'gdpr_privacy_safe_backlink' ) === '1' ){
43
+ $backlink = '<span style="font-size:12px;">Privacy Management Service by <a href="https://data443.com/products/global-privacy-manager/" target="_blank">Data443</a></span>';
44
+ }else{
45
+ $backlink = '';
46
+ }
47
+
48
+ if( get_option( 'gdpr_privacy_safe_imagecode' ) !== '' && get_option( 'gdpr_privacy_safe_params' ) !== '' ){
49
+ echo '<a href="javascript:;" onclick="openpopup_' . esc_attr( get_option( 'gdpr_privacy_safe_imagecode' ) ) . '();">
50
+ <img src="https://orders.data443.com/seal/seal.php?params=' . esc_attr( get_option( 'gdpr_privacy_safe_params' ) ) . '" alt="" />
51
+ </a><br/>' . $backlink;
52
+ }else{
53
+ echo $backlink;
54
+ }
55
+ }
56
+
57
+ add_action( 'plugins_loaded', 'gdpr_framework_load_textdomain' );
58
+ function gdpr_framework_load_textdomain()
59
+ {
60
+ load_plugin_textdomain( 'gdpr-framework', false, basename( dirname( __FILE__ ) ) . '/languages' );
61
+ }
62
+ /**
63
+ * Our custom post type function
64
+ */
65
+ function create_custom_post_type()
66
+ {
67
+ $args = array(
68
+ 'label' => 'Do Not Sell Info',
69
+ 'public' => true,
70
+ 'has_archive' => false,
71
+ 'exclude_from_search' => true,
72
+ 'publicly_queryable' => false,
73
+ 'show_in_menu' => false,
74
+ 'menu_position' => 20,
75
+ 'show_ui' => true,
76
+ 'hierarchical' => false,
77
+ 'rewrite' => array( 'slug' => 'donotsellrequests' ),
78
+ 'query_var' => true,
79
+ 'supports' => array( 'title', 'editor', 'excerpt', 'custom-fields', 'post-formats' ),
80
+ );
81
+ register_post_type( 'donotsellrequests', $args );
82
+ }
83
+
84
+ /**
85
+ * Hooking up our function to theme setup
86
+ */
87
+ add_action( 'init', 'create_custom_post_type' );
88
+
89
+ /**
90
+ * Helper function for prettying up errors
91
+ *
92
+ * @param string $message
93
+ * @param string $subtitle
94
+ * @param string $title
95
+ */
96
+ $gdpr_error = function($message, $subtitle = '', $title = '')
97
+ {
98
+ $title = $title ?: _x('WordPress GDPR &rsaquo; Error', '(Admin)', 'gdpr-framework');
99
+ $message = "<h1>{$title}<br><small>{$subtitle}</small></h1><p>{$message}</p>";
100
+ wp_die($message, $title);
101
+ };
102
+
103
+ /**
104
+ * Ensure compatible version of PHP is used
105
+ */
106
+ if (version_compare(phpversion(), '5.6.0', '<'))
107
+ {
108
+ $gdpr_error(
109
+ _x('You must be using PHP 5.6.0 or greater.', '(Admin)', 'gdpr-framework'),
110
+ _x('Invalid PHP version', '(Admin)', 'gdpr-framework')
111
+ );
112
+ }
113
+
114
+ /**
115
+ * Ensure compatible version of WordPress is used
116
+ */
117
+ if (version_compare(get_bloginfo('version'), '4.3', '<'))
118
+ {
119
+ $gdpr_error(
120
+ _x('You must be using WordPress 4.3.0 or greater.', '(Admin)', 'gdpr-framework'),
121
+ _x('Invalid WordPress version', '(Admin)', 'gdpr-framework')
122
+ );
123
+ }
124
+
125
+ /**
126
+ * Fix issue with redeclate function issue on DIVI theme.
127
+ */
128
+ function TermAndConditionWithPrivacyContent()
129
+ {
130
+ return 'I accept the %sTerms and Conditions%s and the %sPrivacy Policy%s';
131
+ }
132
+
133
+ function gdprfPrivacyPolicy()
134
+ {
135
+ return 'I accept the %sPrivacy Policy%s';
136
+ }
137
+
138
+ function gdprfPrivacyPolicyurl($policypage)
139
+ {
140
+ $policypageURL = get_option( 'gdpr_custom_policy_page' );
141
+ if($policypageURL=="")
142
+ {
143
+ return $policypage;
144
+ }else{
145
+ return $policypageURL;
146
+ }
147
+ }
148
+
149
+ function gdpr_privacy_accpetance($gdpr_error_massage)
150
+ {
151
+ return $gdpr_error_massage;
152
+ }
153
+
154
+ /**
155
+ * Save user logs
156
+ */
157
+ add_action( 'profile_update', 'my_profile_update', 10, 2 );
158
+
159
+ function my_profile_update( $user_id, $old_user_data )
160
+ {
161
+ $data = (array) $old_user_data->data;
162
+
163
+ $all_meta_for_user = get_user_meta( $user_id );
164
+ if($all_meta_for_user['nickname']['0']){
165
+ $data['nickname'] = $all_meta_for_user['nickname']['0'];
166
+ }
167
+ if($all_meta_for_user['first_name']['0']){
168
+ $data['first_name'] = $all_meta_for_user['first_name']['0'];
169
+ }
170
+ if($all_meta_for_user['last_name']['0']){
171
+ $data['last_name'] = $all_meta_for_user['last_name']['0'];
172
+ }
173
+ if($all_meta_for_user['description']['0']){
174
+ $data['description'] = $all_meta_for_user['description']['0'];
175
+ }
176
+ $userdata = serialize($data);
177
+ $model = new \Codelight\GDPR\Components\Consent\UserConsentModel();
178
+ $model->savelog($user_id,$userdata);
179
+ }
180
+
181
+ register_activation_hook(__FILE__, function () {
182
+ $model = new \Codelight\GDPR\Components\Consent\UserConsentModel();
183
+ $model->createTable();
184
+ $model->createUserTable();
185
+ if (apply_filters('gdpr/data-subject/anonymize/change_role', true) && ! get_role('anonymous')) {
186
+
187
+ add_role(
188
+ 'anonymous',
189
+ _x('Anonymous', '(Admin)', 'gdpr-framework'),
190
+ array()
191
+ );
192
+ }
193
+
194
+ update_option('gdpr_enable_stylesheet', true);
195
+ update_option('gdpr_enable', true);
196
+ });
197
+
198
+ require_once('gdpr-helper-functions.php');
199
+ require_once('bootstrap.php');
gdpr-helper-functions.php CHANGED
@@ -1,274 +1,246 @@
1
- <?php
2
-
3
- add_action( "wp_ajax_add_consent_accept_cookies", "add_consent_accept_cookies" );
4
- add_action( "wp_ajax_nopriv_add_consent_accept_cookies", "add_consent_accept_cookies" );
5
- add_action( "wp_ajax_add_consent_deny_cookies", "add_consent_deny_cookies" );
6
- add_action( "wp_ajax_nopriv_add_consent_deny_cookies", "add_consent_deny_cookies" );
7
-
8
-
9
-
10
- /**
11
- * ajax function on accept cookie button
12
- */
13
- function add_consent_accept_cookies(){
14
- $referer = $_SERVER['HTTP_REFERER'];
15
- $address = $_SERVER['SERVER_NAME'];
16
- if($referer){
17
- if (strpos($address, $referer) !== 0) {
18
- global $wpdb;
19
- $tableName = $wpdb->prefix . 'gdpr_consent';
20
- $current_user = wp_get_current_user();
21
- $user_email = sanitize_email($current_user->user_email);
22
- if($user_email=="" && isset($_COOKIE['gdpr_key'])){
23
- $email = explode("|",$_COOKIE['gdpr_key']);
24
- $user_email = sanitize_email($email['0']);
25
- }
26
-
27
- $wpdb->insert( $tableName, [
28
- 'email' => $user_email,
29
- 'version' => 1,
30
- 'consent' => 'gdpr_cookie_consent',
31
- 'status' => 1,
32
- 'updated_at' => current_time( 'mysql' ),
33
- 'ip' => sanitize_text_field($_POST['userip']),
34
- ] );
35
- do_action('gdpr_consent_accept_cookies');
36
- wp_die(); // ajax call must die to avoid trailing 0 in your response
37
- }else{
38
- echo "Error !!!";
39
- wp_die();
40
- }
41
- }else{
42
- echo "ERROR !!";
43
- wp_die();
44
- }
45
- }
46
-
47
- /**
48
- * ajax function on deny cookie button
49
- */
50
- function add_consent_deny_cookies(){
51
- $referer = $_SERVER['HTTP_REFERER'];
52
- $address = $_SERVER['SERVER_NAME'];
53
- if($referer){
54
- if (strpos($address, $referer) !== 0) {
55
- do_action('consent_deny_cookies');
56
- wp_die();
57
- }else{
58
- echo "Error !!!";
59
- wp_die();
60
- }
61
- }else{
62
- echo "ERROR !!";
63
- wp_die();
64
- }
65
- }
66
-
67
- /**
68
- * Load dependencies
69
- */
70
- if (!class_exists('\Codelight\GDPR\Container'))
71
- {
72
- if (!file_exists($composer = __DIR__ . '/vendor/autoload.php')) {
73
- $gdpr_error(
74
- _x(
75
- 'You appear to be running a development version of GDPR. You must run <code>composer install</code> from the plugin directory.',
76
- '(Admin)',
77
- 'gdpr-framework'
78
- ),
79
- _x(
80
- 'Autoloader not found.',
81
- '(Admin)',
82
- 'gdpr-framework'
83
- )
84
- );
85
- }
86
- require_once $composer;
87
- }
88
- /**
89
- * Install the database table and custom role
90
- */
91
- register_activation_hook(__FILE__, function () {
92
- $model = new \Codelight\GDPR\Components\Consent\UserConsentModel();
93
- $model->createTable();
94
- $model->createUserTable();
95
- if (apply_filters('gdpr/data-subject/anonymize/change_role', true) && ! get_role('anonymous')) {
96
-
97
- add_role(
98
- 'anonymous',
99
- _x('Anonymous', '(Admin)', 'gdpr-framework'),
100
- array()
101
- );
102
- }
103
-
104
- update_option('gdpr_enable_stylesheet', true);
105
- update_option('gdpr_enable', true);
106
- });
107
-
108
- function popup_gdpr(){
109
-
110
- wp_enqueue_script( 'gdpr-framework-cookieconsent-min-js', gdpr('config')->get('plugin.url') .'assets/cookieconsent.min.js' );
111
-
112
- wp_enqueue_style( 'gdpr-framework-cookieconsent-css',gdpr('config')->get('plugin.url') .'assets/cookieconsent.min.css');
113
-
114
- wp_register_script( 'gdpr-framework-cookieconsent-js', gdpr('config')->get('plugin.url') . 'assets/ajax-cookieconsent.js', array(), false, true );
115
-
116
- $gdpr_policy_page_id = get_option('gdpr_policy_page');
117
- if($gdpr_policy_page_id)
118
- {
119
- $gdpr_policy_page_url = get_permalink($gdpr_policy_page_id);
120
- /*
121
- * FIX FOR MULTILANG.
122
- */
123
- if($gdpr_policy_page_url == ""){
124
- if(isset($gdpr_policy_page_id[substr( get_bloginfo ( 'language' ), 0, 2 )])){
125
- $gdpr_policy_page_url = get_permalink($gdpr_policy_page_id[substr( get_bloginfo ( 'language' ), 0, 2 )]);
126
- }
127
- }
128
- }else{
129
- $gdpr_policy_page_url="";
130
- }
131
- add_filter( 'gdpr_custom_policy_link', 'gdprfPrivacyPolicyurl' );
132
-
133
- $gdpr_policy_page_url = apply_filters( 'gdpr_custom_policy_link',$gdpr_policy_page_url);
134
-
135
- $gdpr_cookie_acceptance_content_url = get_option( 'gdpr_popup_content' );
136
-
137
- $gdpr_cookie_acceptance_content_url = do_shortcode( $gdpr_cookie_acceptance_content_url );
138
-
139
- if($gdpr_cookie_acceptance_content_url != ""){
140
-
141
- $gdpr_message= __($gdpr_cookie_acceptance_content_url, 'gdpr-framework');
142
-
143
- }else{
144
-
145
- $gdpr_message= __('This website uses cookies to ensure you get the best experience on our website.', 'gdpr-framework');
146
- }
147
-
148
- $gdpr_cookie_dismiss_text_url = get_option( 'gdpr_popup_dismiss_text' );
149
-
150
- $gdpr_cookie_dismiss_text_url = do_shortcode( $gdpr_cookie_dismiss_text_url );
151
-
152
- if($gdpr_cookie_dismiss_text_url != ""){
153
-
154
- $gdpr_dismiss= __($gdpr_cookie_dismiss_text_url, 'gdpr-framework');
155
-
156
- }else{
157
-
158
- $gdpr_dismiss = __('Decline', 'gdpr-framework');
159
- }
160
-
161
- $gdpr_cookie_allow_text_url = get_option( 'gdpr_popup_allow_text' );
162
-
163
- $gdpr_cookie_allow_text_url = do_shortcode( $gdpr_cookie_allow_text_url );
164
-
165
- if($gdpr_cookie_dismiss_text_url != ""){
166
-
167
- $gdpr_allow = __($gdpr_cookie_allow_text_url, 'gdpr-framework');
168
-
169
- }else{
170
-
171
- $gdpr_allow = __('Accept', 'gdpr-framework');
172
- }
173
-
174
- $gdpr_cookie_learnmore_text_url = get_option( 'gdpr_popup_learnmore_text' );
175
-
176
- $gdpr_cookie_learnmore_text_url = do_shortcode( $gdpr_cookie_learnmore_text_url );
177
-
178
- if($gdpr_cookie_learnmore_text_url != ""){
179
-
180
- $gdpr_link= __($gdpr_cookie_learnmore_text_url, 'gdpr-framework');
181
-
182
- }else{
183
-
184
- $gdpr_link = __('Learn more', 'gdpr-framework');
185
- }
186
-
187
- $position = get_option( 'gdpr_popup_position' ); #"bottom-left","top","bottom-right",""
188
-
189
- $static = false; # true
190
-
191
- $gdpr_header = get_option( 'gdpr_header' );
192
-
193
- $gdpr_header = do_shortcode($gdpr_header);
194
-
195
- if($gdpr_header != ""){
196
- $gdpr_header= __($gdpr_header, 'gdpr-framework');
197
- }
198
-
199
- $gdpr_popup_background=get_option( 'gdpr_popup_background' );
200
-
201
- $gdpr_popup_text=get_option( 'gdpr_popup_text' );
202
-
203
- $gdpr_button_background=get_option( 'gdpr_popup_button_background' );
204
-
205
- $gdpr_button_text=get_option( 'gdpr_popup_button_text' );
206
-
207
- $gdpr_link_target=get_option( 'gdpr_popup_link_target' );
208
-
209
- if(!$gdpr_link_target){
210
- $gdpr_link_target="_blank";
211
- }
212
-
213
- $gdpr_button_border=get_option( 'gdpr_popup_border_text' );
214
-
215
- if(!$gdpr_popup_background){
216
- $gdpr_popup_background = "#efefef";
217
- }
218
- if(!$gdpr_popup_text){
219
- $gdpr_popup_text = "#404040";
220
- }
221
- if(!$gdpr_button_background){
222
- $gdpr_button_background = "transparent";
223
- }
224
- if(!$gdpr_button_text){
225
- $gdpr_button_text = "#8ec760";
226
- }
227
- if(!$gdpr_button_border){
228
- $gdpr_button_border = "#8ec760";
229
- }
230
-
231
- $gdpr_popup_theme = get_option( 'gdpr_popup_theme' );
232
-
233
- $gdpr_policy_popup = get_option( 'gdpr_policy_popup' );
234
-
235
- $gdpr_hide = get_option('gdpr_onetime_popup');
236
-
237
- $type = "opt-out"; #opt-in,opt-out,""
238
-
239
- $policy_text = __('Cookie Policy', 'gdpr-framework');
240
-
241
- $get_gdpr_data = array('gdpr_url'=>$gdpr_policy_page_url,'gdpr_message'=>$gdpr_message,'gdpr_dismiss'=>$gdpr_dismiss,'gdpr_allow'=>$gdpr_allow,'gdpr_header'=>$gdpr_header,'gdpr_link'=>$gdpr_link,'gdpr_popup_position'=>$position,'gdpr_popup_type'=>$type,'gdpr_popup_static'=>$static,'gdpr_popup_background'=>$gdpr_popup_background,'gdpr_popup_text'=>$gdpr_popup_text,'gdpr_button_background'=>$gdpr_button_background,'gdpr_button_text'=>$gdpr_button_text,'gdpr_button_border'=>$gdpr_button_border,'gdpr_popup_theme'=>$gdpr_popup_theme,'gdpr_hide'=>$gdpr_hide,'gdpr_popup'=>$gdpr_policy_popup,'policy'=>$policy_text,'ajaxurl' => admin_url( 'admin-ajax.php' ),'gdpr_link_target' => $gdpr_link_target);
242
-
243
- wp_localize_script( 'gdpr-framework-cookieconsent-js', 'gdpr_policy_page', $get_gdpr_data );
244
- wp_enqueue_script( 'gdpr-framework-cookieconsent-js', gdpr('config')->get('plugin.url') . 'assets/ajax-cookieconsent.js');
245
-
246
- }
247
- /**
248
- * Cookie acceptance Popup
249
- */
250
- $enabled_gdpf_cookie_popup = get_option('gdpr_enable_popup');
251
- if($enabled_gdpf_cookie_popup)
252
- {
253
- add_action( 'wp_enqueue_scripts', 'frontend_enqueue' );
254
- function frontend_enqueue()
255
- {
256
- wp_enqueue_script('jquery');
257
- if(get_option('gdpr_onetime_popup') == "1" ){
258
- if(!isset($_COOKIE['cookieconsent_status'])){
259
- popup_gdpr();
260
- }
261
- }else{
262
- popup_gdpr();
263
- }
264
- if(gdpr('options')->get('classidocs_integration')){
265
- //wp_enqueue_script( 'gdprdataTables-js', gdpr('config')->get('plugin.url') .'assets/jquery.dataTables.min.js' );
266
- wp_enqueue_script( 'lgpddataTables-js', '//cdn.datatables.net/1.10.21/js/jquery.dataTables.min.js' );
267
- wp_enqueue_script( 'lgpddataTables-js-init', gdpr( 'config' )->get( 'plugin.url' ) . 'assets/js/initdatatable.js', true );
268
- //wp_enqueue_style( 'datatables-css',gdpr('config')->get('plugin.url') .'assets/jquery.dataTables.min.css');
269
- wp_enqueue_style( 'datatables-css', '//cdn.datatables.net/1.10.21/css/jquery.dataTables.min.css' );
270
- }
271
- }
272
- }
273
-
274
- ?>
1
+ <?php
2
+
3
+ add_action( "wp_ajax_add_consent_accept_cookies", "add_consent_accept_cookies" );
4
+ add_action( "wp_ajax_nopriv_add_consent_accept_cookies", "add_consent_accept_cookies" );
5
+ add_action( "wp_ajax_add_consent_deny_cookies", "add_consent_deny_cookies" );
6
+ add_action( "wp_ajax_nopriv_add_consent_deny_cookies", "add_consent_deny_cookies" );
7
+
8
+
9
+
10
+ /**
11
+ * ajax function on accept cookie button
12
+ */
13
+ function add_consent_accept_cookies(){
14
+ $referer = $_SERVER['HTTP_REFERER'];
15
+ $address = $_SERVER['SERVER_NAME'];
16
+ if($referer){
17
+ if (strpos($address, $referer) !== 0) {
18
+ global $wpdb;
19
+ $tableName = $wpdb->prefix . 'gdpr_consent';
20
+ $current_user = wp_get_current_user();
21
+ $user_email = sanitize_email($current_user->user_email);
22
+ if($user_email=="" && isset($_COOKIE['gdpr_key'])){
23
+ $email = explode("|",$_COOKIE['gdpr_key']);
24
+ $user_email = sanitize_email($email['0']);
25
+ }
26
+
27
+ $wpdb->insert( $tableName, [
28
+ 'email' => $user_email,
29
+ 'version' => 1,
30
+ 'consent' => 'gdpr_cookie_consent',
31
+ 'status' => 1,
32
+ 'updated_at' => current_time( 'mysql' ),
33
+ 'ip' => sanitize_text_field($_POST['userip']),
34
+ ] );
35
+ do_action('gdpr_consent_accept_cookies');
36
+ wp_die(); // ajax call must die to avoid trailing 0 in your response
37
+ }else{
38
+ echo "Error !!!";
39
+ wp_die();
40
+ }
41
+ }else{
42
+ echo "ERROR !!";
43
+ wp_die();
44
+ }
45
+ }
46
+
47
+ /**
48
+ * ajax function on deny cookie button
49
+ */
50
+ function add_consent_deny_cookies(){
51
+ $referer = $_SERVER['HTTP_REFERER'];
52
+ $address = $_SERVER['SERVER_NAME'];
53
+ if($referer){
54
+ if (strpos($address, $referer) !== 0) {
55
+ do_action('consent_deny_cookies');
56
+ wp_die();
57
+ }else{
58
+ echo "Error !!!";
59
+ wp_die();
60
+ }
61
+ }else{
62
+ echo "ERROR !!";
63
+ wp_die();
64
+ }
65
+ }
66
+
67
+ /**
68
+ * Load dependencies
69
+ */
70
+ if (!class_exists('\Codelight\GDPR\Container'))
71
+ {
72
+ if (!file_exists($composer = __DIR__ . '/vendor/autoload.php')) {
73
+ $gdpr_error(
74
+ _x(
75
+ 'You appear to be running a development version of GDPR. You must run <code>composer install</code> from the plugin directory.',
76
+ '(Admin)',
77
+ 'gdpr-framework'
78
+ ),
79
+ _x(
80
+ 'Autoloader not found.',
81
+ '(Admin)',
82
+ 'gdpr-framework'
83
+ )
84
+ );
85
+ }
86
+ require_once $composer;
87
+ }
88
+
89
+ function popup_gdpr()
90
+ {
91
+ wp_enqueue_script( 'gdpr-framework-cookieconsent-min-js', gdpr('config')->get('plugin.url') .'assets/cookieconsent.min.js' );
92
+
93
+ wp_enqueue_style( 'gdpr-framework-cookieconsent-css',gdpr('config')->get('plugin.url') .'assets/cookieconsent.min.css');
94
+
95
+ wp_register_script( 'gdpr-framework-cookieconsent-js', gdpr('config')->get('plugin.url') . 'assets/ajax-cookieconsent.js', array(), false, true );
96
+
97
+ $gdpr_policy_page_id = get_option('gdpr_policy_page');
98
+ if($gdpr_policy_page_id)
99
+ {
100
+ $gdpr_policy_page_url = get_permalink($gdpr_policy_page_id);
101
+ /*
102
+ * FIX FOR MULTILANG.
103
+ */
104
+ if($gdpr_policy_page_url == ""){
105
+ if(isset($gdpr_policy_page_id[substr( get_bloginfo ( 'language' ), 0, 2 )])){
106
+ $gdpr_policy_page_url = get_permalink($gdpr_policy_page_id[substr( get_bloginfo ( 'language' ), 0, 2 )]);
107
+ }
108
+ }
109
+ }else{
110
+ $gdpr_policy_page_url="";
111
+ }
112
+ add_filter( 'gdpr_custom_policy_link', 'gdprfPrivacyPolicyurl' );
113
+
114
+ $gdpr_policy_page_url = apply_filters( 'gdpr_custom_policy_link',$gdpr_policy_page_url);
115
+
116
+ $gdpr_cookie_acceptance_content_url = get_option( 'gdpr_popup_content' );
117
+
118
+ $gdpr_cookie_acceptance_content_url = do_shortcode( $gdpr_cookie_acceptance_content_url );
119
+
120
+ if($gdpr_cookie_acceptance_content_url != ""){
121
+
122
+ $gdpr_message= __($gdpr_cookie_acceptance_content_url, 'gdpr-framework');
123
+
124
+ }else{
125
+
126
+ $gdpr_message= __('This website uses cookies to ensure you get the best experience on our website.', 'gdpr-framework');
127
+ }
128
+
129
+ $gdpr_cookie_dismiss_text_url = get_option( 'gdpr_popup_dismiss_text' );
130
+
131
+ $gdpr_cookie_dismiss_text_url = do_shortcode( $gdpr_cookie_dismiss_text_url );
132
+
133
+ if($gdpr_cookie_dismiss_text_url != ""){
134
+
135
+ $gdpr_dismiss= __($gdpr_cookie_dismiss_text_url, 'gdpr-framework');
136
+
137
+ }else{
138
+
139
+ $gdpr_dismiss = __('Decline', 'gdpr-framework');
140
+ }
141
+
142
+ $gdpr_cookie_allow_text_url = get_option( 'gdpr_popup_allow_text' );
143
+
144
+ $gdpr_cookie_allow_text_url = do_shortcode( $gdpr_cookie_allow_text_url );
145
+
146
+ if($gdpr_cookie_dismiss_text_url != ""){
147
+
148
+ $gdpr_allow = __($gdpr_cookie_allow_text_url, 'gdpr-framework');
149
+
150
+ }else{
151
+
152
+ $gdpr_allow = __('Accept', 'gdpr-framework');
153
+ }
154
+
155
+ $gdpr_cookie_learnmore_text_url = get_option( 'gdpr_popup_learnmore_text' );
156
+
157
+ $gdpr_cookie_learnmore_text_url = do_shortcode( $gdpr_cookie_learnmore_text_url );
158
+
159
+ if($gdpr_cookie_learnmore_text_url != ""){
160
+
161
+ $gdpr_link= __($gdpr_cookie_learnmore_text_url, 'gdpr-framework');
162
+
163
+ }else{
164
+
165
+ $gdpr_link = __('Learn more', 'gdpr-framework');
166
+ }
167
+
168
+ $position = get_option( 'gdpr_popup_position' ); #"bottom-left","top","bottom-right",""
169
+
170
+ $static = false; # true
171
+
172
+ $gdpr_header = get_option( 'gdpr_header' );
173
+
174
+ $gdpr_header = do_shortcode($gdpr_header);
175
+
176
+ if($gdpr_header != ""){
177
+ $gdpr_header= __($gdpr_header, 'gdpr-framework');
178
+ }
179
+
180
+ $gdpr_popup_background=get_option( 'gdpr_popup_background' );
181
+
182
+ $gdpr_popup_text=get_option( 'gdpr_popup_text' );
183
+
184
+ $gdpr_button_background=get_option( 'gdpr_popup_button_background' );
185
+
186
+ $gdpr_button_text=get_option( 'gdpr_popup_button_text' );
187
+
188
+ $gdpr_link_target=get_option( 'gdpr_popup_link_target' );
189
+
190
+ if(!$gdpr_link_target){
191
+ $gdpr_link_target="_blank";
192
+ }
193
+
194
+ $gdpr_button_border=get_option( 'gdpr_popup_border_text' );
195
+
196
+ if(!$gdpr_popup_background){
197
+ $gdpr_popup_background = "#efefef";
198
+ }
199
+ if(!$gdpr_popup_text){
200
+ $gdpr_popup_text = "#404040";
201
+ }
202
+ if(!$gdpr_button_background){
203
+ $gdpr_button_background = "transparent";
204
+ }
205
+ if(!$gdpr_button_text){
206
+ $gdpr_button_text = "#8ec760";
207
+ }
208
+ if(!$gdpr_button_border){
209
+ $gdpr_button_border = "#8ec760";
210
+ }
211
+
212
+ $gdpr_popup_theme = get_option( 'gdpr_popup_theme' );
213
+
214
+ $gdpr_policy_popup = get_option( 'gdpr_policy_popup' );
215
+
216
+ $gdpr_hide = get_option('gdpr_onetime_popup');
217
+
218
+ $type = "opt-out"; #opt-in,opt-out,""
219
+
220
+ $policy_text = __('Cookie Policy', 'gdpr-framework');
221
+
222
+ $get_gdpr_data = array('gdpr_url'=>$gdpr_policy_page_url,'gdpr_message'=>$gdpr_message,'gdpr_dismiss'=>$gdpr_dismiss,'gdpr_allow'=>$gdpr_allow,'gdpr_header'=>$gdpr_header,'gdpr_link'=>$gdpr_link,'gdpr_popup_position'=>$position,'gdpr_popup_type'=>$type,'gdpr_popup_static'=>$static,'gdpr_popup_background'=>$gdpr_popup_background,'gdpr_popup_text'=>$gdpr_popup_text,'gdpr_button_background'=>$gdpr_button_background,'gdpr_button_text'=>$gdpr_button_text,'gdpr_button_border'=>$gdpr_button_border,'gdpr_popup_theme'=>$gdpr_popup_theme,'gdpr_hide'=>$gdpr_hide,'gdpr_popup'=>$gdpr_policy_popup,'policy'=>$policy_text,'ajaxurl' => admin_url( 'admin-ajax.php' ),'gdpr_link_target' => $gdpr_link_target);
223
+
224
+ wp_localize_script( 'gdpr-framework-cookieconsent-js', 'gdpr_policy_page', $get_gdpr_data );
225
+ wp_enqueue_script( 'gdpr-framework-cookieconsent-js', gdpr('config')->get('plugin.url') . 'assets/ajax-cookieconsent.js');
226
+
227
+ }
228
+ /**
229
+ * Cookie acceptance Popup
230
+ */
231
+ $enabled_gdpf_cookie_popup = get_option('gdpr_enable_popup');
232
+ if($enabled_gdpf_cookie_popup)
233
+ {
234
+ add_action( 'wp_enqueue_scripts', 'frontend_enqueue' );
235
+ function frontend_enqueue()
236
+ {
237
+ wp_enqueue_script('jquery');
238
+ if(get_option('gdpr_onetime_popup') == "1" ){
239
+ if(!isset($_COOKIE['cookieconsent_status'])){
240
+ popup_gdpr();
241
+ }
242
+ }else{
243
+ popup_gdpr();
244
+ }
245
+ }
246
+ }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/gdpr-framework-bg_BG.po CHANGED
@@ -1,1920 +1,1920 @@
1
- # SOME DESCRIPTIVE TITLE.
2
- # Copyright (C) YEAR Codelight
3
- # This file is distributed under the same license as the The GDPR Framework package.
4
- # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5
- #
6
- msgid ""
7
- msgstr ""
8
- "Project-Id-Version: The GDPR Framework 1.0\n"
9
- "Report-Msgid-Bugs-To: gdpr@codelight.eu\n"
10
- "POT-Creation-Date: 2018-04-16 10:50+0000\n"
11
- "PO-Revision-Date: 2019-09-19 12:36+0530\n"
12
- "Language-Team: \n"
13
- "MIME-Version: 1.0\n"
14
- "Content-Type: text/plain; charset=UTF-8\n"
15
- "Content-Transfer-Encoding: 8bit\n"
16
- "X-Generator: Poedit 1.5.7\n"
17
- "Last-Translator: Zankov Group LTD. <office@zankov-group.com>\n"
18
- "Plural-Forms: nplurals=2; plural=(n != 1);\n"
19
- "Language: bg_BG\n"
20
-
21
- #: gdpr-framework.php:26
22
- msgctxt "(Admin)"
23
- msgid "WordPress GDPR &rsaquo; Error"
24
- msgstr ""
25
-
26
- #: gdpr-framework.php:35
27
- msgctxt "(Admin)"
28
- msgid "Invalid PHP version"
29
- msgstr "Невалидна версия на PHP"
30
-
31
- #: gdpr-framework.php:35
32
- msgctxt "(Admin)"
33
- msgid "You must be using PHP 5.6.33 or greater."
34
- msgstr "Трябва да използвате PHP 5.6.33 или по-нова."
35
-
36
- #: gdpr-framework.php:42
37
- msgctxt "(Admin)"
38
- msgid "Invalid WordPress version"
39
- msgstr "Невалидна версия на WordPress"
40
-
41
- #: gdpr-framework.php:42
42
- msgctxt "(Admin)"
43
- msgid "You must be using WordPress 4.3.0 or greater."
44
- msgstr "Трябва да използвате WordPress 4.3.0 или по-нова."
45
-
46
- #: gdpr-framework.php:52
47
- msgctxt "(Admin)"
48
- msgid ""
49
- "You appear to be running a development version of GDPR. You must run "
50
- "<code>composer install</code> from the plugin directory."
51
- msgstr ""
52
- "Изглежда, че използвате версия за разработка на GDPR. Трябва да стартирате "
53
- "<code> install композитор </ code> от директорията на добавката."
54
-
55
- #: gdpr-framework.php:53
56
- msgctxt "(Admin)"
57
- msgid "Autoloader not found."
58
- msgstr "Autoloader не е намерен."
59
-
60
- #: gdpr-framework.php:115
61
- msgctxt "(Admin)"
62
- msgid "Anonymous"
63
- msgstr "анонимен"
64
-
65
- #: src/Admin/AdminTab.php:115
66
- msgctxt "(Admin)"
67
- msgid "Save"
68
- msgstr "Запази"
69
-
70
- #: src/Admin/AdminTab.php:151
71
- msgctxt "(Admin)"
72
- msgid "Policy generated!"
73
- msgstr "Политиката е генерирана!"
74
-
75
- #: src/Admin/AdminTabGeneral.php:11
76
- msgctxt "(Admin)"
77
- msgid "General"
78
- msgstr "Главни"
79
-
80
- #: src/Admin/AdminTabGeneral.php:38
81
- msgctxt "(Admin)"
82
- msgid "General Settings"
83
- msgstr "Главни настройки"
84
-
85
- #: src/Admin/AdminTabGeneral.php:43
86
- msgctxt "(Admin)"
87
- msgid "Enable Privacy Tools"
88
- msgstr "Включи Политика за лични данни"
89
-
90
- #: src/Admin/AdminTabGeneral.php:53
91
- msgctxt "(Admin)"
92
- msgid "Pages"
93
- msgstr "Страници"
94
-
95
- #: src/Admin/AdminTabGeneral.php:58 src/Admin/WordpressAdmin.php:151
96
- msgctxt "(Admin)"
97
- msgid "Privacy Tools Page"
98
- msgstr "Страница с инструменти "
99
-
100
- #: src/Admin/AdminTabGeneral.php:65 src/Admin/WordpressAdmin.php:147
101
- msgctxt "(Admin)"
102
- msgid "Privacy Policy Page"
103
- msgstr "Страница за лични данни"
104
-
105
- #: src/Admin/AdminTabGeneral.php:72
106
- msgctxt "(Admin)"
107
- msgid "Terms & Conditions Page"
108
- msgstr "Страница за Общи условия"
109
-
110
- #: src/Admin/AdminTabGeneral.php:82
111
- msgctxt "(Admin)"
112
- msgid "View & Export Data"
113
- msgstr "Преглед и Експортиране на данни"
114
-
115
- #: src/Admin/AdminTabGeneral.php:87
116
- msgctxt "(Admin)"
117
- msgid "Export action"
118
- msgstr "Действие за експортиране"
119
-
120
- #: src/Admin/AdminTabGeneral.php:94 src/Admin/AdminTabGeneral.php:133
121
- msgctxt "(Admin)"
122
- msgid "Email to notify"
123
- msgstr "Email за уведомяване"
124
-
125
- #: src/Admin/AdminTabGeneral.php:105
126
- msgctxt "(Admin)"
127
- msgid "Delete & Anonymize Data"
128
- msgstr "Изтриване и Анонимни данни"
129
-
130
- #: src/Admin/AdminTabGeneral.php:110
131
- msgctxt "(Admin)"
132
- msgid "Delete action"
133
- msgstr "Действие при изтриване"
134
-
135
- #: src/Admin/AdminTabGeneral.php:117
136
- msgctxt "(Admin)"
137
- msgid "Delete or reassign content?"
138
- msgstr "Да се ​​изтрие ли или да се присвои съдържание?"
139
-
140
- #: src/Admin/AdminTabGeneral.php:125
141
- msgctxt "(Admin)"
142
- msgid "Reassign content to"
143
- msgstr "Пренасочване на съдържание към"
144
-
145
- #: src/Admin/AdminTabGeneral.php:145
146
- msgctxt "(Admin)"
147
- msgid "Styling"
148
- msgstr "Стил"
149
-
150
- #: src/Admin/AdminTabGeneral.php:150
151
- msgctxt "(Admin)"
152
- msgid "Enable basic styling on Privacy Tools page"
153
- msgstr "Активирайте основния стил на страницата Инструменти за поверителност"
154
-
155
- #: src/Admin/AdminTabGeneral.php:162
156
- msgctxt "(Admin)"
157
- msgid "Compatibility"
158
- msgstr "Съвместимост"
159
-
160
- #: src/Admin/AdminTabGeneral.php:167
161
- msgctxt "(Admin)"
162
- msgid "Enable automatic theme compatibility"
163
- msgstr "Активирайте автоматичната съвместимост на темите"
164
-
165
- #: src/Admin/AdminTabGeneral.php:184 src/Admin/AdminTabGeneral.php:200
166
- #: src/Admin/AdminTabGeneral.php:213 src/Admin/AdminTabGeneral.php:252
167
- #: views/installer/steps/configuration-settings.php:62
168
- #, fuzzy
169
- msgctxt "(Admin)"
170
- msgid "&mdash; Select &mdash;"
171
- msgstr "Избери размера на бутона."
172
-
173
- #: src/Admin/WordpressAdmin.php:65
174
- msgctxt "(Admin)"
175
- msgid "Privacy & GDPR Settings"
176
- msgstr "Настройки за поверителност и GDPR"
177
-
178
- #: src/Admin/WordpressAdmin.php:66
179
- msgctxt "(Admin)"
180
- msgid "Privacy"
181
- msgstr "поверителност"
182
-
183
- #: src/Components/Consent/AdminTabConsent.php:30
184
- #: src/Components/Consent/AdminTabConsent.php:49
185
- msgctxt "(Admin)"
186
- msgid "Consent"
187
- msgstr "Съгласие"
188
-
189
- #: src/Components/Consent/AdminTabConsent.php:157
190
- msgctxt "(Admin)"
191
- msgid "Consent slug is a required field!"
192
- msgstr "Консултантската слуз е задължително поле!"
193
-
194
- #: src/Components/Consent/AdminTabConsent.php:162
195
- msgctxt "(Admin)"
196
- msgid ""
197
- "You may only use alphanumeric characters, dash and underscore in the consent "
198
- "slug field."
199
- msgstr ""
200
- "Можете да използвате само буквено-цифрени символи, тире и долни черти в "
201
- "полето за съгласие за складиране."
202
-
203
- #: src/Components/Consent/AdminTabConsent.php:167
204
- msgctxt "(Admin)"
205
- msgid "Consent title is a required field!"
206
- msgstr "Типовото съгласие е задължително поле!"
207
-
208
- #: src/Components/Consent/ConsentManager.php:46
209
- #: views/modules/contact-form-7/content-privacy.php:2
210
- #: views/modules/wordpress-comments/terms-checkbox.php:14
211
- #: views/modules/wordpress-user/registration-terms-checkbox.php:15
212
- #, php-format
213
- msgid "I accept the %sPrivacy Policy%s"
214
- msgstr "Приемам %sPrivacy Policy%s"
215
-
216
- #: src/Components/Consent/ConsentManager.php:50
217
- #: src/Components/Consent/ConsentManager.php:69
218
- msgctxt "(Admin)"
219
- msgid ""
220
- "This consent is not visible by default. If someone wishes to withdraw it, "
221
- "they should simply request to delete all their data."
222
- msgstr ""
223
- "Това съгласие не се вижда по подразбиране. Ако някой желае да го оттегли, "
224
- "той трябва просто да поиска да изтрие всичките си данни."
225
-
226
- #: src/Components/Consent/ConsentManager.php:65
227
- #, php-format
228
- msgid "I accept the %sTerms & Conditions%s"
229
- msgstr "Приемам %sTerms & Conditions%s"
230
-
231
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:19
232
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:61
233
- #: views/admin/privacy-policy/generated.php:1 views/installer/header.php:41
234
- msgctxt "(Admin)"
235
- msgid "Privacy Policy"
236
- msgstr "Политика за Лични данни"
237
-
238
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:70
239
- msgctxt "(Admin)"
240
- msgid "Company information"
241
- msgstr "Информация за Фирмата"
242
-
243
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:75
244
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:209
245
- msgctxt "(Admin)"
246
- msgid "Company Name"
247
- msgstr "Име на Фирмата"
248
-
249
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:82
250
- msgctxt "(Admin)"
251
- msgid "Company Email"
252
- msgstr "Фирмен Email"
253
-
254
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:89
255
- msgctxt "(Admin)"
256
- msgid "Company Location"
257
- msgstr "Местоположение на Фирмата"
258
-
259
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:105
260
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:245
261
- msgctxt "(Admin)"
262
- msgid "Representative Contact Name"
263
- msgstr "Представително име за контакт"
264
-
265
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:112
266
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:252
267
- msgctxt "(Admin)"
268
- msgid "Representative Contact Email"
269
- msgstr "Представителни имейл за контакт"
270
-
271
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:119
272
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:259
273
- msgctxt "(Admin)"
274
- msgid "Representative Contact Phone"
275
- msgstr "Представителна контактна телефония"
276
-
277
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:135
278
- msgctxt "(Admin)"
279
- msgid "Data Protection Authority"
280
- msgstr "Орган за защита на данните"
281
-
282
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:141
283
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:286
284
- msgctxt "(Admin)"
285
- msgid "Data Protection Authority Website"
286
- msgstr "Уебсайт на Органа за защита на данните"
287
-
288
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:148
289
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:293
290
- msgctxt "(Admin)"
291
- msgid "Data Protection Authority Email"
292
- msgstr "Имейл за защитата на данни"
293
-
294
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:155
295
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:300
296
- msgctxt "(Admin)"
297
- msgid "Data Protection Authority Phone"
298
- msgstr "Орган за защита на данните"
299
-
300
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:165
301
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:175
302
- msgctxt "(Admin)"
303
- msgid "Data Protection Officer"
304
- msgstr "Служителя за защита на данните"
305
-
306
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:168
307
- msgctxt "(Admin)"
308
- msgid "Knowledge base: Do I need to appoint a Data Protection Officer?"
309
- msgstr "База знания: Трябва ли да назнача служител по защита на данните?"
310
-
311
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:182
312
- msgctxt "(Admin)"
313
- msgid "Data Protection Officer Name"
314
- msgstr "Име на Служителя по защита на данните"
315
-
316
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:190
317
- msgctxt "(Admin)"
318
- msgid "Data Protection Officer Email"
319
- msgstr "Email на Служителя по защита на данните"
320
-
321
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:216
322
- msgctxt "(Admin)"
323
- msgid "Contact Email"
324
- msgstr "Email за конакт"
325
-
326
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:235
327
- msgctxt "(Admin)"
328
- msgid "Representative Contact"
329
- msgstr "Представителен контакти"
330
-
331
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:238
332
- msgctxt "(Admin)"
333
- msgid "Knowledge base: Do I need to appoint an EU-based representative?"
334
- msgstr "База знания: Трябва ли да назнача представител на ЕС?"
335
-
336
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:317
337
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:324
338
- msgctxt "(Admin)"
339
- msgid "DPO Name"
340
- msgstr "ДПО Име"
341
-
342
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:420
343
- msgctxt "(Admin)"
344
- msgid "Save & Generate Policy"
345
- msgstr "Запазване и генериране на правила"
346
-
347
- #: src/Components/PrivacyPolicy/PrivacyPolicy.php:82
348
- #: src/Installer/Installer.php:271 src/Installer/Steps/PolicySettings.php:199
349
- #: views/themes/storefront/footer.php:3
350
- #: views/themes/twentyseventeen/footer.php:3
351
- #: views/themes/twentysixteen/footer.php:4
352
- msgid "Privacy Policy"
353
- msgstr "Политика за Лични данни"
354
-
355
- #: src/Components/PrivacyToolsPage/PrivacyToolsPageShortcode.php:19
356
- msgid "This page is currently disabled."
357
- msgstr "Тази страница не е активна."
358
-
359
- #: src/Components/PrivacyToolsPage/PrivacyToolsPageShortcode.php:35
360
- #: src/Installer/Installer.php:279
361
- #: src/Installer/Steps/ConfigurationPages.php:55
362
- #: views/themes/storefront/footer.php:7
363
- #: views/themes/twentyseventeen/footer.php:7
364
- #: views/themes/twentysixteen/footer.php:9
365
- msgid "Privacy Tools"
366
- msgstr "Управление на Лични данни"
367
-
368
- #: src/Components/Support/AdminTabSupport.php:13
369
- #: src/Components/Support/AdminTabSupport.php:20
370
- msgctxt "(Admin)"
371
- msgid "Support"
372
- msgstr ""
373
-
374
- #: src/Components/WordpressComments/WordpressComments.php:90
375
- #, php-format
376
- msgid "%sERROR:%s You need to accept the privacy policy to post a comment."
377
- msgstr ""
378
- "%sГРЕШКА:%s Трябва да приемете декларацията за поверителност, за да "
379
- "публикувате коментар."
380
-
381
- #: src/Components/WordpressUser/Controllers/DashboardDataPageController.php:54
382
- #: views/privacy-tools/notices.php:19
383
- msgid "We have received your request and will reply within 30 days."
384
- msgstr "Получихме Вашето искане и ще отговорим в рамките на 30 дни."
385
-
386
- #: src/Components/WordpressUser/Controllers/DashboardDataPageController.php:59
387
- #: views/privacy-tools/notices.php:15
388
- msgid "Consent withdrawn."
389
- msgstr "Съгласието е оттеглено."
390
-
391
- #: src/Components/WordpressUser/RegistrationForm.php:42
392
- msgid "<strong>ERROR</strong>: You must accept the terms and conditions."
393
- msgstr "<strong>ERROR</strong>: Трябва да приемете Общите условия."
394
-
395
- #: src/Components/WordpressUser/WordpressUser.php:63
396
- #: src/Components/WordpressUser/WordpressUser.php:64
397
- #: views/modules/wordpress-user/dashboard/data-page/header.php:2
398
- msgctxt "(Admin)"
399
- msgid "Privacy Tools"
400
- msgstr "Управление на Лични данни"
401
-
402
- #: src/DataSubject/AdminTabDataSubject.php:27
403
- #: src/DataSubject/AdminTabDataSubject.php:41
404
- msgctxt "(Admin)"
405
- msgid "Data Subjects"
406
- msgstr "Субекти на данни"
407
-
408
- #: src/DataSubject/DataRepository.php:143
409
- msgid "Data exported"
410
- msgstr "Данните са Експортирани"
411
-
412
- #: src/DataSubject/DataRepository.php:158
413
- msgid "Data export request"
414
- msgstr "Заявка за Експорт на данни"
415
-
416
- #: src/DataSubject/DataRepository.php:171
417
- msgid "Data removed"
418
- msgstr "Данните са премахнати"
419
-
420
- #: src/DataSubject/DataRepository.php:186
421
- msgid "Data removal request"
422
- msgstr "Заявка за премахване на Данни"
423
-
424
- #: src/DataSubject/DataSubjectIdentificator.php:65
425
- #: src/DataSubject/DataSubjectIdentificator.php:82
426
- msgid "Your personal data on"
427
- msgstr "Вашите лични данни за"
428
-
429
- #: src/Helpers.php:27
430
- msgctxt "(Admin)"
431
- msgid "Austria"
432
- msgstr ""
433
-
434
- #: src/Helpers.php:28
435
- msgctxt "(Admin)"
436
- msgid "Belgium"
437
- msgstr ""
438
-
439
- #: src/Helpers.php:29
440
- msgctxt "(Admin)"
441
- msgid "Bulgaria"
442
- msgstr ""
443
-
444
- #: src/Helpers.php:30
445
- msgctxt "(Admin)"
446
- msgid "Croatia"
447
- msgstr ""
448
-
449
- #: src/Helpers.php:31
450
- msgctxt "(Admin)"
451
- msgid "Cyprus"
452
- msgstr ""
453
-
454
- #: src/Helpers.php:32
455
- msgctxt "(Admin)"
456
- msgid "Czech Republic"
457
- msgstr ""
458
-
459
- #: src/Helpers.php:33
460
- msgctxt "(Admin)"
461
- msgid "Denmark"
462
- msgstr ""
463
-
464
- #: src/Helpers.php:34
465
- msgctxt "(Admin)"
466
- msgid "Estonia"
467
- msgstr ""
468
-
469
- #: src/Helpers.php:35
470
- msgctxt "(Admin)"
471
- msgid "Finland"
472
- msgstr ""
473
-
474
- #: src/Helpers.php:36
475
- msgctxt "(Admin)"
476
- msgid "France"
477
- msgstr ""
478
-
479
- #: src/Helpers.php:37
480
- msgctxt "(Admin)"
481
- msgid "Germany"
482
- msgstr ""
483
-
484
- #: src/Helpers.php:38
485
- msgctxt "(Admin)"
486
- msgid "Greece"
487
- msgstr ""
488
-
489
- #: src/Helpers.php:39
490
- msgctxt "(Admin)"
491
- msgid "Hungary"
492
- msgstr ""
493
-
494
- #: src/Helpers.php:40
495
- msgctxt "(Admin)"
496
- msgid "Ireland"
497
- msgstr ""
498
-
499
- #: src/Helpers.php:41
500
- msgctxt "(Admin)"
501
- msgid "Italy"
502
- msgstr ""
503
-
504
- #: src/Helpers.php:42
505
- msgctxt "(Admin)"
506
- msgid "Latvia"
507
- msgstr ""
508
-
509
- #: src/Helpers.php:43
510
- msgctxt "(Admin)"
511
- msgid "Lithuania"
512
- msgstr ""
513
-
514
- #: src/Helpers.php:44
515
- msgctxt "(Admin)"
516
- msgid "Luxembourg"
517
- msgstr ""
518
-
519
- #: src/Helpers.php:45
520
- msgctxt "(Admin)"
521
- msgid "Malta"
522
- msgstr ""
523
-
524
- #: src/Helpers.php:46
525
- msgctxt "(Admin)"
526
- msgid "Netherlands"
527
- msgstr ""
528
-
529
- #: src/Helpers.php:47
530
- msgctxt "(Admin)"
531
- msgid "Poland"
532
- msgstr ""
533
-
534
- #: src/Helpers.php:48
535
- msgctxt "(Admin)"
536
- msgid "Portugal"
537
- msgstr ""
538
-
539
- #: src/Helpers.php:49
540
- msgctxt "(Admin)"
541
- msgid "Romania"
542
- msgstr ""
543
-
544
- #: src/Helpers.php:50
545
- msgctxt "(Admin)"
546
- msgid "Slovakia"
547
- msgstr ""
548
-
549
- #: src/Helpers.php:51
550
- msgctxt "(Admin)"
551
- msgid "Slovenia"
552
- msgstr ""
553
-
554
- #: src/Helpers.php:52
555
- msgctxt "(Admin)"
556
- msgid "Spain"
557
- msgstr ""
558
-
559
- #: src/Helpers.php:53
560
- msgctxt "(Admin)"
561
- msgid "Sweden"
562
- msgstr ""
563
-
564
- #: src/Helpers.php:54
565
- msgctxt "(Admin)"
566
- msgid "United Kingdom"
567
- msgstr ""
568
-
569
- #: src/Helpers.php:69
570
- msgctxt "(Admin)"
571
- msgid "Iceland"
572
- msgstr ""
573
-
574
- #: src/Helpers.php:70
575
- msgctxt "(Admin)"
576
- msgid "Norway"
577
- msgstr ""
578
-
579
- #: src/Helpers.php:71
580
- msgctxt "(Admin)"
581
- msgid "Liechtenstein"
582
- msgstr ""
583
-
584
- #: src/Helpers.php:72
585
- msgctxt "(Admin)"
586
- msgid "Switzerland"
587
- msgstr ""
588
-
589
- #: src/Helpers.php:73
590
- msgctxt "(Admin)"
591
- msgid "United States"
592
- msgstr ""
593
-
594
- #: src/Helpers.php:74
595
- msgctxt "(Admin)"
596
- msgid "Rest of the world"
597
- msgstr "Останалата част от света"
598
-
599
- #: src/Helpers.php:145
600
- msgid "An error has occurred. Please contact the site administrator."
601
- msgstr "Възникна грешка. Моля, свържете се с администратора на сайта."
602
-
603
- #: src/Installer/Installer.php:135
604
- msgctxt "(Admin)"
605
- msgid "Setup Wizard"
606
- msgstr "Помощник за инсталиране"
607
-
608
- #: src/Installer/Steps/ConfigurationPages.php:23
609
- #: src/Installer/Steps/PolicySettings.php:23
610
- #: src/Installer/Steps/PolicySettings.php:48
611
- msgctxt "(Admin)"
612
- msgid "&mdash; Create a new page &mdash;"
613
- msgstr "&mdash; Създайте нова страница &mdash;"
614
-
615
- #: src/Installer/Steps/PolicySettings.php:38
616
- msgctxt "(Admin)"
617
- msgid ""
618
- "We have automatically selected your WooCommerce Terms & Conditions page."
619
- msgstr ""
620
- "Ние автоматично сме избрали Вашата Условия за Условия за търговия на "
621
- "WooCommerce."
622
-
623
- #: src/Modules/ContactForm7/ContactForm7.php:35
624
- msgctxt "(Admin)"
625
- msgid "gdpr terms txt"
626
- msgstr "gdpr термини txt"
627
-
628
- #: src/Router.php:80 src/Router.php:92 src/Router.php:125 src/Router.php:141
629
- #, php-format
630
- msgid "Nonce error for action \"%s\". Please go back and try again!"
631
- msgstr "Nonce error for action \"%s\". Please go back and try again!"
632
-
633
- #: src/Router.php:149
634
- msgctxt "(Admin)"
635
- msgid "You do not have the required permissions to perform this action!"
636
- msgstr "Нямате необходимите разрешения за изпълнение на това действие!"
637
-
638
- #: views/admin/consent.php:3
639
- msgctxt "(Admin)"
640
- msgid "Default consent types"
641
- msgstr "Стандартни типове съгласие"
642
-
643
- #: views/admin/consent.php:4
644
- msgctxt "(Admin)"
645
- msgid ""
646
- "These are the consent types that have been automatically registered by the "
647
- "framework or a plugin."
648
- msgstr ""
649
- "Това са типовете съгласие, които са били автоматично регистрирани от рамката "
650
- "или приставката."
651
-
652
- #: views/admin/consent.php:7 views/admin/consent.php:52
653
- msgctxt "(Admin)"
654
- msgid "Slug"
655
- msgstr "плужек"
656
-
657
- #: views/admin/consent.php:8 views/admin/consent.php:38
658
- #: views/admin/consent.php:60
659
- msgctxt "(Admin)"
660
- msgid "Title"
661
- msgstr "Заглавие"
662
-
663
- #: views/admin/consent.php:9 views/admin/consent.php:41
664
- #: views/admin/consent.php:63
665
- msgctxt "(Admin)"
666
- msgid "Description"
667
- msgstr "Описание"
668
-
669
- #: views/admin/consent.php:10
670
- msgctxt "(Admin)"
671
- msgid "Visibility"
672
- msgstr "Видимост"
673
-
674
- #: views/admin/consent.php:18
675
- msgctxt "(Admin)"
676
- msgid "Visible"
677
- msgstr "Видимо"
678
-
679
- #: views/admin/consent.php:20
680
- msgctxt "(Admin)"
681
- msgid "Hidden"
682
- msgstr "Скрито"
683
-
684
- #: views/admin/consent.php:29
685
- msgctxt "(Admin)"
686
- msgid "Custom consent types"
687
- msgstr "Типове персонализирано съгласие"
688
-
689
- #: views/admin/consent.php:30
690
- msgctxt "(Admin)"
691
- msgid ""
692
- "Here you can add custom consent types to track. They will not be used "
693
- "anywhere by default - you will need to build an integration for each of them."
694
- msgstr ""
695
- "Тук можете да добавяте персонализирани типове съгласие за проследяване. Те "
696
- "няма да бъдат използвани никъде по подразбиране - ще трябва да изградите "
697
- "интеграция за всеки от тях."
698
-
699
- #: views/admin/consent.php:35
700
- msgctxt "(Admin)"
701
- msgid "Machine-readable slug"
702
- msgstr "Машинно четене"
703
-
704
- #: views/admin/consent.php:44 views/admin/consent.php:68
705
- msgctxt "(Admin)"
706
- msgid "Visible?"
707
- msgstr "Видим?"
708
-
709
- #: views/admin/consent.php:72
710
- msgctxt "(Admin)"
711
- msgid "Remove"
712
- msgstr "Премахни"
713
-
714
- #: views/admin/consent.php:93
715
- msgctxt "(Admin)"
716
- msgid "Additional info"
717
- msgstr "ПОВЕЧЕ ИНФОРМАЦИЯ"
718
-
719
- #: views/admin/consent.php:95
720
- msgctxt "(Admin)"
721
- msgid ""
722
- "This text will be displayed to your data subjects on the Privacy Tools page."
723
- msgstr ""
724
- "Този текст ще се покаже на субектите Ви на данни на страницата Инструменти "
725
- "за поверителност."
726
-
727
- #: views/admin/data-subjects/search-form.php:2
728
- msgctxt "(Admin)"
729
- msgid ""
730
- "On this page, you can find which data subjects personal data you are storing "
731
- "and download, export or delete it."
732
- msgstr ""
733
- "На тази страница можете да намерите кои данни за лични данни съхранявате и "
734
- "изтегляте, експортирате или изтривате."
735
-
736
- #: views/admin/data-subjects/search-form.php:10
737
- msgctxt "(Admin)"
738
- msgid "Find data subject by email"
739
- msgstr "Намери данни по Email"
740
-
741
- #: views/admin/data-subjects/search-form.php:11
742
- msgctxt "(Admin)"
743
- msgid "Email address"
744
- msgstr "Email адрес"
745
-
746
- #: views/admin/data-subjects/search-form.php:16
747
- msgctxt "(Admin)"
748
- msgid "Search"
749
- msgstr "ТЪРСИ"
750
-
751
- #: views/admin/data-subjects/search-results.php:7
752
- msgctxt "(Admin)"
753
- msgid "Username"
754
- msgstr "ПОТРЕБИТЕЛСКО ИМЕ"
755
-
756
- #: views/admin/data-subjects/search-results.php:12
757
- msgctxt "(Admin)"
758
- msgid "is not a registered user."
759
- msgstr "не е регистриран потребител."
760
-
761
- #: views/admin/data-subjects/search-results.php:16
762
- msgctxt "(Admin)"
763
- msgid "Download data (html)"
764
- msgstr "Свали данните (html) формат"
765
-
766
- #: views/admin/data-subjects/search-results.php:17
767
- msgctxt "(Admin)"
768
- msgid "Export data (json)"
769
- msgstr "Свали данните (json) формат"
770
-
771
- #: views/admin/data-subjects/search-results.php:21
772
- msgctxt "(Admin)"
773
- msgid ""
774
- "This user has admin capabilities. Deleting data via this interface is "
775
- "disabled."
776
- msgstr ""
777
- "Този потребител има администраторски възможности. Изтриването на данни през "
778
- "този интерфейс е деактивирано."
779
-
780
- #: views/admin/data-subjects/search-results.php:24
781
- msgctxt "(Admin)"
782
- msgid "Anonymize data"
783
- msgstr "Анонимни данни"
784
-
785
- #: views/admin/data-subjects/search-results.php:25
786
- msgctxt "(Admin)"
787
- msgid "Delete data"
788
- msgstr "Изтрий данните"
789
-
790
- #: views/admin/data-subjects/search-results.php:29
791
- msgctxt "(Admin)"
792
- msgid "No data found!"
793
- msgstr "Нищо не е намерено"
794
-
795
- #: views/admin/general/delete-action-email.php:5
796
- #: views/admin/general/export-action-email.php:5
797
- #: views/installer/steps/configuration-settings.php:29
798
- #: views/installer/steps/configuration-settings.php:79
799
- msgid "Email address"
800
- msgstr "Email адрес"
801
-
802
- #: views/admin/general/delete-action-reassign.php:3
803
- #: views/installer/steps/configuration-settings.php:50
804
- msgctxt "(Admin)"
805
- msgid "Delete content"
806
- msgstr "Изтриване на съдържание"
807
-
808
- #: views/admin/general/delete-action-reassign.php:6
809
- #: views/installer/steps/configuration-settings.php:53
810
- msgctxt "(Admin)"
811
- msgid "Reassign content to a user"
812
- msgstr "Преназначаване съдържание на потребител"
813
-
814
- #: views/admin/general/delete-action-reassign.php:10
815
- msgctxt "(Admin)"
816
- msgid ""
817
- "If the user has submitted any content on your site, should it be deleted or "
818
- "reassigned to another user?"
819
- msgstr ""
820
- "Ако потребителят е изпратил съдържание на сайта Ви, трябва ли да бъде изтрит "
821
- "или превъзложен на друг потребител?"
822
-
823
- #: views/admin/general/description-data-page.php:2
824
- msgctxt "(Admin)"
825
- msgid ""
826
- "Select the page where users can go to control their data. This page must "
827
- "contain the [gdpr_privacy_tools] shortcode."
828
- msgstr ""
829
- "Изберете страницата, на която потребителите могат да отидат да контролират "
830
- "данните си. Тази страница трябва да съдържа този код [gdpr_privacy_tools]"
831
-
832
- #: views/admin/general/enable.php:9
833
- msgctxt "(Admin)"
834
- msgid "Enable the view, export and forget functionality for users and visitors"
835
- msgstr ""
836
- "Активирайте изгледа, експортирайте и забравете функционалността на "
837
- "потребителите и посетителите"
838
-
839
- #: views/admin/general/enable.php:12
840
- msgctxt "(Admin)"
841
- msgid ""
842
- "Enable the Privacy Tools page on front-end and dashboard. This allows "
843
- "visitors to request viewing and deleting their personal data and withdraw "
844
- "consents."
845
- msgstr ""
846
- "Активирайте страницата Инструменти за поверителност на предния и на таблото "
847
- "за управление. Това позволява на посетителите да изискват преглеждането и "
848
- "изтриването на личните им данни и да оттеглят съгласието си."
849
-
850
- #: views/admin/general/theme-compatibility.php:9
851
- #: views/installer/steps/integrations.php:21
852
- msgctxt "(Admin)"
853
- msgid ""
854
- "Automatically add Privacy Policy and Privacy Tools links to your site footer."
855
- msgstr ""
856
- "Автоматично добавяне на страниците Политика за лични данни и Управление на "
857
- "лични данни в долната част на сайта."
858
-
859
- #: views/admin/notices/header.php:4 views/admin/settings-page.php:3
860
- #: views/installer/header.php:23
861
- msgctxt "(Admin)"
862
- msgid "The GDPR Framework"
863
- msgstr "Рамката на GDPR"
864
-
865
- #: views/admin/notices/helper-autoinstall.php:2
866
- msgctxt "(Admin)"
867
- msgid ""
868
- "A Privacy Policy page has been created, but it is empty. You can generate a "
869
- "policy template on this page."
870
- msgstr ""
871
- "Страницата с правила за поверителност е създадена, но е празна. Можете да "
872
- "генерирате шаблон за правила на тази страница."
873
-
874
- #: views/admin/notices/helper-policy.php:2
875
- msgctxt "(Admin)"
876
- msgid ""
877
- "Heads up - your Privacy Policy still requires some attention. Find the "
878
- "places marked with [TODO] and replace them with real content!"
879
- msgstr ""
880
- "Глави - Вашата политика за поверителност все още изисква известно внимание. "
881
- "Намерете местата, маркирани с [TODO], и ги заменете с истинско съдържание!"
882
-
883
- #: views/admin/notices/helper-tools.php:2
884
- msgctxt "(Admin)"
885
- msgid ""
886
- "The contents of this page should contain the [gdpr_privacy_tools] shortcode."
887
- msgstr ""
888
- "Съдържанието на тази страница трябва да съдържа краткия код "
889
- "[gdpr_privacy_tools]."
890
-
891
- #: views/admin/privacy-policy/description-policy-page.php:2
892
- msgctxt "(Admin)"
893
- msgid "Select the page which will contain your Privacy Policy"
894
- msgstr "Изберете страницата, която ще съдържа вашата Политика за Лични данни"
895
-
896
- #: views/admin/privacy-policy/generated.php:3
897
- msgctxt "(Admin)"
898
- msgid "Your Privacy Policy has been generated."
899
- msgstr "Политиката за Лични данни беше генерирана."
900
-
901
- #: views/admin/privacy-policy/generated.php:20
902
- msgctxt "(Admin)"
903
- msgid "&laquo; Back"
904
- msgstr "&laquo; Назад"
905
-
906
- #: views/admin/privacy-policy/header.php:2
907
- msgctxt "(Admin)"
908
- msgid ""
909
- "This page allows you to generate a Privacy Policy based on the information "
910
- "you entered below."
911
- msgstr ""
912
- "Тази страница ви позволява да генерирате Политика за личните данни въз "
913
- "основа на въведената по-долу информация."
914
-
915
- #: views/admin/settings-page.php:31
916
- #, php-format
917
- msgctxt "(Admin)"
918
- msgid "The GDPR Framework. Built with &#9829; by %sCodelight%s."
919
- msgstr "Рамката на GDPR. Построен с & # 9829; от% sЦветна светлина% s."
920
-
921
- #: views/admin/support/contents.php:5 views/installer/steps/finish.php:10
922
- msgctxt "(Admin)"
923
- msgid "Need more info?"
924
- msgstr "Нуждаете се от повече информация?"
925
-
926
- #: views/admin/support/contents.php:11 views/installer/steps/finish.php:16
927
- msgctxt "(Admin)"
928
- msgid "Site Owner's guide to GDPR"
929
- msgstr "Ръководство на собственика на сайта за GDPR"
930
-
931
- #: views/admin/support/contents.php:14 views/installer/steps/finish.php:19
932
- msgctxt "(Admin)"
933
- msgid "Read the full guide on GDPR compliance."
934
- msgstr "Прочетете пълния наръчник за съответствие с GDPR."
935
-
936
- #: views/admin/support/contents.php:20 views/installer/steps/finish.php:25
937
- msgctxt "(Admin)"
938
- msgid "Knowledge base"
939
- msgstr "Знание"
940
-
941
- #: views/admin/support/contents.php:23 views/installer/steps/finish.php:28
942
- msgctxt "(Admin)"
943
- msgid "Check out the knowledge base for common questions and answers."
944
- msgstr "Проверете базата знания за често срещани въпроси и отговори."
945
-
946
- #: views/admin/support/contents.php:29 views/installer/steps/finish.php:34
947
- msgctxt "(Admin)"
948
- msgid "Developer's guide to GDPR"
949
- msgstr "Ръководство за програмисти за GDPR"
950
-
951
- #: views/admin/support/contents.php:32 views/installer/steps/finish.php:37
952
- msgctxt "(Admin)"
953
- msgid "We have a thorough guide to help making custom sites compliant."
954
- msgstr ""
955
- "Имаме задълбочено ръководство, което ни помага да направим персонализираните "
956
- "сайтове съвместими."
957
-
958
- #: views/admin/support/contents.php:40 views/installer/steps/finish.php:45
959
- msgctxt "(Admin)"
960
- msgid "Need help?"
961
- msgstr "Нужда от помощ?"
962
-
963
- #: views/admin/support/contents.php:46 views/installer/steps/finish.php:51
964
- msgctxt "(Admin)"
965
- msgid "Submit a support request"
966
- msgstr "Изпратете заявка за поддръжка"
967
-
968
- #: views/admin/support/contents.php:49 views/installer/steps/finish.php:54
969
- msgctxt "(Admin)"
970
- msgid ""
971
- "Found a bug or problem with the plugin? Post in the wordpress.org support "
972
- "forum."
973
- msgstr ""
974
- "Намерихте ли бъг или проблем с приставката? Публикувайте във форума за "
975
- "поддръжка на wordpress.org."
976
-
977
- #: views/admin/support/contents.php:55 views/installer/steps/finish.php:60
978
- msgctxt "(Admin)"
979
- msgid "Request a consultation"
980
- msgstr "Поискайте консултация"
981
-
982
- #: views/admin/support/contents.php:58 views/installer/steps/finish.php:63
983
- msgctxt "(Admin)"
984
- msgid ""
985
- "Need development or legal assistance in making your site compliant? We can "
986
- "help!"
987
- msgstr ""
988
- "Нуждаете се от развитие или правна помощ за привеждане на сайта Ви в "
989
- "съответствие? Можем да помогнем!"
990
-
991
- #: views/admin/wizard-buttons.php:2
992
- msgctxt "(Admin)"
993
- msgid "Restart setup wizard"
994
- msgstr "Рестартирай настройката"
995
-
996
- #: views/email/action-export.php:8 views/email/action-forget.php:12
997
- msgctxt "(Admin)"
998
- msgid ""
999
- "This email is just for your information. You don't need to take any action"
1000
- msgstr ""
1001
- "Този имейл е само за вашата информация. Не е необходимо да предприемате "
1002
- "никакви действия"
1003
-
1004
- #: views/email/action-forget.php:8
1005
- msgctxt "(Admin)"
1006
- msgid "The data subject had a user account on your website."
1007
- msgstr "Субектът на данните има потребителски профил на уебсайта Ви."
1008
-
1009
- #: views/email/identify-data-subject.php:2
1010
- msgid "Someone has requested access to your data on"
1011
- msgstr "Някой е поискал достъп до данните ви"
1012
-
1013
- #: views/email/identify-data-subject.php:3
1014
- msgid "If this was a mistake, just ignore this email and nothing will happen."
1015
- msgstr ""
1016
- "Ако това е грешка, просто игнорирайте този имейл и нищо няма да се случи. "
1017
- "Никой няма да има достъп до Вашите данни, ако няма по - долния линк. За "
1018
- "всеки случай ни уведомете на Email: privacy@zankov-group.com"
1019
-
1020
- #: views/email/identify-data-subject.php:4
1021
- msgid "To manage your data, visit the following address:"
1022
- msgstr "За да управлявате данните си, посетете следния адрес:"
1023
-
1024
- #: views/email/identify-data-subject.php:10
1025
- msgid "This link is valid for 15 minutes."
1026
- msgstr "Този линк ще бъде валиден само за 15 мин."
1027
-
1028
- #: views/email/no-data.php:2
1029
- msgid "Someone has requested information about your personal data on"
1030
- msgstr "Някой е поискал информация за вашите лични данни"
1031
-
1032
- #: views/email/no-data.php:3
1033
- msgid "None of your personal data is stored on"
1034
- msgstr "Не съхраняваме Ваши лични данни"
1035
-
1036
- #: views/email/no-data.php:5
1037
- msgid ""
1038
- "If this was a mistake or you did not request this email, just ignore it and "
1039
- "nothing will happen."
1040
- msgstr ""
1041
- "Ако това е грешка, просто игнорирайте този имейл и нищо няма да се случи. "
1042
- "Никой няма да има достъп до Вашите данни, ако няма по - долния линк. За "
1043
- "всеки случай ни уведомете на Email: privacy@zankov-group.com"
1044
-
1045
- #: views/email/request-export.php:13 views/email/request-forget.php:13
1046
- msgctxt "(Admin)"
1047
- msgid "As a reminder: according to GDPR, you have 30 days to comply."
1048
- msgstr "Напомняне: според GDPR имате 30 дни, за да се съобразите."
1049
-
1050
- #: views/global/delete-action.php:2
1051
- msgctxt "(Admin)"
1052
- msgid "Automatically anonymize data"
1053
- msgstr "Автоматично анонимизиране на данните"
1054
-
1055
- #: views/global/delete-action.php:5
1056
- msgctxt "(Admin)"
1057
- msgid "Automatically delete data"
1058
- msgstr "Автоматично изтриване на данните"
1059
-
1060
- #: views/global/delete-action.php:9
1061
- msgctxt "(Admin)"
1062
- msgid "Automatically anonymize data and notify me via email"
1063
- msgstr "Автоматично анонимизиране на данните и уведомяване чрез Email."
1064
-
1065
- #: views/global/delete-action.php:13
1066
- msgctxt "(Admin)"
1067
- msgid "Automatically delete data and notify me via email"
1068
- msgstr "Автоматично изтриване на данните и уведомяване чрез Email."
1069
-
1070
- #: views/global/delete-action.php:16 views/global/export-action.php:10
1071
- msgctxt "(Admin)"
1072
- msgid "Only notify me via email"
1073
- msgstr "Само ме уведоми чрез Email."
1074
-
1075
- #: views/global/export-action.php:2
1076
- msgctxt "(Admin)"
1077
- msgid "Automatically download data"
1078
- msgstr "Автоматично сваляне на данните"
1079
-
1080
- #: views/global/export-action.php:6
1081
- msgctxt "(Admin)"
1082
- msgid "Automatically download data and notify me via email"
1083
- msgstr "Автоматично сваляне на данните и уведомяване чрез Email."
1084
-
1085
- #: views/installer/continue-notice.php:2
1086
- msgctxt "(Admin)"
1087
- msgid "The The GDPR Framework setup has not been finalized yet."
1088
- msgstr "Настройката на GDPR все още не е финализирана."
1089
-
1090
- #: views/installer/continue-notice.php:3
1091
- msgctxt "(Admin)"
1092
- msgid "You can continue the setup at any time."
1093
- msgstr "Можете да продължите настройката по всяко време."
1094
-
1095
- #: views/installer/continue-notice.php:6
1096
- msgctxt "(Admin)"
1097
- msgid "Continue the setup wizard"
1098
- msgstr "Продължи с настройката"
1099
-
1100
- #: views/installer/continue-notice.php:9
1101
- msgctxt "(Admin)"
1102
- msgid "Hide this message"
1103
- msgstr "Скрий съобщението"
1104
-
1105
- #: views/installer/footer.php:7
1106
- msgid "Back"
1107
- msgstr "Назад"
1108
-
1109
- #: views/installer/header.php:26
1110
- msgctxt "(Admin)"
1111
- msgid "I need help"
1112
- msgstr "Нуждая се от помощ"
1113
-
1114
- #: views/installer/header.php:29
1115
- msgctxt "(Admin)"
1116
- msgid "Developer Docs"
1117
- msgstr "Документация за програмисти"
1118
-
1119
- #: views/installer/header.php:36
1120
- msgctxt "(Admin)"
1121
- msgid "Configuration"
1122
- msgstr "Конфигурация"
1123
-
1124
- #: views/installer/header.php:46
1125
- msgctxt "(Admin)"
1126
- msgid "Forms & Consent"
1127
- msgstr "Форми и съгласие"
1128
-
1129
- #: views/installer/header.php:51
1130
- msgctxt "(Admin)"
1131
- msgid "Integrations"
1132
- msgstr "Интеграции"
1133
-
1134
- #: views/installer/steps/configuration-settings.php:23
1135
- #: views/installer/steps/configuration-settings.php:73
1136
- msgctxt "(Admin)"
1137
- msgid "Enter the email address to notify"
1138
- msgstr "Въведете имейл адреса за уведомяване"
1139
-
1140
- #: views/installer/steps/disclaimer.php:21
1141
- msgctxt "(Admin)"
1142
- msgid "I accept"
1143
- msgstr "Приемам"
1144
-
1145
- #: views/installer/welcome-notice.php:7
1146
- msgctxt "(Admin)"
1147
- msgid "Run the setup wizard"
1148
- msgstr "Пуснете помощника за настройка"
1149
-
1150
- #: views/installer/welcome-notice.php:11
1151
- msgctxt "(Admin)"
1152
- msgid "Auto-install pages"
1153
- msgstr "Автоматично инсталиране на страници"
1154
-
1155
- #: views/installer/welcome-notice.php:15
1156
- msgctxt "(Admin)"
1157
- msgid "Skip and install manually"
1158
- msgstr "Инсталирай ръчно"
1159
-
1160
- #: views/modules/contact-form-7/generator-privacy.php:6
1161
- msgctxt "(Admin)"
1162
- msgid ""
1163
- "This tag generates the default text for Terms & Conditions and/or Privacy "
1164
- "Policy checkbox."
1165
- msgstr ""
1166
- "Този маркер генерира стандартния текст за чекбокса за Общи условия и / или "
1167
- "Политика за Лични данни."
1168
-
1169
- #: views/modules/contact-form-7/generator-privacy.php:15
1170
- msgid "Insert"
1171
- msgstr "Вмъкни"
1172
-
1173
- #: views/modules/wordpress-comments/terms-checkbox.php:6
1174
- #: views/modules/wordpress-user/registration-terms-checkbox.php:7
1175
- #, php-format
1176
- msgid "I accept the %sTerms and Conditions%s and the %sPrivacy Policy%s"
1177
- msgstr "Приемам %sTerms and Conditions%s и %sPrivacy Policy%s"
1178
-
1179
- #: views/modules/wordpress-user/dashboard/data-page/form-consent.php:3
1180
- msgid "Manage consents"
1181
- msgstr "Управлявайте съгласията"
1182
-
1183
- #: views/modules/wordpress-user/dashboard/data-page/form-consent.php:6
1184
- #: views/privacy-tools/form-consent.php:6
1185
- msgid "Here you can withdraw any consents you have given."
1186
- msgstr "Тук можете да оттеглите всички съгласия, които сте дали."
1187
-
1188
- #: views/modules/wordpress-user/dashboard/data-page/form-consent.php:8
1189
- #: views/privacy-tools/form-consent.php:9
1190
- msgid "Consent types"
1191
- msgstr "Типове съгласие"
1192
-
1193
- #: views/modules/wordpress-user/dashboard/data-page/form-consent.php:23
1194
- #: views/privacy-tools/form-consent.php:24
1195
- msgid "Withdraw"
1196
- msgstr "Оттегляне"
1197
-
1198
- #: views/modules/wordpress-user/dashboard/data-page/form-delete.php:5
1199
- #: views/modules/wordpress-user/dashboard/profile-page/form-delete.php:5
1200
- msgctxt "(Admin)"
1201
- msgid "Delete this user and all data"
1202
- msgstr "Изтрийте този потребител и всички данни"
1203
-
1204
- #: views/modules/wordpress-user/dashboard/data-page/form-delete.php:11
1205
- msgctxt "(Admin)"
1206
- msgid "Delete my data"
1207
- msgstr "Изтрий данните ми"
1208
-
1209
- #: views/modules/wordpress-user/dashboard/data-page/form-delete.php:15
1210
- #: views/privacy-tools/form-delete.php:13
1211
- msgid "Delete all data we have gathered about you."
1212
- msgstr "Изтрийте всички данни, които сме събрали за вас."
1213
-
1214
- #: views/modules/wordpress-user/dashboard/data-page/form-delete.php:16
1215
- #: views/privacy-tools/form-delete.php:14
1216
- msgid "If you have a user account on our site, it will also be deleted."
1217
- msgstr "Ако имате потребителски акаунт на нашия сайт, той също ще бъде изтрит."
1218
-
1219
- #: views/modules/wordpress-user/dashboard/data-page/form-delete.php:17
1220
- #: views/privacy-tools/form-delete.php:15
1221
- msgid "Be careful - this action is permanent and CANNOT be undone."
1222
- msgstr "Бъдете внимателни - това действие е не може да бъде отменено."
1223
-
1224
- #: views/modules/wordpress-user/dashboard/data-page/form-delete.php:22
1225
- #: views/modules/wordpress-user/dashboard/profile-page/form-delete.php:23
1226
- msgctxt "(Admin)"
1227
- msgid ""
1228
- "You seem to have an administrator or equivalent role, so deleting/"
1229
- "anonymizing via this page is disabled."
1230
- msgstr ""
1231
- "Изглежда, че имате администратор или еквивалентна роля, така че "
1232
- "изтриването / анонимирането чрез тази страница е деактивирано."
1233
-
1234
- #: views/modules/wordpress-user/dashboard/form-export.php:7
1235
- #: views/privacy-tools/form-export.php:1
1236
- msgid "Download your data"
1237
- msgstr "Изтеглете данните си"
1238
-
1239
- #: views/modules/wordpress-user/dashboard/form-export.php:12
1240
- #: views/privacy-tools/form-export.php:13
1241
- msgid "Download as table"
1242
- msgstr "Изтеглете в Таблица"
1243
-
1244
- #: views/modules/wordpress-user/dashboard/form-export.php:15
1245
- #: views/privacy-tools/form-export.php:22
1246
- msgid "Export as JSON"
1247
- msgstr "Експортирайте в JSON"
1248
-
1249
- #: views/modules/wordpress-user/dashboard/form-export.php:19
1250
- #: views/privacy-tools/form-export.php:4
1251
- msgid "You can download all your data formatted as a table for viewing."
1252
- msgstr ""
1253
- "Можете да изтеглите всичките си данни, форматирани като таблица за преглед."
1254
-
1255
- #: views/modules/wordpress-user/dashboard/form-export.php:20
1256
- #: views/privacy-tools/form-export.php:5
1257
- msgid "Alternatively, you can export it in machine-readable JSON format."
1258
- msgstr "Друга възможност е да го експортирате във машинно четене JSON формат."
1259
-
1260
- #: views/modules/wordpress-user/dashboard/profile-page/form-delete.php:11
1261
- msgctxt "(Admin)"
1262
- msgid "Delete user and all data"
1263
- msgstr "Изтрий потребителя и всички данни"
1264
-
1265
- #: views/modules/wordpress-user/dashboard/profile-page/form-delete.php:14
1266
- msgctxt "(Admin)"
1267
- msgid "Anonymize user and all data"
1268
- msgstr "Анонимизиране на потребителя и всички данни"
1269
-
1270
- #: views/modules/wordpress-user/dashboard/profile-page/header.php:2
1271
- msgctxt "(Admin)"
1272
- msgid "GDPR Data"
1273
- msgstr "GDPR данни"
1274
-
1275
- #: views/modules/wordpress-user/dashboard/profile-page/header.php:6
1276
- msgctxt "(Admin)"
1277
- msgid "This user has been anonymized."
1278
- msgstr "Потребителя беше добавен, като анонимен."
1279
-
1280
- #: views/modules/wordpress-user/dashboard/profile-page/table-consent.php:4
1281
- msgctxt "(Admin)"
1282
- msgid "Consents given"
1283
- msgstr "Дадени съгласия"
1284
-
1285
- #: views/modules/wordpress-user/dashboard/profile-page/table-consent.php:17
1286
- msgctxt "(Admin)"
1287
- msgid "No consents given"
1288
- msgstr "Няма дадени съгласия"
1289
-
1290
- #: views/privacy-tools/form-consent.php:2
1291
- msgid "Consent"
1292
- msgstr "Съгласие"
1293
-
1294
- #: views/privacy-tools/form-delete.php:1
1295
- #: views/privacy-tools/notice-admin-role.php:1
1296
- msgid "Delete my user and data"
1297
- msgstr "Изтрий ме, като потребител и данни."
1298
-
1299
- #: views/privacy-tools/form-delete.php:7
1300
- msgid "Delete my data"
1301
- msgstr "Изтрий моите данни"
1302
-
1303
- #: views/privacy-tools/form-identify.php:8
1304
- msgid "Back to Privacy Tools"
1305
- msgstr "Обратно в Политика за Лични данни"
1306
-
1307
- #: views/privacy-tools/form-identify.php:14
1308
- msgid "Please identify yourself via e-mail!"
1309
- msgstr "Идентифицирай се!"
1310
-
1311
- #: views/privacy-tools/form-identify.php:17
1312
- #: views/privacy-tools/form-identify.php:20
1313
- msgid "Enter your email address"
1314
- msgstr "Въведете вашия Email адрес"
1315
-
1316
- #: views/privacy-tools/form-identify.php:23
1317
- msgid "Send email"
1318
- msgstr "Изпрати Emial"
1319
-
1320
- #: views/privacy-tools/notice-admin-role.php:4
1321
- msgctxt "(Admin)"
1322
- msgid "Data deletion is disabled for administrative accounts."
1323
- msgstr "Изтриването на данни е забранено за административните профили."
1324
-
1325
- #: views/privacy-tools/notices.php:3
1326
- msgid ""
1327
- "We will send you an email with the link to access your data. Please check "
1328
- "your spam folder as well!"
1329
- msgstr ""
1330
- "Ще ви изпратим имейл с връзката, за да получите достъп до вашите данни. "
1331
- "Моля, проверете и папката си за спам!"
1332
-
1333
- #: views/privacy-tools/notices.php:7
1334
- msgid "The email you entered does not appear to be a valid email."
1335
- msgstr "Въведеният от вас имейл адрес не изглежда валиден имейл."
1336
-
1337
- #: views/privacy-tools/notices.php:11
1338
- msgid "Sorry - the link seems to have expired. Please try again!"
1339
- msgstr "За съжаление - връзката изглежда е изтекла. Моля, опитайте отново!"
1340
-
1341
- #: views/privacy-tools/notices.php:23
1342
- msgid "Your personal data has been removed!"
1343
- msgstr "Вашите лични данни бяха премахнати!"
1344
-
1345
- #: views/privacy-tools/privacy-tools.php:5
1346
- msgid "You are identified as"
1347
- msgstr "Вие сте идентифицирани като"
1348
-
1349
- #: views\admin\general\enable-tac.php:9
1350
- msgctxt "(Admin)"
1351
- msgid "Enable the term and condition page."
1352
- msgstr "Активирайте страницата за термини и условия."
1353
-
1354
- #: src\Admin\AdminTabGeneral.php:51
1355
- msgctxt "(Admin)"
1356
- msgid "Enable Term and Conditions"
1357
- msgstr "Активиране на термин и условия"
1358
-
1359
- #: gdpr-framework.php:121
1360
- msgid ""
1361
- "This website uses cookies to ensure you get the best experience on our "
1362
- "website."
1363
- msgstr ""
1364
- "Този уебсайт използва \"бисквитки\", за да гарантирате, че получавате най-"
1365
- "доброто изживяване на нашия уебсайт."
1366
-
1367
- #: gdpr-framework.php:121
1368
- msgid "Decline"
1369
- msgstr "упадък"
1370
-
1371
- #: gdpr-framework.php:121
1372
- msgid "Accept"
1373
- msgstr "приемам"
1374
-
1375
- #: gdpr-framework.php:133
1376
- msgid "Learn more"
1377
- msgstr "Научете повече"
1378
-
1379
- #: AdminTabGeneral.php:94
1380
- msgctxt "(Admin)"
1381
- msgid "From Email"
1382
- msgstr "От имейл"
1383
-
1384
- #: AdminTabGeneral.php:87
1385
- msgctxt "(Admin)"
1386
- msgid "From Name"
1387
- msgstr "От името"
1388
-
1389
- #: AdminTabGeneral.php:82
1390
- msgctxt "(Admin)"
1391
- msgid "Email Setting"
1392
- msgstr "Настройка на имейла"
1393
-
1394
- #: AdminTabGeneral.php:104
1395
- msgctxt "(Admin)"
1396
- msgid "Acceptance Popup Setting"
1397
- msgstr "Приемане на изскачащи настройки"
1398
-
1399
- #: AdminTabGeneral.php:109
1400
- msgctxt "(Admin)"
1401
- msgid "Popup Position"
1402
- msgstr "Изскачаща позиция"
1403
-
1404
- #: AdminTabGeneral.php:116
1405
- msgctxt "(Admin)"
1406
- msgid "Popup theme"
1407
- msgstr "Изскачаща тема"
1408
-
1409
- #: AdminTabGeneral.php:123
1410
- msgctxt "(Admin)"
1411
- msgid "Cookie Acceptance Background Color"
1412
- msgstr "Бял цвят на фоновото приемане на бисквитките"
1413
-
1414
- #: AdminTabGeneral.php:130
1415
- msgctxt "(Admin)"
1416
- msgid "Cookie Acceptance Text Color"
1417
- msgstr "Цвят на текста за приемане на бисквитките"
1418
-
1419
- #: AdminTabGeneral.php:137
1420
- msgctxt "(Admin)"
1421
- msgid "Cookie Acceptance Button Backgroung Color"
1422
- msgstr "Бутон за приемане на бисквитките"
1423
-
1424
- #: AdminTabGeneral.php:144
1425
- msgctxt "(Admin)"
1426
- msgid "Cookie Acceptance Button Color"
1427
- msgstr "Цвят на бутона за приемане на бисквитките"
1428
-
1429
- #: AdminTabGeneral.php:151
1430
- msgctxt "(Admin)"
1431
- msgid "Cookie Acceptance Border Color"
1432
- msgstr "Цвят на границата на приемане на бисквитките"
1433
-
1434
- #: AdminTabGeneral.php:67
1435
- msgctxt "(Admin)"
1436
- msgid "Enable Cookie Acceptance Popup"
1437
- msgstr "Активиране на изскачащия прозорец за приемане на \"бисквитките\""
1438
-
1439
- #: AdminTabGeneral.php:73
1440
- msgctxt "(Admin)"
1441
- msgid "Cookie Acceptance Popup Content"
1442
- msgstr "Съдържание на изскачащи прозорци за приемане на бисквитки"
1443
-
1444
- #: description-position-action.php
1445
- msgctxt "(Admin)"
1446
- msgid "Select position of the Popup"
1447
- msgstr "Изберете позицията на изскачащия прозорец"
1448
-
1449
- #: description-theme-action.php
1450
- msgctxt "(Admin)"
1451
- msgid "Select theme of the Popup"
1452
- msgstr "Изберете тема на изскачащия прозорец"
1453
-
1454
- #: description-theme-action.php:69
1455
- msgctxt "(Admin)"
1456
- msgid "Disable Comment Checkbox"
1457
- msgstr "Деактивирайте квадратчето за отметки за коментарите"
1458
-
1459
- #: description-theme-action.php:76
1460
- msgctxt "(Admin)"
1461
- msgid "Disable Register Form Checkbox"
1462
- msgstr "Деактивиране на формуляр за регистрация на формуляр"
1463
-
1464
- #: description-theme-action.php:312
1465
- msgctxt "(Admin)"
1466
- msgid "Disable Checkbox For Comments"
1467
- msgstr "Забранете квадратчето за отметка за коментари"
1468
-
1469
- #: AdminTabGeneral.php:319
1470
- msgctxt "(Admin)"
1471
- msgid "Disable Checkbox For Register Form"
1472
- msgstr "Деактивиране на квадратчето за регистрация"
1473
-
1474
- #: advanced-integration\header.php:2
1475
- msgctxt "(Admin)"
1476
- msgid "This page allows you to advance integration with ClassiDocs™"
1477
- msgstr ""
1478
- "Тази страница ви позволява да усъвършенствате интеграцията с ClassiDocs ™"
1479
-
1480
- #: AdminTabAdvancedIntegration.php:97
1481
- msgctxt "(Admin)"
1482
- msgid "ClassiDocs Password"
1483
- msgstr "ClassiDocs парола"
1484
-
1485
- #: AdminTabAdvancedIntegration.php:88
1486
- msgctxt "(Admin)"
1487
- msgid "ClassiDocs Username"
1488
- msgstr "ClassiDocs Потребител"
1489
-
1490
- #: AdminTabAdvancedIntegration.php:79
1491
- msgctxt "(Admin)"
1492
- msgid "ClassiDocs URL"
1493
- msgstr "URL адрес на ClassiDocs"
1494
-
1495
- #: AdminTabAdvancedIntegration.php:69
1496
- msgctxt "(Admin)"
1497
- msgid "Enable Response with related queries?"
1498
- msgstr "Да се ​​разреши отговор със свързани заявки?"
1499
-
1500
- #: AdminTabAdvancedIntegration.php:60
1501
- msgctxt "(Admin)"
1502
- msgid "Submit SAR request details?"
1503
- msgstr "Подайте подробности за заявката за SAR?"
1504
-
1505
- #: AdminTabAdvancedIntegration.php:51
1506
- msgctxt "(Admin)"
1507
- msgid "Integrate with ClassiDocs?"
1508
- msgstr "Интегриране с ClassiDocs?"
1509
-
1510
- #: AdminTabAdvancedIntegration.php:43
1511
- msgctxt "(Admin)"
1512
- msgid "Integration Settings"
1513
- msgstr "Настройки за интегриране"
1514
-
1515
- #: AdminTabAdvancedIntegration.php:35
1516
- msgctxt "(Admin)"
1517
- msgid "Advanced Integration"
1518
- msgstr "Разширена интеграция"
1519
-
1520
- #: checkbox-field.php:10
1521
- msgctxt "(Admin)"
1522
- msgid "Sign up for free here"
1523
- msgstr "Регистрирайте се безплатно тук"
1524
-
1525
- #: checkbox-field.php:10
1526
- msgctxt "(Admin)"
1527
- msgid "Click Here"
1528
- msgstr "Натисни тук"
1529
-
1530
- #: ClassiDocs-results.php:12
1531
- msgid "Previous Results"
1532
- msgstr "Предишни резултати"
1533
-
1534
- #: ClassiDocs-results.php:13
1535
- msgid "Current Results"
1536
- msgstr "Текущи резултати"
1537
-
1538
- #: ClassiDocs-results.php:19
1539
- msgid "Name"
1540
- msgstr "име"
1541
-
1542
- #: ClassiDocs-results.php:22
1543
- msgid "Path"
1544
- msgstr "път"
1545
-
1546
- #: ClassiDocs-results.php:34
1547
- msgid "Workstation"
1548
- msgstr "Workstation"
1549
-
1550
- #: ClassiDocs-results.php:37
1551
- msgid "Last Scan"
1552
- msgstr "Последно сканиране"
1553
-
1554
- #: ClassiDocs-results.php:62
1555
- msgid "No ClassiDocs data found!"
1556
- msgstr "Няма намерени данни за ClassiDocs!"
1557
-
1558
- #: enable_popup_header.php:5
1559
- msgid "Cookies used on the website!"
1560
- msgstr "Бисквитки, използвани на сайта!"
1561
-
1562
- #: enable_popup_header.php:9
1563
- msgid "Leave blank if don't want header to get display."
1564
- msgstr "Оставете празно, ако не искате заглавката да се покаже."
1565
-
1566
- #: AdminTabCookiePopup.php:39
1567
- msgctxt "(Admin)"
1568
- msgid "Cookie Popup Settings"
1569
- msgstr "Настройки на изскачащи прозорци"
1570
-
1571
- #: AdminTabCookiePopup.php:17
1572
- msgctxt "(Admin)"
1573
- msgid "Cookie Popup"
1574
- msgstr "Изскачащ"
1575
-
1576
- #: AdminTabCookiePopup.php:49
1577
- msgctxt "(Admin)"
1578
- msgid "Enable One Time Cookie Acceptance Popup"
1579
- msgstr ""
1580
- "Активиране на изскачащия прозорец за приемане на бисквитки за еднократно "
1581
- "време"
1582
-
1583
- #: consent.php:79
1584
- msgctxt "(Admin)"
1585
- msgid "Show Consent types"
1586
- msgstr "Показване на типовете съгласия"
1587
-
1588
- msgctxt "(Admin)"
1589
- msgid "Hide consent types"
1590
- msgstr "Скриване на типовете съгласие"
1591
-
1592
- msgctxt "(Admin)"
1593
- msgid "Do you want form to be GDPR compliance."
1594
- msgstr "Искате ли формата да бъде съответствие с GDPR."
1595
-
1596
- msgctxt "(Admin)"
1597
- msgid ""
1598
- "You have installed flamingo, To make this GDPR compliance in individual "
1599
- "contact form's privacy tab check the checkbox for include data to be search "
1600
- "on Privacy tool."
1601
- msgstr ""
1602
- "Имате инсталиран фламинго. За да направите това съответствие с GDPR в "
1603
- "раздела за поверителност на отделната форма за контакти, поставете отметка в "
1604
- "квадратчето за отметка, за да включите данни за търсене в инструмента за "
1605
- "поверителност."
1606
-
1607
- msgctxt "(Admin)"
1608
- msgid "Enable Policy Link On Popup"
1609
- msgstr "Активиране на връзката по правилата при изскачащи прозорци"
1610
-
1611
- msgctxt "(Admin)"
1612
- msgid "Enable Privacy policy on Popup"
1613
- msgstr "Активирайте правилата за поверителност в изскачащите прозорци"
1614
-
1615
- #: AdminTabCookiePopup.php
1616
- msgctxt "(Admin)"
1617
- msgid "Cookie Acceptance Popup header"
1618
- msgstr "Притурка за приемане на бисквитки"
1619
-
1620
- #: views\admin\privacy-manager\header.php:2
1621
- msgctxt "(Admin)"
1622
- msgid "Data443™ Privacy Manager"
1623
- msgstr "Data443™ Privacy Manager"
1624
-
1625
- #: views\admin\privacy-manager\header.php:3
1626
- msgctxt "(Admin)"
1627
- msgid ""
1628
- "ensures privacy regulation compliance, such as GDPR, CCPA, LGPD, etc, at the "
1629
- "next level."
1630
- msgstr ""
1631
- "гарантира спазването на правилата за поверителност, като например GDPR, "
1632
- "CCPA, LGPD и т.н., на следващото ниво."
1633
-
1634
- #: views\admin\privacy-manager\header.php:4
1635
- msgctxt "(Admin)"
1636
- msgid ""
1637
- "In addition to DSAR tracking and management, Privacy Manager adds the "
1638
- "following features to your data protection compliance resources:"
1639
- msgstr ""
1640
- "В допълнение към DSAR проследяването и управлението, Privacy Manager добавя "
1641
- "следните функции към вашите ресурси за защита на данните:"
1642
-
1643
- #: views\admin\privacy-manager\header.php:6
1644
- msgctxt "(Admin)"
1645
- msgid "Log and store ICO breach notifications"
1646
- msgstr "Влезте и съхранете уведомленията за нарушения на ICO"
1647
-
1648
- #: views\admin\privacy-manager\header.php:7
1649
- msgctxt "(Admin)"
1650
- msgid "Keeps full record of all requests, ticketed and timeline"
1651
- msgstr "Съхранява пълен запис на всички заявки, билети и времева линия"
1652
-
1653
- #: views\admin\privacy-manager\header.php:8
1654
- msgctxt "(Admin)"
1655
- msgid "Gap analysis and breach notifications"
1656
- msgstr "Анализ на пропуските и уведомления за нарушения"
1657
-
1658
- #: views\admin\privacy-manager\header.php:9
1659
- msgctxt "(Admin)"
1660
- msgid "In depth activity log with all GDPR, CCPA, etc actions evidenced"
1661
- msgstr ""
1662
- "В дълбочина на дневника за дейностите се разкриват всички действия на GDPR, "
1663
- "CCPA и т.н."
1664
-
1665
- #: views\admin\privacy-manager\header.php:10
1666
- msgctxt "(Admin)"
1667
- msgid "Highlights areas of concern and where you need to focus"
1668
- msgstr "Подчертава областите на загриженост и къде трябва да се съсредоточите"
1669
-
1670
- #: views\admin\privacy-manager\header.php:11
1671
- msgctxt "(Admin)"
1672
- msgid ""
1673
- "eLearning platform with access for all staff to ensure privacy regulation "
1674
- "compliance and obligations"
1675
- msgstr ""
1676
- "eLearning платформа с достъп за целия персонал, за да се гарантира "
1677
- "спазването и задълженията за регулиране на поверителността"
1678
-
1679
- #: views\admin\privacy-manager\header.php:12
1680
- msgctxt "(Admin)"
1681
- msgid "Tracks who accesses the system, when and why"
1682
- msgstr "Проследява кой влиза в системата, кога и защо"
1683
-
1684
- #: views\admin\privacy-manager\header.php:15
1685
- msgctxt "(Admin)"
1686
- msgid ""
1687
- "Our system enables your business to demonstrate its obligations in "
1688
- "protecting your customer data, show understanding of your business "
1689
- "activities and deliver eLearning and online tests to employees, ensuring "
1690
- "everyone in your company understands your privacy compliance rules and best "
1691
- "practices to operate."
1692
- msgstr ""
1693
- "Нашата система дава възможност на вашия бизнес да демонстрира задълженията "
1694
- "си в защитата на вашите клиентски данни, да покаже разбиране на вашите "
1695
- "бизнес дейности и да предостави електронно обучение и онлайн тестове на "
1696
- "служителите, като гарантира, че всеки във вашата компания разбира правилата "
1697
- "за спазване на поверителността и най-добрите практики за работа."
1698
-
1699
- #: views\admin\privacy-manager\header.php:16
1700
- msgctxt "(Admin)"
1701
- msgid ""
1702
- "No matter where you are on your data privacy journey, the ultimate goal is "
1703
- "compliance."
1704
- msgstr ""
1705
- "Без значение къде сте на път за поверителност на данните, крайната цел е "
1706
- "спазването на правилата."
1707
-
1708
- #: views\admin\privacy-manager\header.php:16
1709
- msgctxt "(Admin)"
1710
- msgid "enables your organization to comply with all privacy regulations."
1711
- msgstr ""
1712
- "позволява на вашата организация да спазва всички правила за поверителност."
1713
-
1714
- #: views\admin\support\contents.php:49
1715
- msgctxt "(Admin)"
1716
- msgid ""
1717
- "Found a bug or have a question about the plugin? Submit a support request "
1718
- "and we’ll get right on it!"
1719
- msgstr ""
1720
- "Открихте грешка или имате въпрос относно приставката? Изпратете заявка за "
1721
- "поддръжка и ще се оправим!"
1722
-
1723
- #: views\admin\support\contents.php:58
1724
- msgctxt "(Admin)"
1725
- msgid "Need assistance in making your site compliant? We can help!"
1726
- msgstr "Нуждаете се от помощ при съгласуването на сайта Ви? Можем да помогнем!"
1727
-
1728
- #: views\admin\general\woo-compatibility.php:9
1729
- msgctxt "(Admin)"
1730
- msgid "Enable WooCommerce data on GDPR tool"
1731
- msgstr "Активиране на данните за WooCommerce за инструмента GDPR"
1732
-
1733
- #: src\Admin\AdminTabGeneral.php:241
1734
- msgctxt "(Admin)"
1735
- msgid "Enable WooCommerce Compatibility"
1736
- msgstr "Активиране на съвместимостта на WooCommerce"
1737
-
1738
- #: views\modules\wordpress-user\dashboard\data-page\form-delete.php:19
1739
- msgid "Note Regarding Order:"
1740
- msgstr "Забележка относно поръчката:"
1741
-
1742
- #: views\modules\wordpress-user\dashboard\data-page\form-delete.php:20
1743
- msgid ""
1744
- "Your order with status Processing will not get deleted until status change."
1745
- msgstr ""
1746
- "Вашата поръчка със статус Обработка няма да бъде изтрита до промяна на "
1747
- "статуса."
1748
-
1749
- #: views\modules\wordpress-user\dashboard\data-page\form-delete.php:21
1750
- msgid "Your order with status Completed will get anonymize."
1751
- msgstr "Вашата поръчка със завършен статус ще стане анонимна."
1752
-
1753
- #: views\modules\wordpress-user\dashboard\data-page\form-delete.php:22
1754
- msgid "If you delete Completed order you can't apply for refund."
1755
- msgstr ""
1756
- "Ако изтриете попълнената поръчка, не можете да кандидатствате за "
1757
- "възстановяване."
1758
-
1759
- #: views\admin\general\woo-compatibility.php:12
1760
- msgctxt "(Admin)"
1761
- msgid "Will work for WooCommerce Version 3.4.0 or later."
1762
- msgstr "Ще работи за WooCommerce версия 3.4.0 или по-нова."
1763
-
1764
- #: views\admin\general\edd-compatibility.php:9
1765
- msgctxt "(Admin)"
1766
- msgid "Enable EDD data on GDPR tool."
1767
- msgstr "Активиране на EDD данни за инструмента GDPR."
1768
-
1769
- #: views\admin\general\edd-compatibility.php:12
1770
- msgctxt "(Admin)"
1771
- msgid "Will work for EDD Version 2.0.0 or later."
1772
- msgstr "Ще работи за EDD версия 2.0.0 или по-нова."
1773
-
1774
- #: src\Admin\AdminTabGeneral.php:262
1775
- msgctxt "(Admin)"
1776
- msgid "Enable EDD Compatibility"
1777
- msgstr "Активиране на EDD съвместимостта"
1778
-
1779
- #: gdpr-framework.php:298
1780
- msgid "Cookie Policy"
1781
- msgstr "Политика за „бисквитките“"
1782
-
1783
- #: ConsentManager.php:96
1784
- msgctxt "(Admin)"
1785
- msgid ""
1786
- "This consent is visible by default on woocommerce checkout page. If someone "
1787
- "wishes to withdraw it, they should simply request to delete all their data."
1788
- msgstr ""
1789
- "Това съгласие е видимо по подразбиране на страницата за плащане на "
1790
- "woocommerce. Ако някой желае да го оттегли, те трябва просто да поискат да "
1791
- "изтрият всичките си данни."
1792
-
1793
- #: ConsentManager.php:96
1794
- msgctxt "(Admin)"
1795
- msgid "Woocommerce Policy Consent"
1796
- msgstr "Съгласие за политиката на Woocommerce"
1797
-
1798
- #: WoocommerceGdpr.php:150
1799
- msgid "Please acknowledge the Privacy Policy"
1800
- msgstr "Моля, потвърдете Декларацията за поверителност"
1801
-
1802
- #: woo-compatibility.php:9
1803
- msgctxt "(Admin)"
1804
- msgid "Enable WooCommerce data on GDPR tool."
1805
- msgstr "Активиране на данните за WooCommerce за инструмента GDPR."
1806
-
1807
- #: views\admin\general\enable-popup.php:12
1808
- msgctxt "(Admin)"
1809
- msgid ""
1810
- "<b>Note:</b> Need to add custom content <b>gdpr_cookie_consent</b> its "
1811
- "accepted on popup accept button."
1812
- msgstr ""
1813
- "<b> Забележка: </b> Необходимо е да добавите персонализирано съдържание <b> "
1814
- "gdpr_cookie_consent </b> неговия приет в изскачащ прозорец бутон за приемане."
1815
-
1816
- #: AdminTabCookiePopup.php:105
1817
- msgctxt "(Admin)"
1818
- msgid "Popup Dismiss Text"
1819
- msgstr "Изскачащ отказ от текст"
1820
-
1821
- #: AdminTabCookiePopup.php:98
1822
- msgctxt "(Admin)"
1823
- msgid "Popup Allow Text"
1824
- msgstr "Изскачащ Allow Text"
1825
-
1826
- #: AdminTabGeneral.php:241
1827
- msgctxt "(Admin)"
1828
- msgid "Woocommerce Integration"
1829
- msgstr "Интеграция с Woocommerce"
1830
-
1831
- #: AdminTabGeneral.php:259
1832
- msgctxt "(Admin)"
1833
- msgid "Easy Digital Download Integration"
1834
- msgstr "Лесна интеграция с цифрово изтегляне"
1835
-
1836
- #: has-dpo.php:11
1837
- msgctxt "(Admin)"
1838
- msgid "I have appointed a Data Protection Officer (DPO)"
1839
- msgstr "Назначих служител по защита на данните (ДЗД)"
1840
-
1841
- #: views/admin/general/stylesheet.php:9
1842
- msgctxt "(Admin)"
1843
- msgid "Enable basic styling for Privacy Tools page."
1844
- msgstr ""
1845
- "Активиране на основния стил на страницата Инструменти за поверителност."
1846
-
1847
- #: AdminTabPrivacyPolicy.php:204
1848
- msgctxt "(Admin)"
1849
- msgid "Delete Text"
1850
- msgstr "Изтриване на текст"
1851
-
1852
- #: consent.php:80
1853
- msgctxt "(Admin)"
1854
- msgid "Add consent type"
1855
- msgstr "Добавете тип съгласие"
1856
-
1857
- #: AdminTabGeneral.php:127
1858
- msgctxt "(Admin)"
1859
- msgid "Privacy Policy Custom URL"
1860
- msgstr "Политика за поверителност Потребителски URL"
1861
-
1862
- #: custom-policy-url.php:6
1863
- msgctxt "(Admin)"
1864
- msgid "Leave blank if privacy policy page already selected"
1865
- msgstr ""
1866
- "Оставете празно, ако страницата за Декларация за поверителност вече е избрана"
1867
-
1868
- #: views/admin/general/description-delete-action.php:2
1869
- msgctxt "(Admin)"
1870
- msgid "What should happen if a data subject requests deleting their data."
1871
- msgstr ""
1872
- "Какво трябва да се случи, ако субектът на данни поиска да изтрие техните "
1873
- "данни."
1874
-
1875
- #: views/admin/general/description-export-action.php:2
1876
- msgctxt "(Admin)"
1877
- msgid "Optional. Select the page which contains your Terms & Conditions"
1878
- msgstr ""
1879
- "Не е задължително. Изберете страницата, която съдържа вашите Общи условия"
1880
-
1881
- #: views/admin/general/description-terms-page.php:2
1882
- msgctxt "(Admin)"
1883
- msgid ""
1884
- "What should happen if a data subject requests viewing or exporting their "
1885
- "data."
1886
- msgstr ""
1887
- "Какво трябва да се случи, ако субектът на данни поиска да прегледа или "
1888
- "експортира своите данни."
1889
-
1890
- #: woo-disable_checkbox.php:9
1891
- msgctxt "(Admin)"
1892
- msgid "Disable WooCommerce Privacy Checkbox"
1893
- msgstr "Деактивирайте квадратчето за поверителност на WooCommerce"
1894
-
1895
- #: AdminTabCookiePopup.php:133
1896
- msgctxt "(Admin)"
1897
- msgid "Popup Learn More Text"
1898
- msgstr "Изскачане Научете повече текст"
1899
-
1900
- #: AdminTabGeneral.php:262
1901
- msgctxt "(Admin)"
1902
- msgid "Disable WooCommerce Register Privacy Checkbox"
1903
- msgstr ""
1904
- "Деактивирайте полето за поверителност на регистъра за поверителност на "
1905
- "WooCommerce"
1906
-
1907
- #: AdminTabCookiePopup.php:121
1908
- msgctxt "(Admin)"
1909
- msgid "Cookie Acceptance link target"
1910
- msgstr "Цел на връзката Приемане на бисквитки"
1911
-
1912
- #: popup_link_target.php:3
1913
- msgctxt "(Admin)"
1914
- msgid "Next Tab"
1915
- msgstr "Следващ раздел"
1916
-
1917
- #: popup_link_target.php:5
1918
- msgctxt "(Admin)"
1919
- msgid "Self"
1920
- msgstr "себе си"
1
+ # SOME DESCRIPTIVE TITLE.
2
+ # Copyright (C) YEAR Codelight
3
+ # This file is distributed under the same license as the The GDPR Framework package.
4
+ # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5
+ #
6
+ msgid ""
7
+ msgstr ""
8
+ "Project-Id-Version: The GDPR Framework 1.0\n"
9
+ "Report-Msgid-Bugs-To: gdpr@codelight.eu\n"
10
+ "POT-Creation-Date: 2018-04-16 10:50+0000\n"
11
+ "PO-Revision-Date: 2019-09-19 12:36+0530\n"
12
+ "Language-Team: \n"
13
+ "MIME-Version: 1.0\n"
14
+ "Content-Type: text/plain; charset=UTF-8\n"
15
+ "Content-Transfer-Encoding: 8bit\n"
16
+ "X-Generator: Poedit 1.5.7\n"
17
+ "Last-Translator: Zankov Group LTD. <office@zankov-group.com>\n"
18
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
19
+ "Language: bg_BG\n"
20
+
21
+ #: gdpr-framework.php:26
22
+ msgctxt "(Admin)"
23
+ msgid "WordPress GDPR &rsaquo; Error"
24
+ msgstr ""
25
+
26
+ #: gdpr-framework.php:35
27
+ msgctxt "(Admin)"
28
+ msgid "Invalid PHP version"
29
+ msgstr "Невалидна версия на PHP"
30
+
31
+ #: gdpr-framework.php:35
32
+ msgctxt "(Admin)"
33
+ msgid "You must be using PHP 5.6.33 or greater."
34
+ msgstr "Трябва да използвате PHP 5.6.33 или по-нова."
35
+
36
+ #: gdpr-framework.php:42
37
+ msgctxt "(Admin)"
38
+ msgid "Invalid WordPress version"
39
+ msgstr "Невалидна версия на WordPress"
40
+
41
+ #: gdpr-framework.php:42
42
+ msgctxt "(Admin)"
43
+ msgid "You must be using WordPress 4.3.0 or greater."
44
+ msgstr "Трябва да използвате WordPress 4.3.0 или по-нова."
45
+
46
+ #: gdpr-framework.php:52
47
+ msgctxt "(Admin)"
48
+ msgid ""
49
+ "You appear to be running a development version of GDPR. You must run "
50
+ "<code>composer install</code> from the plugin directory."
51
+ msgstr ""
52
+ "Изглежда, че използвате версия за разработка на GDPR. Трябва да стартирате "
53
+ "<code> install композитор </ code> от директорията на добавката."
54
+
55
+ #: gdpr-framework.php:53
56
+ msgctxt "(Admin)"
57
+ msgid "Autoloader not found."
58
+ msgstr "Autoloader не е намерен."
59
+
60
+ #: gdpr-framework.php:115
61
+ msgctxt "(Admin)"
62
+ msgid "Anonymous"
63
+ msgstr "анонимен"
64
+
65
+ #: src/Admin/AdminTab.php:115
66
+ msgctxt "(Admin)"
67
+ msgid "Save"
68
+ msgstr "Запази"
69
+
70
+ #: src/Admin/AdminTab.php:151
71
+ msgctxt "(Admin)"
72
+ msgid "Policy generated!"
73
+ msgstr "Политиката е генерирана!"
74
+
75
+ #: src/Admin/AdminTabGeneral.php:11
76
+ msgctxt "(Admin)"
77
+ msgid "General"
78
+ msgstr "Главни"
79
+
80
+ #: src/Admin/AdminTabGeneral.php:38
81
+ msgctxt "(Admin)"
82
+ msgid "General Settings"
83
+ msgstr "Главни настройки"
84
+
85
+ #: src/Admin/AdminTabGeneral.php:43
86
+ msgctxt "(Admin)"
87
+ msgid "Enable Privacy Tools"
88
+ msgstr "Включи Политика за лични данни"
89
+
90
+ #: src/Admin/AdminTabGeneral.php:53
91
+ msgctxt "(Admin)"
92
+ msgid "Pages"
93
+ msgstr "Страници"
94
+
95
+ #: src/Admin/AdminTabGeneral.php:58 src/Admin/WordpressAdmin.php:151
96
+ msgctxt "(Admin)"
97
+ msgid "Privacy Tools Page"
98
+ msgstr "Страница с инструменти "
99
+
100
+ #: src/Admin/AdminTabGeneral.php:65 src/Admin/WordpressAdmin.php:147
101
+ msgctxt "(Admin)"
102
+ msgid "Privacy Policy Page"
103
+ msgstr "Страница за лични данни"
104
+
105
+ #: src/Admin/AdminTabGeneral.php:72
106
+ msgctxt "(Admin)"
107
+ msgid "Terms & Conditions Page"
108
+ msgstr "Страница за Общи условия"
109
+
110
+ #: src/Admin/AdminTabGeneral.php:82
111
+ msgctxt "(Admin)"
112
+ msgid "View & Export Data"
113
+ msgstr "Преглед и Експортиране на данни"
114
+
115
+ #: src/Admin/AdminTabGeneral.php:87
116
+ msgctxt "(Admin)"
117
+ msgid "Export action"
118
+ msgstr "Действие за експортиране"
119
+
120
+ #: src/Admin/AdminTabGeneral.php:94 src/Admin/AdminTabGeneral.php:133
121
+ msgctxt "(Admin)"
122
+ msgid "Email to notify"
123
+ msgstr "Email за уведомяване"
124
+
125
+ #: src/Admin/AdminTabGeneral.php:105
126
+ msgctxt "(Admin)"
127
+ msgid "Delete & Anonymize Data"
128
+ msgstr "Изтриване и Анонимни данни"
129
+
130
+ #: src/Admin/AdminTabGeneral.php:110
131
+ msgctxt "(Admin)"
132
+ msgid "Delete action"
133
+ msgstr "Действие при изтриване"
134
+
135
+ #: src/Admin/AdminTabGeneral.php:117
136
+ msgctxt "(Admin)"
137
+ msgid "Delete or reassign content?"
138
+ msgstr "Да се ​​изтрие ли или да се присвои съдържание?"
139
+
140
+ #: src/Admin/AdminTabGeneral.php:125
141
+ msgctxt "(Admin)"
142
+ msgid "Reassign content to"
143
+ msgstr "Пренасочване на съдържание към"
144
+
145
+ #: src/Admin/AdminTabGeneral.php:145
146
+ msgctxt "(Admin)"
147
+ msgid "Styling"
148
+ msgstr "Стил"
149
+
150
+ #: src/Admin/AdminTabGeneral.php:150
151
+ msgctxt "(Admin)"
152
+ msgid "Enable basic styling on Privacy Tools page"
153
+ msgstr "Активирайте основния стил на страницата Инструменти за поверителност"
154
+
155
+ #: src/Admin/AdminTabGeneral.php:162
156
+ msgctxt "(Admin)"
157
+ msgid "Compatibility"
158
+ msgstr "Съвместимост"
159
+
160
+ #: src/Admin/AdminTabGeneral.php:167
161
+ msgctxt "(Admin)"
162
+ msgid "Enable automatic theme compatibility"
163
+ msgstr "Активирайте автоматичната съвместимост на темите"
164
+
165
+ #: src/Admin/AdminTabGeneral.php:184 src/Admin/AdminTabGeneral.php:200
166
+ #: src/Admin/AdminTabGeneral.php:213 src/Admin/AdminTabGeneral.php:252
167
+ #: views/installer/steps/configuration-settings.php:62
168
+ #, fuzzy
169
+ msgctxt "(Admin)"
170
+ msgid "&mdash; Select &mdash;"
171
+ msgstr "Избери размера на бутона."
172
+
173
+ #: src/Admin/WordpressAdmin.php:65
174
+ msgctxt "(Admin)"
175
+ msgid "Privacy & GDPR Settings"
176
+ msgstr "Настройки за поверителност и GDPR"
177
+
178
+ #: src/Admin/WordpressAdmin.php:66
179
+ msgctxt "(Admin)"
180
+ msgid "Privacy"
181
+ msgstr "поверителност"
182
+
183
+ #: src/Components/Consent/AdminTabConsent.php:30
184
+ #: src/Components/Consent/AdminTabConsent.php:49
185
+ msgctxt "(Admin)"
186
+ msgid "Consent"
187
+ msgstr "Съгласие"
188
+
189
+ #: src/Components/Consent/AdminTabConsent.php:157
190
+ msgctxt "(Admin)"
191
+ msgid "Consent slug is a required field!"
192
+ msgstr "Консултантската слуз е задължително поле!"
193
+
194
+ #: src/Components/Consent/AdminTabConsent.php:162
195
+ msgctxt "(Admin)"
196
+ msgid ""
197
+ "You may only use alphanumeric characters, dash and underscore in the consent "
198
+ "slug field."
199
+ msgstr ""
200
+ "Можете да използвате само буквено-цифрени символи, тире и долни черти в "
201
+ "полето за съгласие за складиране."
202
+
203
+ #: src/Components/Consent/AdminTabConsent.php:167
204
+ msgctxt "(Admin)"
205
+ msgid "Consent title is a required field!"
206
+ msgstr "Типовото съгласие е задължително поле!"
207
+
208
+ #: src/Components/Consent/ConsentManager.php:46
209
+ #: views/modules/contact-form-7/content-privacy.php:2
210
+ #: views/modules/wordpress-comments/terms-checkbox.php:14
211
+ #: views/modules/wordpress-user/registration-terms-checkbox.php:15
212
+ #, php-format
213
+ msgid "I accept the %sPrivacy Policy%s"
214
+ msgstr "Приемам %sPrivacy Policy%s"
215
+
216
+ #: src/Components/Consent/ConsentManager.php:50
217
+ #: src/Components/Consent/ConsentManager.php:69
218
+ msgctxt "(Admin)"
219
+ msgid ""
220
+ "This consent is not visible by default. If someone wishes to withdraw it, "
221
+ "they should simply request to delete all their data."
222
+ msgstr ""
223
+ "Това съгласие не се вижда по подразбиране. Ако някой желае да го оттегли, "
224
+ "той трябва просто да поиска да изтрие всичките си данни."
225
+
226
+ #: src/Components/Consent/ConsentManager.php:65
227
+ #, php-format
228
+ msgid "I accept the %sTerms & Conditions%s"
229
+ msgstr "Приемам %sTerms & Conditions%s"
230
+
231
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:19
232
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:61
233
+ #: views/admin/privacy-policy/generated.php:1 views/installer/header.php:41
234
+ msgctxt "(Admin)"
235
+ msgid "Privacy Policy"
236
+ msgstr "Политика за Лични данни"
237
+
238
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:70
239
+ msgctxt "(Admin)"
240
+ msgid "Company information"
241
+ msgstr "Информация за Фирмата"
242
+
243
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:75
244
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:209
245
+ msgctxt "(Admin)"
246
+ msgid "Company Name"
247
+ msgstr "Име на Фирмата"
248
+
249
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:82
250
+ msgctxt "(Admin)"
251
+ msgid "Company Email"
252
+ msgstr "Фирмен Email"
253
+
254
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:89
255
+ msgctxt "(Admin)"
256
+ msgid "Company Location"
257
+ msgstr "Местоположение на Фирмата"
258
+
259
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:105
260
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:245
261
+ msgctxt "(Admin)"
262
+ msgid "Representative Contact Name"
263
+ msgstr "Представително име за контакт"
264
+
265
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:112
266
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:252
267
+ msgctxt "(Admin)"
268
+ msgid "Representative Contact Email"
269
+ msgstr "Представителни имейл за контакт"
270
+
271
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:119
272
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:259
273
+ msgctxt "(Admin)"
274
+ msgid "Representative Contact Phone"
275
+ msgstr "Представителна контактна телефония"
276
+
277
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:135
278
+ msgctxt "(Admin)"
279
+ msgid "Data Protection Authority"
280
+ msgstr "Орган за защита на данните"
281
+
282
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:141
283
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:286
284
+ msgctxt "(Admin)"
285
+ msgid "Data Protection Authority Website"
286
+ msgstr "Уебсайт на Органа за защита на данните"
287
+
288
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:148
289
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:293
290
+ msgctxt "(Admin)"
291
+ msgid "Data Protection Authority Email"
292
+ msgstr "Имейл за защитата на данни"
293
+
294
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:155
295
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:300
296
+ msgctxt "(Admin)"
297
+ msgid "Data Protection Authority Phone"
298
+ msgstr "Орган за защита на данните"
299
+
300
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:165
301
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:175
302
+ msgctxt "(Admin)"
303
+ msgid "Data Protection Officer"
304
+ msgstr "Служителя за защита на данните"
305
+
306
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:168
307
+ msgctxt "(Admin)"
308
+ msgid "Knowledge base: Do I need to appoint a Data Protection Officer?"
309
+ msgstr "База знания: Трябва ли да назнача служител по защита на данните?"
310
+
311
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:182
312
+ msgctxt "(Admin)"
313
+ msgid "Data Protection Officer Name"
314
+ msgstr "Име на Служителя по защита на данните"
315
+
316
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:190
317
+ msgctxt "(Admin)"
318
+ msgid "Data Protection Officer Email"
319
+ msgstr "Email на Служителя по защита на данните"
320
+
321
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:216
322
+ msgctxt "(Admin)"
323
+ msgid "Contact Email"
324
+ msgstr "Email за конакт"
325
+
326
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:235
327
+ msgctxt "(Admin)"
328
+ msgid "Representative Contact"
329
+ msgstr "Представителен контакти"
330
+
331
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:238
332
+ msgctxt "(Admin)"
333
+ msgid "Knowledge base: Do I need to appoint an EU-based representative?"
334
+ msgstr "База знания: Трябва ли да назнача представител на ЕС?"
335
+
336
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:317
337
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:324
338
+ msgctxt "(Admin)"
339
+ msgid "DPO Name"
340
+ msgstr "ДПО Име"
341
+
342
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:420
343
+ msgctxt "(Admin)"
344
+ msgid "Save & Generate Policy"
345
+ msgstr "Запазване и генериране на правила"
346
+
347
+ #: src/Components/PrivacyPolicy/PrivacyPolicy.php:82
348
+ #: src/Installer/Installer.php:271 src/Installer/Steps/PolicySettings.php:199
349
+ #: views/themes/storefront/footer.php:3
350
+ #: views/themes/twentyseventeen/footer.php:3
351
+ #: views/themes/twentysixteen/footer.php:4
352
+ msgid "Privacy Policy"
353
+ msgstr "Политика за Лични данни"
354
+
355
+ #: src/Components/PrivacyToolsPage/PrivacyToolsPageShortcode.php:19
356
+ msgid "This page is currently disabled."
357
+ msgstr "Тази страница не е активна."
358
+
359
+ #: src/Components/PrivacyToolsPage/PrivacyToolsPageShortcode.php:35
360
+ #: src/Installer/Installer.php:279
361
+ #: src/Installer/Steps/ConfigurationPages.php:55
362
+ #: views/themes/storefront/footer.php:7
363
+ #: views/themes/twentyseventeen/footer.php:7
364
+ #: views/themes/twentysixteen/footer.php:9
365
+ msgid "Privacy Tools"
366
+ msgstr "Управление на Лични данни"
367
+
368
+ #: src/Components/Support/AdminTabSupport.php:13
369
+ #: src/Components/Support/AdminTabSupport.php:20
370
+ msgctxt "(Admin)"
371
+ msgid "Support"
372
+ msgstr ""
373
+
374
+ #: src/Components/WordpressComments/WordpressComments.php:90
375
+ #, php-format
376
+ msgid "%sERROR:%s You need to accept the privacy policy to post a comment."
377
+ msgstr ""
378
+ "%sГРЕШКА:%s Трябва да приемете декларацията за поверителност, за да "
379
+ "публикувате коментар."
380
+
381
+ #: src/Components/WordpressUser/Controllers/DashboardDataPageController.php:54
382
+ #: views/privacy-tools/notices.php:19
383
+ msgid "We have received your request and will reply within 30 days."
384
+ msgstr "Получихме Вашето искане и ще отговорим в рамките на 30 дни."
385
+
386
+ #: src/Components/WordpressUser/Controllers/DashboardDataPageController.php:59
387
+ #: views/privacy-tools/notices.php:15
388
+ msgid "Consent withdrawn."
389
+ msgstr "Съгласието е оттеглено."
390
+
391
+ #: src/Components/WordpressUser/RegistrationForm.php:42
392
+ msgid "<strong>ERROR</strong>: You must accept the terms and conditions."
393
+ msgstr "<strong>ERROR</strong>: Трябва да приемете Общите условия."
394
+
395
+ #: src/Components/WordpressUser/WordpressUser.php:63
396
+ #: src/Components/WordpressUser/WordpressUser.php:64
397
+ #: views/modules/wordpress-user/dashboard/data-page/header.php:2
398
+ msgctxt "(Admin)"
399
+ msgid "Privacy Tools"
400
+ msgstr "Управление на Лични данни"
401
+
402
+ #: src/DataSubject/AdminTabDataSubject.php:27
403
+ #: src/DataSubject/AdminTabDataSubject.php:41
404
+ msgctxt "(Admin)"
405
+ msgid "Data Subjects"
406
+ msgstr "Субекти на данни"
407
+
408
+ #: src/DataSubject/DataRepository.php:143
409
+ msgid "Data exported"
410
+ msgstr "Данните са Експортирани"
411
+
412
+ #: src/DataSubject/DataRepository.php:158
413
+ msgid "Data export request"
414
+ msgstr "Заявка за Експорт на данни"
415
+
416
+ #: src/DataSubject/DataRepository.php:171
417
+ msgid "Data removed"
418
+ msgstr "Данните са премахнати"
419
+
420
+ #: src/DataSubject/DataRepository.php:186
421
+ msgid "Data removal request"
422
+ msgstr "Заявка за премахване на Данни"
423
+
424
+ #: src/DataSubject/DataSubjectIdentificator.php:65
425
+ #: src/DataSubject/DataSubjectIdentificator.php:82
426
+ msgid "Your personal data on"
427
+ msgstr "Вашите лични данни за"
428
+
429
+ #: src/Helpers.php:27
430
+ msgctxt "(Admin)"
431
+ msgid "Austria"
432
+ msgstr ""
433
+
434
+ #: src/Helpers.php:28
435
+ msgctxt "(Admin)"
436
+ msgid "Belgium"
437
+ msgstr ""
438
+
439
+ #: src/Helpers.php:29
440
+ msgctxt "(Admin)"
441
+ msgid "Bulgaria"
442
+ msgstr ""
443
+
444
+ #: src/Helpers.php:30
445
+ msgctxt "(Admin)"
446
+ msgid "Croatia"
447
+ msgstr ""
448
+
449
+ #: src/Helpers.php:31
450
+ msgctxt "(Admin)"
451
+ msgid "Cyprus"
452
+ msgstr ""
453
+
454
+ #: src/Helpers.php:32
455
+ msgctxt "(Admin)"
456
+ msgid "Czech Republic"
457
+ msgstr ""
458
+
459
+ #: src/Helpers.php:33
460
+ msgctxt "(Admin)"
461
+ msgid "Denmark"
462
+ msgstr ""
463
+
464
+ #: src/Helpers.php:34
465
+ msgctxt "(Admin)"
466
+ msgid "Estonia"
467
+ msgstr ""
468
+
469
+ #: src/Helpers.php:35
470
+ msgctxt "(Admin)"
471
+ msgid "Finland"
472
+ msgstr ""
473
+
474
+ #: src/Helpers.php:36
475
+ msgctxt "(Admin)"
476
+ msgid "France"
477
+ msgstr ""
478
+
479
+ #: src/Helpers.php:37
480
+ msgctxt "(Admin)"
481
+ msgid "Germany"
482
+ msgstr ""
483
+
484
+ #: src/Helpers.php:38
485
+ msgctxt "(Admin)"
486
+ msgid "Greece"
487
+ msgstr ""
488
+
489
+ #: src/Helpers.php:39
490
+ msgctxt "(Admin)"
491
+ msgid "Hungary"
492
+ msgstr ""
493
+
494
+ #: src/Helpers.php:40
495
+ msgctxt "(Admin)"
496
+ msgid "Ireland"
497
+ msgstr ""
498
+
499
+ #: src/Helpers.php:41
500
+ msgctxt "(Admin)"
501
+ msgid "Italy"
502
+ msgstr ""
503
+
504
+ #: src/Helpers.php:42
505
+ msgctxt "(Admin)"
506
+ msgid "Latvia"
507
+ msgstr ""
508
+
509
+ #: src/Helpers.php:43
510
+ msgctxt "(Admin)"
511
+ msgid "Lithuania"
512
+ msgstr ""
513
+
514
+ #: src/Helpers.php:44
515
+ msgctxt "(Admin)"
516
+ msgid "Luxembourg"
517
+ msgstr ""
518
+
519
+ #: src/Helpers.php:45
520
+ msgctxt "(Admin)"
521
+ msgid "Malta"
522
+ msgstr ""
523
+
524
+ #: src/Helpers.php:46
525
+ msgctxt "(Admin)"
526
+ msgid "Netherlands"
527
+ msgstr ""
528
+
529
+ #: src/Helpers.php:47
530
+ msgctxt "(Admin)"
531
+ msgid "Poland"
532
+ msgstr ""
533
+
534
+ #: src/Helpers.php:48
535
+ msgctxt "(Admin)"
536
+ msgid "Portugal"
537
+ msgstr ""
538
+
539
+ #: src/Helpers.php:49
540
+ msgctxt "(Admin)"
541
+ msgid "Romania"
542
+ msgstr ""
543
+
544
+ #: src/Helpers.php:50
545
+ msgctxt "(Admin)"
546
+ msgid "Slovakia"
547
+ msgstr ""
548
+
549
+ #: src/Helpers.php:51
550
+ msgctxt "(Admin)"
551
+ msgid "Slovenia"
552
+ msgstr ""
553
+
554
+ #: src/Helpers.php:52
555
+ msgctxt "(Admin)"
556
+ msgid "Spain"
557
+ msgstr ""
558
+
559
+ #: src/Helpers.php:53
560
+ msgctxt "(Admin)"
561
+ msgid "Sweden"
562
+ msgstr ""
563
+
564
+ #: src/Helpers.php:54
565
+ msgctxt "(Admin)"
566
+ msgid "United Kingdom"
567
+ msgstr ""
568
+
569
+ #: src/Helpers.php:69
570
+ msgctxt "(Admin)"
571
+ msgid "Iceland"
572
+ msgstr ""
573
+
574
+ #: src/Helpers.php:70
575
+ msgctxt "(Admin)"
576
+ msgid "Norway"
577
+ msgstr ""
578
+
579
+ #: src/Helpers.php:71
580
+ msgctxt "(Admin)"
581
+ msgid "Liechtenstein"
582
+ msgstr ""
583
+
584
+ #: src/Helpers.php:72
585
+ msgctxt "(Admin)"
586
+ msgid "Switzerland"
587
+ msgstr ""
588
+
589
+ #: src/Helpers.php:73
590
+ msgctxt "(Admin)"
591
+ msgid "United States"
592
+ msgstr ""
593
+
594
+ #: src/Helpers.php:74
595
+ msgctxt "(Admin)"
596
+ msgid "Rest of the world"
597
+ msgstr "Останалата част от света"
598
+
599
+ #: src/Helpers.php:145
600
+ msgid "An error has occurred. Please contact the site administrator."
601
+ msgstr "Възникна грешка. Моля, свържете се с администратора на сайта."
602
+
603
+ #: src/Installer/Installer.php:135
604
+ msgctxt "(Admin)"
605
+ msgid "Setup Wizard"
606
+ msgstr "Помощник за инсталиране"
607
+
608
+ #: src/Installer/Steps/ConfigurationPages.php:23
609
+ #: src/Installer/Steps/PolicySettings.php:23
610
+ #: src/Installer/Steps/PolicySettings.php:48
611
+ msgctxt "(Admin)"
612
+ msgid "&mdash; Create a new page &mdash;"
613
+ msgstr "&mdash; Създайте нова страница &mdash;"
614
+
615
+ #: src/Installer/Steps/PolicySettings.php:38
616
+ msgctxt "(Admin)"
617
+ msgid ""
618
+ "We have automatically selected your WooCommerce Terms & Conditions page."
619
+ msgstr ""
620
+ "Ние автоматично сме избрали Вашата Условия за Условия за търговия на "
621
+ "WooCommerce."
622
+
623
+ #: src/Modules/ContactForm7/ContactForm7.php:35
624
+ msgctxt "(Admin)"
625
+ msgid "gdpr terms txt"
626
+ msgstr "gdpr термини txt"
627
+
628
+ #: src/Router.php:80 src/Router.php:92 src/Router.php:125 src/Router.php:141
629
+ #, php-format
630
+ msgid "Nonce error for action \"%s\". Please go back and try again!"
631
+ msgstr "Nonce error for action \"%s\". Please go back and try again!"
632
+
633
+ #: src/Router.php:149
634
+ msgctxt "(Admin)"
635
+ msgid "You do not have the required permissions to perform this action!"
636
+ msgstr "Нямате необходимите разрешения за изпълнение на това действие!"
637
+
638
+ #: views/admin/consent.php:3
639
+ msgctxt "(Admin)"
640
+ msgid "Default consent types"
641
+ msgstr "Стандартни типове съгласие"
642
+
643
+ #: views/admin/consent.php:4
644
+ msgctxt "(Admin)"
645
+ msgid ""
646
+ "These are the consent types that have been automatically registered by the "
647
+ "framework or a plugin."
648
+ msgstr ""
649
+ "Това са типовете съгласие, които са били автоматично регистрирани от рамката "
650
+ "или приставката."
651
+
652
+ #: views/admin/consent.php:7 views/admin/consent.php:52
653
+ msgctxt "(Admin)"
654
+ msgid "Slug"
655
+ msgstr "плужек"
656
+
657
+ #: views/admin/consent.php:8 views/admin/consent.php:38
658
+ #: views/admin/consent.php:60
659
+ msgctxt "(Admin)"
660
+ msgid "Title"
661
+ msgstr "Заглавие"
662
+
663
+ #: views/admin/consent.php:9 views/admin/consent.php:41
664
+ #: views/admin/consent.php:63
665
+ msgctxt "(Admin)"
666
+ msgid "Description"
667
+ msgstr "Описание"
668
+
669
+ #: views/admin/consent.php:10
670
+ msgctxt "(Admin)"
671
+ msgid "Visibility"
672
+ msgstr "Видимост"
673
+
674
+ #: views/admin/consent.php:18
675
+ msgctxt "(Admin)"
676
+ msgid "Visible"
677
+ msgstr "Видимо"
678
+
679
+ #: views/admin/consent.php:20
680
+ msgctxt "(Admin)"
681
+ msgid "Hidden"
682
+ msgstr "Скрито"
683
+
684
+ #: views/admin/consent.php:29
685
+ msgctxt "(Admin)"
686
+ msgid "Custom consent types"
687
+ msgstr "Типове персонализирано съгласие"
688
+
689
+ #: views/admin/consent.php:30
690
+ msgctxt "(Admin)"
691
+ msgid ""
692
+ "Here you can add custom consent types to track. They will not be used "
693
+ "anywhere by default - you will need to build an integration for each of them."
694
+ msgstr ""
695
+ "Тук можете да добавяте персонализирани типове съгласие за проследяване. Те "
696
+ "няма да бъдат използвани никъде по подразбиране - ще трябва да изградите "
697
+ "интеграция за всеки от тях."
698
+
699
+ #: views/admin/consent.php:35
700
+ msgctxt "(Admin)"
701
+ msgid "Machine-readable slug"
702
+ msgstr "Машинно четене"
703
+
704
+ #: views/admin/consent.php:44 views/admin/consent.php:68
705
+ msgctxt "(Admin)"
706
+ msgid "Visible?"
707
+ msgstr "Видим?"
708
+
709
+ #: views/admin/consent.php:72
710
+ msgctxt "(Admin)"
711
+ msgid "Remove"
712
+ msgstr "Премахни"
713
+
714
+ #: views/admin/consent.php:93
715
+ msgctxt "(Admin)"
716
+ msgid "Additional info"
717
+ msgstr "ПОВЕЧЕ ИНФОРМАЦИЯ"
718
+
719
+ #: views/admin/consent.php:95
720
+ msgctxt "(Admin)"
721
+ msgid ""
722
+ "This text will be displayed to your data subjects on the Privacy Tools page."
723
+ msgstr ""
724
+ "Този текст ще се покаже на субектите Ви на данни на страницата Инструменти "
725
+ "за поверителност."
726
+
727
+ #: views/admin/data-subjects/search-form.php:2
728
+ msgctxt "(Admin)"
729
+ msgid ""
730
+ "On this page, you can find which data subjects personal data you are storing "
731
+ "and download, export or delete it."
732
+ msgstr ""
733
+ "На тази страница можете да намерите кои данни за лични данни съхранявате и "
734
+ "изтегляте, експортирате или изтривате."
735
+
736
+ #: views/admin/data-subjects/search-form.php:10
737
+ msgctxt "(Admin)"
738
+ msgid "Find data subject by email"
739
+ msgstr "Намери данни по Email"
740
+
741
+ #: views/admin/data-subjects/search-form.php:11
742
+ msgctxt "(Admin)"
743
+ msgid "Email address"
744
+ msgstr "Email адрес"
745
+
746
+ #: views/admin/data-subjects/search-form.php:16
747
+ msgctxt "(Admin)"
748
+ msgid "Search"
749
+ msgstr "ТЪРСИ"
750
+
751
+ #: views/admin/data-subjects/search-results.php:7
752
+ msgctxt "(Admin)"
753
+ msgid "Username"
754
+ msgstr "ПОТРЕБИТЕЛСКО ИМЕ"
755
+
756
+ #: views/admin/data-subjects/search-results.php:12
757
+ msgctxt "(Admin)"
758
+ msgid "is not a registered user."
759
+ msgstr "не е регистриран потребител."
760
+
761
+ #: views/admin/data-subjects/search-results.php:16
762
+ msgctxt "(Admin)"
763
+ msgid "Download data (html)"
764
+ msgstr "Свали данните (html) формат"
765
+
766
+ #: views/admin/data-subjects/search-results.php:17
767
+ msgctxt "(Admin)"
768
+ msgid "Export data (json)"
769
+ msgstr "Свали данните (json) формат"
770
+
771
+ #: views/admin/data-subjects/search-results.php:21
772
+ msgctxt "(Admin)"
773
+ msgid ""
774
+ "This user has admin capabilities. Deleting data via this interface is "
775
+ "disabled."
776
+ msgstr ""
777
+ "Този потребител има администраторски възможности. Изтриването на данни през "
778
+ "този интерфейс е деактивирано."
779
+
780
+ #: views/admin/data-subjects/search-results.php:24
781
+ msgctxt "(Admin)"
782
+ msgid "Anonymize data"
783
+ msgstr "Анонимни данни"
784
+
785
+ #: views/admin/data-subjects/search-results.php:25
786
+ msgctxt "(Admin)"
787
+ msgid "Delete data"
788
+ msgstr "Изтрий данните"
789
+
790
+ #: views/admin/data-subjects/search-results.php:29
791
+ msgctxt "(Admin)"
792
+ msgid "No data found!"
793
+ msgstr "Нищо не е намерено"
794
+
795
+ #: views/admin/general/delete-action-email.php:5
796
+ #: views/admin/general/export-action-email.php:5
797
+ #: views/installer/steps/configuration-settings.php:29
798
+ #: views/installer/steps/configuration-settings.php:79
799
+ msgid "Email address"
800
+ msgstr "Email адрес"
801
+
802
+ #: views/admin/general/delete-action-reassign.php:3
803
+ #: views/installer/steps/configuration-settings.php:50
804
+ msgctxt "(Admin)"
805
+ msgid "Delete content"
806
+ msgstr "Изтриване на съдържание"
807
+
808
+ #: views/admin/general/delete-action-reassign.php:6
809
+ #: views/installer/steps/configuration-settings.php:53
810
+ msgctxt "(Admin)"
811
+ msgid "Reassign content to a user"
812
+ msgstr "Преназначаване съдържание на потребител"
813
+
814
+ #: views/admin/general/delete-action-reassign.php:10
815
+ msgctxt "(Admin)"
816
+ msgid ""
817
+ "If the user has submitted any content on your site, should it be deleted or "
818
+ "reassigned to another user?"
819
+ msgstr ""
820
+ "Ако потребителят е изпратил съдържание на сайта Ви, трябва ли да бъде изтрит "
821
+ "или превъзложен на друг потребител?"
822
+
823
+ #: views/admin/general/description-data-page.php:2
824
+ msgctxt "(Admin)"
825
+ msgid ""
826
+ "Select the page where users can go to control their data. This page must "
827
+ "contain the [gdpr_privacy_tools] shortcode."
828
+ msgstr ""
829
+ "Изберете страницата, на която потребителите могат да отидат да контролират "
830
+ "данните си. Тази страница трябва да съдържа този код [gdpr_privacy_tools]"
831
+
832
+ #: views/admin/general/enable.php:9
833
+ msgctxt "(Admin)"
834
+ msgid "Enable the view, export and forget functionality for users and visitors"
835
+ msgstr ""
836
+ "Активирайте изгледа, експортирайте и забравете функционалността на "
837
+ "потребителите и посетителите"
838
+
839
+ #: views/admin/general/enable.php:12
840
+ msgctxt "(Admin)"
841
+ msgid ""
842
+ "Enable the Privacy Tools page on front-end and dashboard. This allows "
843
+ "visitors to request viewing and deleting their personal data and withdraw "
844
+ "consents."
845
+ msgstr ""
846
+ "Активирайте страницата Инструменти за поверителност на предния и на таблото "
847
+ "за управление. Това позволява на посетителите да изискват преглеждането и "
848
+ "изтриването на личните им данни и да оттеглят съгласието си."
849
+
850
+ #: views/admin/general/theme-compatibility.php:9
851
+ #: views/installer/steps/integrations.php:21
852
+ msgctxt "(Admin)"
853
+ msgid ""
854
+ "Automatically add Privacy Policy and Privacy Tools links to your site footer."
855
+ msgstr ""
856
+ "Автоматично добавяне на страниците Политика за лични данни и Управление на "
857
+ "лични данни в долната част на сайта."
858
+
859
+ #: views/admin/notices/header.php:4 views/admin/settings-page.php:3
860
+ #: views/installer/header.php:23
861
+ msgctxt "(Admin)"
862
+ msgid "The GDPR Framework"
863
+ msgstr "Рамката на GDPR"
864
+
865
+ #: views/admin/notices/helper-autoinstall.php:2
866
+ msgctxt "(Admin)"
867
+ msgid ""
868
+ "A Privacy Policy page has been created, but it is empty. You can generate a "
869
+ "policy template on this page."
870
+ msgstr ""
871
+ "Страницата с правила за поверителност е създадена, но е празна. Можете да "
872
+ "генерирате шаблон за правила на тази страница."
873
+
874
+ #: views/admin/notices/helper-policy.php:2
875
+ msgctxt "(Admin)"
876
+ msgid ""
877
+ "Heads up - your Privacy Policy still requires some attention. Find the "
878
+ "places marked with [TODO] and replace them with real content!"
879
+ msgstr ""
880
+ "Глави - Вашата политика за поверителност все още изисква известно внимание. "
881
+ "Намерете местата, маркирани с [TODO], и ги заменете с истинско съдържание!"
882
+
883
+ #: views/admin/notices/helper-tools.php:2
884
+ msgctxt "(Admin)"
885
+ msgid ""
886
+ "The contents of this page should contain the [gdpr_privacy_tools] shortcode."
887
+ msgstr ""
888
+ "Съдържанието на тази страница трябва да съдържа краткия код "
889
+ "[gdpr_privacy_tools]."
890
+
891
+ #: views/admin/privacy-policy/description-policy-page.php:2
892
+ msgctxt "(Admin)"
893
+ msgid "Select the page which will contain your Privacy Policy"
894
+ msgstr "Изберете страницата, която ще съдържа вашата Политика за Лични данни"
895
+
896
+ #: views/admin/privacy-policy/generated.php:3
897
+ msgctxt "(Admin)"
898
+ msgid "Your Privacy Policy has been generated."
899
+ msgstr "Политиката за Лични данни беше генерирана."
900
+
901
+ #: views/admin/privacy-policy/generated.php:20
902
+ msgctxt "(Admin)"
903
+ msgid "&laquo; Back"
904
+ msgstr "&laquo; Назад"
905
+
906
+ #: views/admin/privacy-policy/header.php:2
907
+ msgctxt "(Admin)"
908
+ msgid ""
909
+ "This page allows you to generate a Privacy Policy based on the information "
910
+ "you entered below."
911
+ msgstr ""
912
+ "Тази страница ви позволява да генерирате Политика за личните данни въз "
913
+ "основа на въведената по-долу информация."
914
+
915
+ #: views/admin/settings-page.php:31
916
+ #, php-format
917
+ msgctxt "(Admin)"
918
+ msgid "The GDPR Framework. Built with &#9829; by %sCodelight%s."
919
+ msgstr "Рамката на GDPR. Построен с & # 9829; от% sЦветна светлина% s."
920
+
921
+ #: views/admin/support/contents.php:5 views/installer/steps/finish.php:10
922
+ msgctxt "(Admin)"
923
+ msgid "Need more info?"
924
+ msgstr "Нуждаете се от повече информация?"
925
+
926
+ #: views/admin/support/contents.php:11 views/installer/steps/finish.php:16
927
+ msgctxt "(Admin)"
928
+ msgid "Site Owner's guide to GDPR"
929
+ msgstr "Ръководство на собственика на сайта за GDPR"
930
+
931
+ #: views/admin/support/contents.php:14 views/installer/steps/finish.php:19
932
+ msgctxt "(Admin)"
933
+ msgid "Read the full guide on GDPR compliance."
934
+ msgstr "Прочетете пълния наръчник за съответствие с GDPR."
935
+
936
+ #: views/admin/support/contents.php:20 views/installer/steps/finish.php:25
937
+ msgctxt "(Admin)"
938
+ msgid "Knowledge base"
939
+ msgstr "Знание"
940
+
941
+ #: views/admin/support/contents.php:23 views/installer/steps/finish.php:28
942
+ msgctxt "(Admin)"
943
+ msgid "Check out the knowledge base for common questions and answers."
944
+ msgstr "Проверете базата знания за често срещани въпроси и отговори."
945
+
946
+ #: views/admin/support/contents.php:29 views/installer/steps/finish.php:34
947
+ msgctxt "(Admin)"
948
+ msgid "Developer's guide to GDPR"
949
+ msgstr "Ръководство за програмисти за GDPR"
950
+
951
+ #: views/admin/support/contents.php:32 views/installer/steps/finish.php:37
952
+ msgctxt "(Admin)"
953
+ msgid "We have a thorough guide to help making custom sites compliant."
954
+ msgstr ""
955
+ "Имаме задълбочено ръководство, което ни помага да направим персонализираните "
956
+ "сайтове съвместими."
957
+
958
+ #: views/admin/support/contents.php:40 views/installer/steps/finish.php:45
959
+ msgctxt "(Admin)"
960
+ msgid "Need help?"
961
+ msgstr "Нужда от помощ?"
962
+
963
+ #: views/admin/support/contents.php:46 views/installer/steps/finish.php:51
964
+ msgctxt "(Admin)"
965
+ msgid "Submit a support request"
966
+ msgstr "Изпратете заявка за поддръжка"
967
+
968
+ #: views/admin/support/contents.php:49 views/installer/steps/finish.php:54
969
+ msgctxt "(Admin)"
970
+ msgid ""
971
+ "Found a bug or problem with the plugin? Post in the wordpress.org support "
972
+ "forum."
973
+ msgstr ""
974
+ "Намерихте ли бъг или проблем с приставката? Публикувайте във форума за "
975
+ "поддръжка на wordpress.org."
976
+
977
+ #: views/admin/support/contents.php:55 views/installer/steps/finish.php:60
978
+ msgctxt "(Admin)"
979
+ msgid "Request a consultation"
980
+ msgstr "Поискайте консултация"
981
+
982
+ #: views/admin/support/contents.php:58 views/installer/steps/finish.php:63
983
+ msgctxt "(Admin)"
984
+ msgid ""
985
+ "Need development or legal assistance in making your site compliant? We can "
986
+ "help!"
987
+ msgstr ""
988
+ "Нуждаете се от развитие или правна помощ за привеждане на сайта Ви в "
989
+ "съответствие? Можем да помогнем!"
990
+
991
+ #: views/admin/wizard-buttons.php:2
992
+ msgctxt "(Admin)"
993
+ msgid "Restart setup wizard"
994
+ msgstr "Рестартирай настройката"
995
+
996
+ #: views/email/action-export.php:8 views/email/action-forget.php:12
997
+ msgctxt "(Admin)"
998
+ msgid ""
999
+ "This email is just for your information. You don't need to take any action"
1000
+ msgstr ""
1001
+ "Този имейл е само за вашата информация. Не е необходимо да предприемате "
1002
+ "никакви действия"
1003
+
1004
+ #: views/email/action-forget.php:8
1005
+ msgctxt "(Admin)"
1006
+ msgid "The data subject had a user account on your website."
1007
+ msgstr "Субектът на данните има потребителски профил на уебсайта Ви."
1008
+
1009
+ #: views/email/identify-data-subject.php:2
1010
+ msgid "Someone has requested access to your data on"
1011
+ msgstr "Някой е поискал достъп до данните ви"
1012
+
1013
+ #: views/email/identify-data-subject.php:3
1014
+ msgid "If this was a mistake, just ignore this email and nothing will happen."
1015
+ msgstr ""
1016
+ "Ако това е грешка, просто игнорирайте този имейл и нищо няма да се случи. "
1017
+ "Никой няма да има достъп до Вашите данни, ако няма по - долния линк. За "
1018
+ "всеки случай ни уведомете на Email: privacy@zankov-group.com"
1019
+
1020
+ #: views/email/identify-data-subject.php:4
1021
+ msgid "To manage your data, visit the following address:"
1022
+ msgstr "За да управлявате данните си, посетете следния адрес:"
1023
+
1024
+ #: views/email/identify-data-subject.php:10
1025
+ msgid "This link is valid for 15 minutes."
1026
+ msgstr "Този линк ще бъде валиден само за 15 мин."
1027
+
1028
+ #: views/email/no-data.php:2
1029
+ msgid "Someone has requested information about your personal data on"
1030
+ msgstr "Някой е поискал информация за вашите лични данни"
1031
+
1032
+ #: views/email/no-data.php:3
1033
+ msgid "None of your personal data is stored on"
1034
+ msgstr "Не съхраняваме Ваши лични данни"
1035
+
1036
+ #: views/email/no-data.php:5
1037
+ msgid ""
1038
+ "If this was a mistake or you did not request this email, just ignore it and "
1039
+ "nothing will happen."
1040
+ msgstr ""
1041
+ "Ако това е грешка, просто игнорирайте този имейл и нищо няма да се случи. "
1042
+ "Никой няма да има достъп до Вашите данни, ако няма по - долния линк. За "
1043
+ "всеки случай ни уведомете на Email: privacy@zankov-group.com"
1044
+
1045
+ #: views/email/request-export.php:13 views/email/request-forget.php:13
1046
+ msgctxt "(Admin)"
1047
+ msgid "As a reminder: according to GDPR, you have 30 days to comply."
1048
+ msgstr "Напомняне: според GDPR имате 30 дни, за да се съобразите."
1049
+
1050
+ #: views/global/delete-action.php:2
1051
+ msgctxt "(Admin)"
1052
+ msgid "Automatically anonymize data"
1053
+ msgstr "Автоматично анонимизиране на данните"
1054
+
1055
+ #: views/global/delete-action.php:5
1056
+ msgctxt "(Admin)"
1057
+ msgid "Automatically delete data"
1058
+ msgstr "Автоматично изтриване на данните"
1059
+
1060
+ #: views/global/delete-action.php:9
1061
+ msgctxt "(Admin)"
1062
+ msgid "Automatically anonymize data and notify me via email"
1063
+ msgstr "Автоматично анонимизиране на данните и уведомяване чрез Email."
1064
+
1065
+ #: views/global/delete-action.php:13
1066
+ msgctxt "(Admin)"
1067
+ msgid "Automatically delete data and notify me via email"
1068
+ msgstr "Автоматично изтриване на данните и уведомяване чрез Email."
1069
+
1070
+ #: views/global/delete-action.php:16 views/global/export-action.php:10
1071
+ msgctxt "(Admin)"
1072
+ msgid "Only notify me via email"
1073
+ msgstr "Само ме уведоми чрез Email."
1074
+
1075
+ #: views/global/export-action.php:2
1076
+ msgctxt "(Admin)"
1077
+ msgid "Automatically download data"
1078
+ msgstr "Автоматично сваляне на данните"
1079
+
1080
+ #: views/global/export-action.php:6
1081
+ msgctxt "(Admin)"
1082
+ msgid "Automatically download data and notify me via email"
1083
+ msgstr "Автоматично сваляне на данните и уведомяване чрез Email."
1084
+
1085
+ #: views/installer/continue-notice.php:2
1086
+ msgctxt "(Admin)"
1087
+ msgid "The The GDPR Framework setup has not been finalized yet."
1088
+ msgstr "Настройката на GDPR все още не е финализирана."
1089
+
1090
+ #: views/installer/continue-notice.php:3
1091
+ msgctxt "(Admin)"
1092
+ msgid "You can continue the setup at any time."
1093
+ msgstr "Можете да продължите настройката по всяко време."
1094
+
1095
+ #: views/installer/continue-notice.php:6
1096
+ msgctxt "(Admin)"
1097
+ msgid "Continue the setup wizard"
1098
+ msgstr "Продължи с настройката"
1099
+
1100
+ #: views/installer/continue-notice.php:9
1101
+ msgctxt "(Admin)"
1102
+ msgid "Hide this message"
1103
+ msgstr "Скрий съобщението"
1104
+
1105
+ #: views/installer/footer.php:7
1106
+ msgid "Back"
1107
+ msgstr "Назад"
1108
+
1109
+ #: views/installer/header.php:26
1110
+ msgctxt "(Admin)"
1111
+ msgid "I need help"
1112
+ msgstr "Нуждая се от помощ"
1113
+
1114
+ #: views/installer/header.php:29
1115
+ msgctxt "(Admin)"
1116
+ msgid "Developer Docs"
1117
+ msgstr "Документация за програмисти"
1118
+
1119
+ #: views/installer/header.php:36
1120
+ msgctxt "(Admin)"
1121
+ msgid "Configuration"
1122
+ msgstr "Конфигурация"
1123
+
1124
+ #: views/installer/header.php:46
1125
+ msgctxt "(Admin)"
1126
+ msgid "Forms & Consent"
1127
+ msgstr "Форми и съгласие"
1128
+
1129
+ #: views/installer/header.php:51
1130
+ msgctxt "(Admin)"
1131
+ msgid "Integrations"
1132
+ msgstr "Интеграции"
1133
+
1134
+ #: views/installer/steps/configuration-settings.php:23
1135
+ #: views/installer/steps/configuration-settings.php:73
1136
+ msgctxt "(Admin)"
1137
+ msgid "Enter the email address to notify"
1138
+ msgstr "Въведете имейл адреса за уведомяване"
1139
+
1140
+ #: views/installer/steps/disclaimer.php:21
1141
+ msgctxt "(Admin)"
1142
+ msgid "I accept"
1143
+ msgstr "Приемам"
1144
+
1145
+ #: views/installer/welcome-notice.php:7
1146
+ msgctxt "(Admin)"
1147
+ msgid "Run the setup wizard"
1148
+ msgstr "Пуснете помощника за настройка"
1149
+
1150
+ #: views/installer/welcome-notice.php:11
1151
+ msgctxt "(Admin)"
1152
+ msgid "Auto-install pages"
1153
+ msgstr "Автоматично инсталиране на страници"
1154
+
1155
+ #: views/installer/welcome-notice.php:15
1156
+ msgctxt "(Admin)"
1157
+ msgid "Skip and install manually"
1158
+ msgstr "Инсталирай ръчно"
1159
+
1160
+ #: views/modules/contact-form-7/generator-privacy.php:6
1161
+ msgctxt "(Admin)"
1162
+ msgid ""
1163
+ "This tag generates the default text for Terms & Conditions and/or Privacy "
1164
+ "Policy checkbox."
1165
+ msgstr ""
1166
+ "Този маркер генерира стандартния текст за чекбокса за Общи условия и / или "
1167
+ "Политика за Лични данни."
1168
+
1169
+ #: views/modules/contact-form-7/generator-privacy.php:15
1170
+ msgid "Insert"
1171
+ msgstr "Вмъкни"
1172
+
1173
+ #: views/modules/wordpress-comments/terms-checkbox.php:6
1174
+ #: views/modules/wordpress-user/registration-terms-checkbox.php:7
1175
+ #, php-format
1176
+ msgid "I accept the %sTerms and Conditions%s and the %sPrivacy Policy%s"
1177
+ msgstr "Приемам %sTerms and Conditions%s и %sPrivacy Policy%s"
1178
+
1179
+ #: views/modules/wordpress-user/dashboard/data-page/form-consent.php:3
1180
+ msgid "Manage consents"
1181
+ msgstr "Управлявайте съгласията"
1182
+
1183
+ #: views/modules/wordpress-user/dashboard/data-page/form-consent.php:6
1184
+ #: views/privacy-tools/form-consent.php:6
1185
+ msgid "Here you can withdraw any consents you have given."
1186
+ msgstr "Тук можете да оттеглите всички съгласия, които сте дали."
1187
+
1188
+ #: views/modules/wordpress-user/dashboard/data-page/form-consent.php:8
1189
+ #: views/privacy-tools/form-consent.php:9
1190
+ msgid "Consent types"
1191
+ msgstr "Типове съгласие"
1192
+
1193
+ #: views/modules/wordpress-user/dashboard/data-page/form-consent.php:23
1194
+ #: views/privacy-tools/form-consent.php:24
1195
+ msgid "Withdraw"
1196
+ msgstr "Оттегляне"
1197
+
1198
+ #: views/modules/wordpress-user/dashboard/data-page/form-delete.php:5
1199
+ #: views/modules/wordpress-user/dashboard/profile-page/form-delete.php:5
1200
+ msgctxt "(Admin)"
1201
+ msgid "Delete this user and all data"
1202
+ msgstr "Изтрийте този потребител и всички данни"
1203
+
1204
+ #: views/modules/wordpress-user/dashboard/data-page/form-delete.php:11
1205
+ msgctxt "(Admin)"
1206
+ msgid "Delete my data"
1207
+ msgstr "Изтрий данните ми"
1208
+
1209
+ #: views/modules/wordpress-user/dashboard/data-page/form-delete.php:15
1210
+ #: views/privacy-tools/form-delete.php:13
1211
+ msgid "Delete all data we have gathered about you."
1212
+ msgstr "Изтрийте всички данни, които сме събрали за вас."
1213
+
1214
+ #: views/modules/wordpress-user/dashboard/data-page/form-delete.php:16
1215
+ #: views/privacy-tools/form-delete.php:14
1216
+ msgid "If you have a user account on our site, it will also be deleted."
1217
+ msgstr "Ако имате потребителски акаунт на нашия сайт, той също ще бъде изтрит."
1218
+
1219
+ #: views/modules/wordpress-user/dashboard/data-page/form-delete.php:17
1220
+ #: views/privacy-tools/form-delete.php:15
1221
+ msgid "Be careful - this action is permanent and CANNOT be undone."
1222
+ msgstr "Бъдете внимателни - това действие е не може да бъде отменено."
1223
+
1224
+ #: views/modules/wordpress-user/dashboard/data-page/form-delete.php:22
1225
+ #: views/modules/wordpress-user/dashboard/profile-page/form-delete.php:23
1226
+ msgctxt "(Admin)"
1227
+ msgid ""
1228
+ "You seem to have an administrator or equivalent role, so deleting/"
1229
+ "anonymizing via this page is disabled."
1230
+ msgstr ""
1231
+ "Изглежда, че имате администратор или еквивалентна роля, така че "
1232
+ "изтриването / анонимирането чрез тази страница е деактивирано."
1233
+
1234
+ #: views/modules/wordpress-user/dashboard/form-export.php:7
1235
+ #: views/privacy-tools/form-export.php:1
1236
+ msgid "Download your data"
1237
+ msgstr "Изтеглете данните си"
1238
+
1239
+ #: views/modules/wordpress-user/dashboard/form-export.php:12
1240
+ #: views/privacy-tools/form-export.php:13
1241
+ msgid "Download as table"
1242
+ msgstr "Изтеглете в Таблица"
1243
+
1244
+ #: views/modules/wordpress-user/dashboard/form-export.php:15
1245
+ #: views/privacy-tools/form-export.php:22
1246
+ msgid "Export as JSON"
1247
+ msgstr "Експортирайте в JSON"
1248
+
1249
+ #: views/modules/wordpress-user/dashboard/form-export.php:19
1250
+ #: views/privacy-tools/form-export.php:4
1251
+ msgid "You can download all your data formatted as a table for viewing."
1252
+ msgstr ""
1253
+ "Можете да изтеглите всичките си данни, форматирани като таблица за преглед."
1254
+
1255
+ #: views/modules/wordpress-user/dashboard/form-export.php:20
1256
+ #: views/privacy-tools/form-export.php:5
1257
+ msgid "Alternatively, you can export it in machine-readable JSON format."
1258
+ msgstr "Друга възможност е да го експортирате във машинно четене JSON формат."
1259
+
1260
+ #: views/modules/wordpress-user/dashboard/profile-page/form-delete.php:11
1261
+ msgctxt "(Admin)"
1262
+ msgid "Delete user and all data"
1263
+ msgstr "Изтрий потребителя и всички данни"
1264
+
1265
+ #: views/modules/wordpress-user/dashboard/profile-page/form-delete.php:14
1266
+ msgctxt "(Admin)"
1267
+ msgid "Anonymize user and all data"
1268
+ msgstr "Анонимизиране на потребителя и всички данни"
1269
+
1270
+ #: views/modules/wordpress-user/dashboard/profile-page/header.php:2
1271
+ msgctxt "(Admin)"
1272
+ msgid "GDPR Data"
1273
+ msgstr "GDPR данни"
1274
+
1275
+ #: views/modules/wordpress-user/dashboard/profile-page/header.php:6
1276
+ msgctxt "(Admin)"
1277
+ msgid "This user has been anonymized."
1278
+ msgstr "Потребителя беше добавен, като анонимен."
1279
+
1280
+ #: views/modules/wordpress-user/dashboard/profile-page/table-consent.php:4
1281
+ msgctxt "(Admin)"
1282
+ msgid "Consents given"
1283
+ msgstr "Дадени съгласия"
1284
+
1285
+ #: views/modules/wordpress-user/dashboard/profile-page/table-consent.php:17
1286
+ msgctxt "(Admin)"
1287
+ msgid "No consents given"
1288
+ msgstr "Няма дадени съгласия"
1289
+
1290
+ #: views/privacy-tools/form-consent.php:2
1291
+ msgid "Consent"
1292
+ msgstr "Съгласие"
1293
+
1294
+ #: views/privacy-tools/form-delete.php:1
1295
+ #: views/privacy-tools/notice-admin-role.php:1
1296
+ msgid "Delete my user and data"
1297
+ msgstr "Изтрий ме, като потребител и данни."
1298
+
1299
+ #: views/privacy-tools/form-delete.php:7
1300
+ msgid "Delete my data"
1301
+ msgstr "Изтрий моите данни"
1302
+
1303
+ #: views/privacy-tools/form-identify.php:8
1304
+ msgid "Back to Privacy Tools"
1305
+ msgstr "Обратно в Политика за Лични данни"
1306
+
1307
+ #: views/privacy-tools/form-identify.php:14
1308
+ msgid "Please identify yourself via e-mail!"
1309
+ msgstr "Идентифицирай се!"
1310
+
1311
+ #: views/privacy-tools/form-identify.php:17
1312
+ #: views/privacy-tools/form-identify.php:20
1313
+ msgid "Enter your email address"
1314
+ msgstr "Въведете вашия Email адрес"
1315
+
1316
+ #: views/privacy-tools/form-identify.php:23
1317
+ msgid "Send email"
1318
+ msgstr "Изпрати Emial"
1319
+
1320
+ #: views/privacy-tools/notice-admin-role.php:4
1321
+ msgctxt "(Admin)"
1322
+ msgid "Data deletion is disabled for administrative accounts."
1323
+ msgstr "Изтриването на данни е забранено за административните профили."
1324
+
1325
+ #: views/privacy-tools/notices.php:3
1326
+ msgid ""
1327
+ "We will send you an email with the link to access your data. Please check "
1328
+ "your spam folder as well!"
1329
+ msgstr ""
1330
+ "Ще ви изпратим имейл с връзката, за да получите достъп до вашите данни. "
1331
+ "Моля, проверете и папката си за спам!"
1332
+
1333
+ #: views/privacy-tools/notices.php:7
1334
+ msgid "The email you entered does not appear to be a valid email."
1335
+ msgstr "Въведеният от вас имейл адрес не изглежда валиден имейл."
1336
+
1337
+ #: views/privacy-tools/notices.php:11
1338
+ msgid "Sorry - the link seems to have expired. Please try again!"
1339
+ msgstr "За съжаление - връзката изглежда е изтекла. Моля, опитайте отново!"
1340
+
1341
+ #: views/privacy-tools/notices.php:23
1342
+ msgid "Your personal data has been removed!"
1343
+ msgstr "Вашите лични данни бяха премахнати!"
1344
+
1345
+ #: views/privacy-tools/privacy-tools.php:5
1346
+ msgid "You are identified as"
1347
+ msgstr "Вие сте идентифицирани като"
1348
+
1349
+ #: views\admin\general\enable-tac.php:9
1350
+ msgctxt "(Admin)"
1351
+ msgid "Enable the term and condition page."
1352
+ msgstr "Активирайте страницата за термини и условия."
1353
+
1354
+ #: src\Admin\AdminTabGeneral.php:51
1355
+ msgctxt "(Admin)"
1356
+ msgid "Enable Term and Conditions"
1357
+ msgstr "Активиране на термин и условия"
1358
+
1359
+ #: gdpr-framework.php:121
1360
+ msgid ""
1361
+ "This website uses cookies to ensure you get the best experience on our "
1362
+ "website."
1363
+ msgstr ""
1364
+ "Този уебсайт използва \"бисквитки\", за да гарантирате, че получавате най-"
1365
+ "доброто изживяване на нашия уебсайт."
1366
+
1367
+ #: gdpr-framework.php:121
1368
+ msgid "Decline"
1369
+ msgstr "упадък"
1370
+
1371
+ #: gdpr-framework.php:121
1372
+ msgid "Accept"
1373
+ msgstr "приемам"
1374
+
1375
+ #: gdpr-framework.php:133
1376
+ msgid "Learn more"
1377
+ msgstr "Научете повече"
1378
+
1379
+ #: AdminTabGeneral.php:94
1380
+ msgctxt "(Admin)"
1381
+ msgid "From Email"
1382
+ msgstr "От имейл"
1383
+
1384
+ #: AdminTabGeneral.php:87
1385
+ msgctxt "(Admin)"
1386
+ msgid "From Name"
1387
+ msgstr "От името"
1388
+
1389
+ #: AdminTabGeneral.php:82
1390
+ msgctxt "(Admin)"
1391
+ msgid "Email Setting"
1392
+ msgstr "Настройка на имейла"
1393
+
1394
+ #: AdminTabGeneral.php:104
1395
+ msgctxt "(Admin)"
1396
+ msgid "Acceptance Popup Setting"
1397
+ msgstr "Приемане на изскачащи настройки"
1398
+
1399
+ #: AdminTabGeneral.php:109
1400
+ msgctxt "(Admin)"
1401
+ msgid "Popup Position"
1402
+ msgstr "Изскачаща позиция"
1403
+
1404
+ #: AdminTabGeneral.php:116
1405
+ msgctxt "(Admin)"
1406
+ msgid "Popup theme"
1407
+ msgstr "Изскачаща тема"
1408
+
1409
+ #: AdminTabGeneral.php:123
1410
+ msgctxt "(Admin)"
1411
+ msgid "Cookie Acceptance Background Color"
1412
+ msgstr "Бял цвят на фоновото приемане на бисквитките"
1413
+
1414
+ #: AdminTabGeneral.php:130
1415
+ msgctxt "(Admin)"
1416
+ msgid "Cookie Acceptance Text Color"
1417
+ msgstr "Цвят на текста за приемане на бисквитките"
1418
+
1419
+ #: AdminTabGeneral.php:137
1420
+ msgctxt "(Admin)"
1421
+ msgid "Cookie Acceptance Button Backgroung Color"
1422
+ msgstr "Бутон за приемане на бисквитките"
1423
+
1424
+ #: AdminTabGeneral.php:144
1425
+ msgctxt "(Admin)"
1426
+ msgid "Cookie Acceptance Button Color"
1427
+ msgstr "Цвят на бутона за приемане на бисквитките"
1428
+
1429
+ #: AdminTabGeneral.php:151
1430
+ msgctxt "(Admin)"
1431
+ msgid "Cookie Acceptance Border Color"
1432
+ msgstr "Цвят на границата на приемане на бисквитките"
1433
+
1434
+ #: AdminTabGeneral.php:67
1435
+ msgctxt "(Admin)"
1436
+ msgid "Enable Cookie Acceptance Popup"
1437
+ msgstr "Активиране на изскачащия прозорец за приемане на \"бисквитките\""
1438
+
1439
+ #: AdminTabGeneral.php:73
1440
+ msgctxt "(Admin)"
1441
+ msgid "Cookie Acceptance Popup Content"
1442
+ msgstr "Съдържание на изскачащи прозорци за приемане на бисквитки"
1443
+
1444
+ #: description-position-action.php
1445
+ msgctxt "(Admin)"
1446
+ msgid "Select position of the Popup"
1447
+ msgstr "Изберете позицията на изскачащия прозорец"
1448
+
1449
+ #: description-theme-action.php
1450
+ msgctxt "(Admin)"
1451
+ msgid "Select theme of the Popup"
1452
+ msgstr "Изберете тема на изскачащия прозорец"
1453
+
1454
+ #: description-theme-action.php:69
1455
+ msgctxt "(Admin)"
1456
+ msgid "Disable Comment Checkbox"
1457
+ msgstr "Деактивирайте квадратчето за отметки за коментарите"
1458
+
1459
+ #: description-theme-action.php:76
1460
+ msgctxt "(Admin)"
1461
+ msgid "Disable Register Form Checkbox"
1462
+ msgstr "Деактивиране на формуляр за регистрация на формуляр"
1463
+
1464
+ #: description-theme-action.php:312
1465
+ msgctxt "(Admin)"
1466
+ msgid "Disable Checkbox For Comments"
1467
+ msgstr "Забранете квадратчето за отметка за коментари"
1468
+
1469
+ #: AdminTabGeneral.php:319
1470
+ msgctxt "(Admin)"
1471
+ msgid "Disable Checkbox For Register Form"
1472
+ msgstr "Деактивиране на квадратчето за регистрация"
1473
+
1474
+ #: advanced-integration\header.php:2
1475
+ msgctxt "(Admin)"
1476
+ msgid "This page allows you to advance integration with ClassiDocs™"
1477
+ msgstr ""
1478
+ "Тази страница ви позволява да усъвършенствате интеграцията с ClassiDocs ™"
1479
+
1480
+ #: AdminTabAdvancedIntegration.php:97
1481
+ msgctxt "(Admin)"
1482
+ msgid "ClassiDocs Password"
1483
+ msgstr "ClassiDocs парола"
1484
+
1485
+ #: AdminTabAdvancedIntegration.php:88
1486
+ msgctxt "(Admin)"
1487
+ msgid "ClassiDocs Username"
1488
+ msgstr "ClassiDocs Потребител"
1489
+
1490
+ #: AdminTabAdvancedIntegration.php:79
1491
+ msgctxt "(Admin)"
1492
+ msgid "ClassiDocs URL"
1493
+ msgstr "URL адрес на ClassiDocs"
1494
+
1495
+ #: AdminTabAdvancedIntegration.php:69
1496
+ msgctxt "(Admin)"
1497
+ msgid "Enable Response with related queries?"
1498
+ msgstr "Да се ​​разреши отговор със свързани заявки?"
1499
+
1500
+ #: AdminTabAdvancedIntegration.php:60
1501
+ msgctxt "(Admin)"
1502
+ msgid "Submit SAR request details?"
1503
+ msgstr "Подайте подробности за заявката за SAR?"
1504
+
1505
+ #: AdminTabAdvancedIntegration.php:51
1506
+ msgctxt "(Admin)"
1507
+ msgid "Integrate with ClassiDocs?"
1508
+ msgstr "Интегриране с ClassiDocs?"
1509
+
1510
+ #: AdminTabAdvancedIntegration.php:43
1511
+ msgctxt "(Admin)"
1512
+ msgid "Integration Settings"
1513
+ msgstr "Настройки за интегриране"
1514
+
1515
+ #: AdminTabAdvancedIntegration.php:35
1516
+ msgctxt "(Admin)"
1517
+ msgid "Advanced Integration"
1518
+ msgstr "Разширена интеграция"
1519
+
1520
+ #: checkbox-field.php:10
1521
+ msgctxt "(Admin)"
1522
+ msgid "Sign up for free here"
1523
+ msgstr "Регистрирайте се безплатно тук"
1524
+
1525
+ #: checkbox-field.php:10
1526
+ msgctxt "(Admin)"
1527
+ msgid "Click Here"
1528
+ msgstr "Натисни тук"
1529
+
1530
+ #: ClassiDocs-results.php:12
1531
+ msgid "Previous Results"
1532
+ msgstr "Предишни резултати"
1533
+
1534
+ #: ClassiDocs-results.php:13
1535
+ msgid "Current Results"
1536
+ msgstr "Текущи резултати"
1537
+
1538
+ #: ClassiDocs-results.php:19
1539
+ msgid "Name"
1540
+ msgstr "име"
1541
+
1542
+ #: ClassiDocs-results.php:22
1543
+ msgid "Path"
1544
+ msgstr "път"
1545
+
1546
+ #: ClassiDocs-results.php:34
1547
+ msgid "Workstation"
1548
+ msgstr "Workstation"
1549
+
1550
+ #: ClassiDocs-results.php:37
1551
+ msgid "Last Scan"
1552
+ msgstr "Последно сканиране"
1553
+
1554
+ #: ClassiDocs-results.php:62
1555
+ msgid "No ClassiDocs data found!"
1556
+ msgstr "Няма намерени данни за ClassiDocs!"
1557
+
1558
+ #: enable_popup_header.php:5
1559
+ msgid "Cookies used on the website!"
1560
+ msgstr "Бисквитки, използвани на сайта!"
1561
+
1562
+ #: enable_popup_header.php:9
1563
+ msgid "Leave blank if don't want header to get display."
1564
+ msgstr "Оставете празно, ако не искате заглавката да се покаже."
1565
+
1566
+ #: AdminTabCookiePopup.php:39
1567
+ msgctxt "(Admin)"
1568
+ msgid "Cookie Popup Settings"
1569
+ msgstr "Настройки на изскачащи прозорци"
1570
+
1571
+ #: AdminTabCookiePopup.php:17
1572
+ msgctxt "(Admin)"
1573
+ msgid "Cookie Popup"
1574
+ msgstr "Изскачащ"
1575
+
1576
+ #: AdminTabCookiePopup.php:49
1577
+ msgctxt "(Admin)"
1578
+ msgid "Enable One Time Cookie Acceptance Popup"
1579
+ msgstr ""
1580
+ "Активиране на изскачащия прозорец за приемане на бисквитки за еднократно "
1581
+ "време"
1582
+
1583
+ #: consent.php:79
1584
+ msgctxt "(Admin)"
1585
+ msgid "Show Consent types"
1586
+ msgstr "Показване на типовете съгласия"
1587
+
1588
+ msgctxt "(Admin)"
1589
+ msgid "Hide consent types"
1590
+ msgstr "Скриване на типовете съгласие"
1591
+
1592
+ msgctxt "(Admin)"
1593
+ msgid "Do you want form to be GDPR compliance."
1594
+ msgstr "Искате ли формата да бъде съответствие с GDPR."
1595
+
1596
+ msgctxt "(Admin)"
1597
+ msgid ""
1598
+ "You have installed flamingo, To make this GDPR compliance in individual "
1599
+ "contact form's privacy tab check the checkbox for include data to be search "
1600
+ "on Privacy tool."
1601
+ msgstr ""
1602
+ "Имате инсталиран фламинго. За да направите това съответствие с GDPR в "
1603
+ "раздела за поверителност на отделната форма за контакти, поставете отметка в "
1604
+ "квадратчето за отметка, за да включите данни за търсене в инструмента за "
1605
+ "поверителност."
1606
+
1607
+ msgctxt "(Admin)"
1608
+ msgid "Enable Policy Link On Popup"
1609
+ msgstr "Активиране на връзката по правилата при изскачащи прозорци"
1610
+
1611
+ msgctxt "(Admin)"
1612
+ msgid "Enable Privacy policy on Popup"
1613
+ msgstr "Активирайте правилата за поверителност в изскачащите прозорци"
1614
+
1615
+ #: AdminTabCookiePopup.php
1616
+ msgctxt "(Admin)"
1617
+ msgid "Cookie Acceptance Popup header"
1618
+ msgstr "Притурка за приемане на бисквитки"
1619
+
1620
+ #: views\admin\privacy-manager\header.php:2
1621
+ msgctxt "(Admin)"
1622
+ msgid "Data443™ Privacy Manager"
1623
+ msgstr "Data443™ Privacy Manager"
1624
+
1625
+ #: views\admin\privacy-manager\header.php:3
1626
+ msgctxt "(Admin)"
1627
+ msgid ""
1628
+ "ensures privacy regulation compliance, such as GDPR, CCPA, LGPD, etc, at the "
1629
+ "next level."
1630
+ msgstr ""
1631
+ "гарантира спазването на правилата за поверителност, като например GDPR, "
1632
+ "CCPA, LGPD и т.н., на следващото ниво."
1633
+
1634
+ #: views\admin\privacy-manager\header.php:4
1635
+ msgctxt "(Admin)"
1636
+ msgid ""
1637
+ "In addition to DSAR tracking and management, Privacy Manager adds the "
1638
+ "following features to your data protection compliance resources:"
1639
+ msgstr ""
1640
+ "В допълнение към DSAR проследяването и управлението, Privacy Manager добавя "
1641
+ "следните функции към вашите ресурси за защита на данните:"
1642
+
1643
+ #: views\admin\privacy-manager\header.php:6
1644
+ msgctxt "(Admin)"
1645
+ msgid "Log and store ICO breach notifications"
1646
+ msgstr "Влезте и съхранете уведомленията за нарушения на ICO"
1647
+
1648
+ #: views\admin\privacy-manager\header.php:7
1649
+ msgctxt "(Admin)"
1650
+ msgid "Keeps full record of all requests, ticketed and timeline"
1651
+ msgstr "Съхранява пълен запис на всички заявки, билети и времева линия"
1652
+
1653
+ #: views\admin\privacy-manager\header.php:8
1654
+ msgctxt "(Admin)"
1655
+ msgid "Gap analysis and breach notifications"
1656
+ msgstr "Анализ на пропуските и уведомления за нарушения"
1657
+
1658
+ #: views\admin\privacy-manager\header.php:9
1659
+ msgctxt "(Admin)"
1660
+ msgid "In depth activity log with all GDPR, CCPA, etc actions evidenced"
1661
+ msgstr ""
1662
+ "В дълбочина на дневника за дейностите се разкриват всички действия на GDPR, "
1663
+ "CCPA и т.н."
1664
+
1665
+ #: views\admin\privacy-manager\header.php:10
1666
+ msgctxt "(Admin)"
1667
+ msgid "Highlights areas of concern and where you need to focus"
1668
+ msgstr "Подчертава областите на загриженост и къде трябва да се съсредоточите"
1669
+
1670
+ #: views\admin\privacy-manager\header.php:11
1671
+ msgctxt "(Admin)"
1672
+ msgid ""
1673
+ "eLearning platform with access for all staff to ensure privacy regulation "
1674
+ "compliance and obligations"
1675
+ msgstr ""
1676
+ "eLearning платформа с достъп за целия персонал, за да се гарантира "
1677
+ "спазването и задълженията за регулиране на поверителността"
1678
+
1679
+ #: views\admin\privacy-manager\header.php:12
1680
+ msgctxt "(Admin)"
1681
+ msgid "Tracks who accesses the system, when and why"
1682
+ msgstr "Проследява кой влиза в системата, кога и защо"
1683
+
1684
+ #: views\admin\privacy-manager\header.php:15
1685
+ msgctxt "(Admin)"
1686
+ msgid ""
1687
+ "Our system enables your business to demonstrate its obligations in "
1688
+ "protecting your customer data, show understanding of your business "
1689
+ "activities and deliver eLearning and online tests to employees, ensuring "
1690
+ "everyone in your company understands your privacy compliance rules and best "
1691
+ "practices to operate."
1692
+ msgstr ""
1693
+ "Нашата система дава възможност на вашия бизнес да демонстрира задълженията "
1694
+ "си в защитата на вашите клиентски данни, да покаже разбиране на вашите "
1695
+ "бизнес дейности и да предостави електронно обучение и онлайн тестове на "
1696
+ "служителите, като гарантира, че всеки във вашата компания разбира правилата "
1697
+ "за спазване на поверителността и най-добрите практики за работа."
1698
+
1699
+ #: views\admin\privacy-manager\header.php:16
1700
+ msgctxt "(Admin)"
1701
+ msgid ""
1702
+ "No matter where you are on your data privacy journey, the ultimate goal is "
1703
+ "compliance."
1704
+ msgstr ""
1705
+ "Без значение къде сте на път за поверителност на данните, крайната цел е "
1706
+ "спазването на правилата."
1707
+
1708
+ #: views\admin\privacy-manager\header.php:16
1709
+ msgctxt "(Admin)"
1710
+ msgid "enables your organization to comply with all privacy regulations."
1711
+ msgstr ""
1712
+ "позволява на вашата организация да спазва всички правила за поверителност."
1713
+
1714
+ #: views\admin\support\contents.php:49
1715
+ msgctxt "(Admin)"
1716
+ msgid ""
1717
+ "Found a bug or have a question about the plugin? Submit a support request "
1718
+ "and we’ll get right on it!"
1719
+ msgstr ""
1720
+ "Открихте грешка или имате въпрос относно приставката? Изпратете заявка за "
1721
+ "поддръжка и ще се оправим!"
1722
+
1723
+ #: views\admin\support\contents.php:58
1724
+ msgctxt "(Admin)"
1725
+ msgid "Need assistance in making your site compliant? We can help!"
1726
+ msgstr "Нуждаете се от помощ при съгласуването на сайта Ви? Можем да помогнем!"
1727
+
1728
+ #: views\admin\general\woo-compatibility.php:9
1729
+ msgctxt "(Admin)"
1730
+ msgid "Enable WooCommerce data on GDPR tool"
1731
+ msgstr "Активиране на данните за WooCommerce за инструмента GDPR"
1732
+
1733
+ #: src\Admin\AdminTabGeneral.php:241
1734
+ msgctxt "(Admin)"
1735
+ msgid "Enable WooCommerce Compatibility"
1736
+ msgstr "Активиране на съвместимостта на WooCommerce"
1737
+
1738
+ #: views\modules\wordpress-user\dashboard\data-page\form-delete.php:19
1739
+ msgid "Note Regarding Order:"
1740
+ msgstr "Забележка относно поръчката:"
1741
+
1742
+ #: views\modules\wordpress-user\dashboard\data-page\form-delete.php:20
1743
+ msgid ""
1744
+ "Your order with status Processing will not get deleted until status change."
1745
+ msgstr ""
1746
+ "Вашата поръчка със статус Обработка няма да бъде изтрита до промяна на "
1747
+ "статуса."
1748
+
1749
+ #: views\modules\wordpress-user\dashboard\data-page\form-delete.php:21
1750
+ msgid "Your order with status Completed will get anonymize."
1751
+ msgstr "Вашата поръчка със завършен статус ще стане анонимна."
1752
+
1753
+ #: views\modules\wordpress-user\dashboard\data-page\form-delete.php:22
1754
+ msgid "If you delete Completed order you can't apply for refund."
1755
+ msgstr ""
1756
+ "Ако изтриете попълнената поръчка, не можете да кандидатствате за "
1757
+ "възстановяване."
1758
+
1759
+ #: views\admin\general\woo-compatibility.php:12
1760
+ msgctxt "(Admin)"
1761
+ msgid "Will work for WooCommerce Version 3.4.0 or later."
1762
+ msgstr "Ще работи за WooCommerce версия 3.4.0 или по-нова."
1763
+
1764
+ #: views\admin\general\edd-compatibility.php:9
1765
+ msgctxt "(Admin)"
1766
+ msgid "Enable EDD data on GDPR tool."
1767
+ msgstr "Активиране на EDD данни за инструмента GDPR."
1768
+
1769
+ #: views\admin\general\edd-compatibility.php:12
1770
+ msgctxt "(Admin)"
1771
+ msgid "Will work for EDD Version 2.0.0 or later."
1772
+ msgstr "Ще работи за EDD версия 2.0.0 или по-нова."
1773
+
1774
+ #: src\Admin\AdminTabGeneral.php:262
1775
+ msgctxt "(Admin)"
1776
+ msgid "Enable EDD Compatibility"
1777
+ msgstr "Активиране на EDD съвместимостта"
1778
+
1779
+ #: gdpr-framework.php:298
1780
+ msgid "Cookie Policy"
1781
+ msgstr "Политика за „бисквитките“"
1782
+
1783
+ #: ConsentManager.php:96
1784
+ msgctxt "(Admin)"
1785
+ msgid ""
1786
+ "This consent is visible by default on woocommerce checkout page. If someone "
1787
+ "wishes to withdraw it, they should simply request to delete all their data."
1788
+ msgstr ""
1789
+ "Това съгласие е видимо по подразбиране на страницата за плащане на "
1790
+ "woocommerce. Ако някой желае да го оттегли, те трябва просто да поискат да "
1791
+ "изтрият всичките си данни."
1792
+
1793
+ #: ConsentManager.php:96
1794
+ msgctxt "(Admin)"
1795
+ msgid "Woocommerce Policy Consent"
1796
+ msgstr "Съгласие за политиката на Woocommerce"
1797
+
1798
+ #: WoocommerceGdpr.php:150
1799
+ msgid "Please acknowledge the Privacy Policy"
1800
+ msgstr "Моля, потвърдете Декларацията за поверителност"
1801
+
1802
+ #: woo-compatibility.php:9
1803
+ msgctxt "(Admin)"
1804
+ msgid "Enable WooCommerce data on GDPR tool."
1805
+ msgstr "Активиране на данните за WooCommerce за инструмента GDPR."
1806
+
1807
+ #: views\admin\general\enable-popup.php:12
1808
+ msgctxt "(Admin)"
1809
+ msgid ""
1810
+ "<b>Note:</b> Need to add custom content <b>gdpr_cookie_consent</b> its "
1811
+ "accepted on popup accept button."
1812
+ msgstr ""
1813
+ "<b> Забележка: </b> Необходимо е да добавите персонализирано съдържание <b> "
1814
+ "gdpr_cookie_consent </b> неговия приет в изскачащ прозорец бутон за приемане."
1815
+
1816
+ #: AdminTabCookiePopup.php:105
1817
+ msgctxt "(Admin)"
1818
+ msgid "Popup Dismiss Text"
1819
+ msgstr "Изскачащ отказ от текст"
1820
+
1821
+ #: AdminTabCookiePopup.php:98
1822
+ msgctxt "(Admin)"
1823
+ msgid "Popup Allow Text"
1824
+ msgstr "Изскачащ Allow Text"
1825
+
1826
+ #: AdminTabGeneral.php:241
1827
+ msgctxt "(Admin)"
1828
+ msgid "Woocommerce Integration"
1829
+ msgstr "Интеграция с Woocommerce"
1830
+
1831
+ #: AdminTabGeneral.php:259
1832
+ msgctxt "(Admin)"
1833
+ msgid "Easy Digital Download Integration"
1834
+ msgstr "Лесна интеграция с цифрово изтегляне"
1835
+
1836
+ #: has-dpo.php:11
1837
+ msgctxt "(Admin)"
1838
+ msgid "I have appointed a Data Protection Officer (DPO)"
1839
+ msgstr "Назначих служител по защита на данните (ДЗД)"
1840
+
1841
+ #: views/admin/general/stylesheet.php:9
1842
+ msgctxt "(Admin)"
1843
+ msgid "Enable basic styling for Privacy Tools page."
1844
+ msgstr ""
1845
+ "Активиране на основния стил на страницата Инструменти за поверителност."
1846
+
1847
+ #: AdminTabPrivacyPolicy.php:204
1848
+ msgctxt "(Admin)"
1849
+ msgid "Delete Text"
1850
+ msgstr "Изтриване на текст"
1851
+
1852
+ #: consent.php:80
1853
+ msgctxt "(Admin)"
1854
+ msgid "Add consent type"
1855
+ msgstr "Добавете тип съгласие"
1856
+
1857
+ #: AdminTabGeneral.php:127
1858
+ msgctxt "(Admin)"
1859
+ msgid "Privacy Policy Custom URL"
1860
+ msgstr "Политика за поверителност Потребителски URL"
1861
+
1862
+ #: custom-policy-url.php:6
1863
+ msgctxt "(Admin)"
1864
+ msgid "Leave blank if privacy policy page already selected"
1865
+ msgstr ""
1866
+ "Оставете празно, ако страницата за Декларация за поверителност вече е избрана"
1867
+
1868
+ #: views/admin/general/description-delete-action.php:2
1869
+ msgctxt "(Admin)"
1870
+ msgid "What should happen if a data subject requests deleting their data."
1871
+ msgstr ""
1872
+ "Какво трябва да се случи, ако субектът на данни поиска да изтрие техните "
1873
+ "данни."
1874
+
1875
+ #: views/admin/general/description-export-action.php:2
1876
+ msgctxt "(Admin)"
1877
+ msgid "Optional. Select the page which contains your Terms & Conditions"
1878
+ msgstr ""
1879
+ "Не е задължително. Изберете страницата, която съдържа вашите Общи условия"
1880
+
1881
+ #: views/admin/general/description-terms-page.php:2
1882
+ msgctxt "(Admin)"
1883
+ msgid ""
1884
+ "What should happen if a data subject requests viewing or exporting their "
1885
+ "data."
1886
+ msgstr ""
1887
+ "Какво трябва да се случи, ако субектът на данни поиска да прегледа или "
1888
+ "експортира своите данни."
1889
+
1890
+ #: woo-disable_checkbox.php:9
1891
+ msgctxt "(Admin)"
1892
+ msgid "Disable WooCommerce Privacy Checkbox"
1893
+ msgstr "Деактивирайте квадратчето за поверителност на WooCommerce"
1894
+
1895
+ #: AdminTabCookiePopup.php:133
1896
+ msgctxt "(Admin)"
1897
+ msgid "Popup Learn More Text"
1898
+ msgstr "Изскачане Научете повече текст"
1899
+
1900
+ #: AdminTabGeneral.php:262
1901
+ msgctxt "(Admin)"
1902
+ msgid "Disable WooCommerce Register Privacy Checkbox"
1903
+ msgstr ""
1904
+ "Деактивирайте полето за поверителност на регистъра за поверителност на "
1905
+ "WooCommerce"
1906
+
1907
+ #: AdminTabCookiePopup.php:121
1908
+ msgctxt "(Admin)"
1909
+ msgid "Cookie Acceptance link target"
1910
+ msgstr "Цел на връзката Приемане на бисквитки"
1911
+
1912
+ #: popup_link_target.php:3
1913
+ msgctxt "(Admin)"
1914
+ msgid "Next Tab"
1915
+ msgstr "Следващ раздел"
1916
+
1917
+ #: popup_link_target.php:5
1918
+ msgctxt "(Admin)"
1919
+ msgid "Self"
1920
+ msgstr "себе си"
languages/gdpr-framework-da_DK.po CHANGED
@@ -1,1910 +1,1910 @@
1
- # SOME DESCRIPTIVE TITLE.
2
- # Copyright (C) YEAR Codelight
3
- # This file is distributed under the same license as the The GDPR Framework package.
4
- # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5
- #
6
- msgid ""
7
- msgstr ""
8
- "Project-Id-Version: The GDPR Framework 1.0\n"
9
- "Report-Msgid-Bugs-To: gdpr@codelight.eu\n"
10
- "POT-Creation-Date: 2018-04-16 10:50+0000\n"
11
- "PO-Revision-Date: 2019-09-19 12:37+0530\n"
12
- "Last-Translator: Stefan Butz <webmaster@die-blaue-eisdiele.de>\n"
13
- "MIME-Version: 1.0\n"
14
- "Content-Type: text/plain; charset=UTF-8\n"
15
- "Content-Transfer-Encoding: 8bit\n"
16
- "X-Generator: Poedit 1.5.7\n"
17
- "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
- "Language: de-DE\n"
19
- "Language-Team: Deutsch\n"
20
-
21
- #: gdpr-framework.php:26
22
- msgctxt "(Admin)"
23
- msgid "WordPress GDPR &rsaquo; Error"
24
- msgstr "WordPress GDPR & rsaquo; Fejl"
25
-
26
- #: gdpr-framework.php:35
27
- msgctxt "(Admin)"
28
- msgid "Invalid PHP version"
29
- msgstr "Ugyldig PHP-version"
30
-
31
- #: gdpr-framework.php:35
32
- msgctxt "(Admin)"
33
- msgid "You must be using PHP 5.6.33 or greater."
34
- msgstr "Du skal bruge PHP 5.6.33 eller højere."
35
-
36
- #: gdpr-framework.php:42
37
- msgctxt "(Admin)"
38
- msgid "Invalid WordPress version"
39
- msgstr "Ugyldig WordPress-version"
40
-
41
- #: gdpr-framework.php:42
42
- msgctxt "(Admin)"
43
- msgid "You must be using WordPress 4.3.0 or greater."
44
- msgstr "Du skal bruge WordPress 4.3.0 eller nyere."
45
-
46
- #: gdpr-framework.php:52
47
- msgctxt "(Admin)"
48
- msgid ""
49
- "You appear to be running a development version of GDPR. You must run "
50
- "<code>composer install</code> from the plugin directory."
51
- msgstr ""
52
- "Du ser ud til at køre en udviklingsversion af GDPR. Du skal køre <code> "
53
- "komponentinstallation </ code> fra plugin biblioteket."
54
-
55
- #: gdpr-framework.php:53
56
- msgctxt "(Admin)"
57
- msgid "Autoloader not found."
58
- msgstr "Autoloader ikke fundet."
59
-
60
- #: gdpr-framework.php:115
61
- msgctxt "(Admin)"
62
- msgid "Anonymous"
63
- msgstr "Anonym"
64
-
65
- #: src/Admin/AdminTab.php:115
66
- msgctxt "(Admin)"
67
- msgid "Save"
68
- msgstr "Gemme"
69
-
70
- #: src/Admin/AdminTab.php:151
71
- msgctxt "(Admin)"
72
- msgid "Policy generated!"
73
- msgstr "Politik genereret!"
74
-
75
- #: src/Admin/AdminTabGeneral.php:11
76
- msgctxt "(Admin)"
77
- msgid "General"
78
- msgstr "Generel"
79
-
80
- #: src/Admin/AdminTabGeneral.php:38
81
- msgctxt "(Admin)"
82
- msgid "General Settings"
83
- msgstr "Generelle indstillinger"
84
-
85
- #: src/Admin/AdminTabGeneral.php:43
86
- msgctxt "(Admin)"
87
- msgid "Enable Privacy Tools"
88
- msgstr "Aktivér privatlivsværktøjer"
89
-
90
- #: src/Admin/AdminTabGeneral.php:53
91
- msgctxt "(Admin)"
92
- msgid "Pages"
93
- msgstr "sider"
94
-
95
- #: src/Admin/AdminTabGeneral.php:58 src/Admin/WordpressAdmin.php:151
96
- msgctxt "(Admin)"
97
- msgid "Privacy Tools Page"
98
- msgstr "Privacy Tools Page"
99
-
100
- #: src/Admin/AdminTabGeneral.php:65 src/Admin/WordpressAdmin.php:147
101
- msgctxt "(Admin)"
102
- msgid "Privacy Policy Page"
103
- msgstr "Privacy Policy Side"
104
-
105
- #: src/Admin/AdminTabGeneral.php:72
106
- msgctxt "(Admin)"
107
- msgid "Terms & Conditions Page"
108
- msgstr "Vilkår og betingelser Side"
109
-
110
- #: src/Admin/AdminTabGeneral.php:82
111
- msgctxt "(Admin)"
112
- msgid "View & Export Data"
113
- msgstr "Vis og eksporter data"
114
-
115
- #: src/Admin/AdminTabGeneral.php:87
116
- msgctxt "(Admin)"
117
- msgid "Export action"
118
- msgstr "Eksporter handling"
119
-
120
- #: src/Admin/AdminTabGeneral.php:94 src/Admin/AdminTabGeneral.php:133
121
- msgctxt "(Admin)"
122
- msgid "Email to notify"
123
- msgstr "Email til at underrette"
124
-
125
- #: src/Admin/AdminTabGeneral.php:105
126
- msgctxt "(Admin)"
127
- msgid "Delete & Anonymize Data"
128
- msgstr "Slet & anonymiser data"
129
-
130
- #: src/Admin/AdminTabGeneral.php:110
131
- msgctxt "(Admin)"
132
- msgid "Delete action"
133
- msgstr "Delete action"
134
-
135
- #: src/Admin/AdminTabGeneral.php:117
136
- msgctxt "(Admin)"
137
- msgid "Delete or reassign content?"
138
- msgstr "Slet eller omfordele indhold?"
139
-
140
- #: src/Admin/AdminTabGeneral.php:125
141
- msgctxt "(Admin)"
142
- msgid "Reassign content to"
143
- msgstr "Omfordele indhold til"
144
-
145
- #: src/Admin/AdminTabGeneral.php:145
146
- msgctxt "(Admin)"
147
- msgid "Styling"
148
- msgstr "Styling"
149
-
150
- #: src/Admin/AdminTabGeneral.php:150
151
- msgctxt "(Admin)"
152
- msgid "Enable basic styling on Privacy Tools page"
153
- msgstr ""
154
- "Aktivér grundlæggende styling på siden Beskyttelse af personlige oplysninger"
155
-
156
- #: src/Admin/AdminTabGeneral.php:162
157
- msgctxt "(Admin)"
158
- msgid "Compatibility"
159
- msgstr "Kompatibilitet"
160
-
161
- #: src/Admin/AdminTabGeneral.php:167
162
- msgctxt "(Admin)"
163
- msgid "Enable automatic theme compatibility"
164
- msgstr "Aktivér automatisk tema kompatibilitet"
165
-
166
- #: src/Admin/AdminTabGeneral.php:184 src/Admin/AdminTabGeneral.php:200
167
- #: src/Admin/AdminTabGeneral.php:213 src/Admin/AdminTabGeneral.php:252
168
- #: views/installer/steps/configuration-settings.php:62
169
- msgctxt "(Admin)"
170
- msgid "&mdash; Select &mdash;"
171
- msgstr "&mdash; Vælg &mdash;"
172
-
173
- #: src/Admin/WordpressAdmin.php:65
174
- msgctxt "(Admin)"
175
- msgid "Privacy & GDPR Settings"
176
- msgstr "Privacy & GDPR Settings"
177
-
178
- #: src/Admin/WordpressAdmin.php:66
179
- msgctxt "(Admin)"
180
- msgid "Privacy"
181
- msgstr "Privatliv"
182
-
183
- #: src/Components/Consent/AdminTabConsent.php:30
184
- #: src/Components/Consent/AdminTabConsent.php:49
185
- msgctxt "(Admin)"
186
- msgid "Consent"
187
- msgstr "Samtykke"
188
-
189
- #: src/Components/Consent/AdminTabConsent.php:157
190
- msgctxt "(Admin)"
191
- msgid "Consent slug is a required field!"
192
- msgstr "Samtykke slug er et obligatorisk felt!"
193
-
194
- #: src/Components/Consent/AdminTabConsent.php:162
195
- msgctxt "(Admin)"
196
- msgid ""
197
- "You may only use alphanumeric characters, dash and underscore in the consent "
198
- "slug field."
199
- msgstr ""
200
- "Du må kun bruge alfanumeriske tegn, bindestreg og understregning i "
201
- "samtykkefliken."
202
-
203
- #: src/Components/Consent/AdminTabConsent.php:167
204
- msgctxt "(Admin)"
205
- msgid "Consent title is a required field!"
206
- msgstr "Samtykke titel er et påkrævet felt!"
207
-
208
- #: src/Components/Consent/ConsentManager.php:46
209
- #: views/modules/contact-form-7/content-privacy.php:2
210
- #: views/modules/wordpress-comments/terms-checkbox.php:14
211
- #: views/modules/wordpress-user/registration-terms-checkbox.php:15
212
- #, php-format
213
- msgid "I accept the %sPrivacy Policy%s"
214
- msgstr "Jeg accepterer %sPrivacy Policy%s"
215
-
216
- #: src/Components/Consent/ConsentManager.php:50
217
- #: src/Components/Consent/ConsentManager.php:69
218
- msgctxt "(Admin)"
219
- msgid ""
220
- "This consent is not visible by default. If someone wishes to withdraw it, "
221
- "they should simply request to delete all their data."
222
- msgstr ""
223
- "Dette samtykke er som standard ikke synligt. Hvis nogen ønsker at trække den "
224
- "tilbage, skal de blot anmode om at slette alle deres data."
225
-
226
- #: src/Components/Consent/ConsentManager.php:65
227
- #, php-format
228
- msgid "I accept the %sTerms & Conditions%s"
229
- msgstr "Jeg accepterer %sVilkår og Betingelser%s"
230
-
231
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:19
232
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:61
233
- #: views/admin/privacy-policy/generated.php:1 views/installer/header.php:41
234
- msgctxt "(Admin)"
235
- msgid "Privacy Policy"
236
- msgstr "Fortrolighedspolitik"
237
-
238
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:70
239
- msgctxt "(Admin)"
240
- msgid "Company information"
241
- msgstr "Virksomhedsoplysninger"
242
-
243
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:75
244
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:209
245
- msgctxt "(Admin)"
246
- msgid "Company Name"
247
- msgstr "firmanavn"
248
-
249
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:82
250
- msgctxt "(Admin)"
251
- msgid "Company Email"
252
- msgstr "Firma Email"
253
-
254
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:89
255
- msgctxt "(Admin)"
256
- msgid "Company Location"
257
- msgstr "Virksomhedens placering"
258
-
259
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:105
260
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:245
261
- msgctxt "(Admin)"
262
- msgid "Representative Contact Name"
263
- msgstr "Repræsentant Kontaktnavn"
264
-
265
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:112
266
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:252
267
- msgctxt "(Admin)"
268
- msgid "Representative Contact Email"
269
- msgstr "Repræsentativ Kontakt Email"
270
-
271
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:119
272
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:259
273
- msgctxt "(Admin)"
274
- msgid "Representative Contact Phone"
275
- msgstr "Repræsentativ Kontakt Telefon"
276
-
277
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:135
278
- msgctxt "(Admin)"
279
- msgid "Data Protection Authority"
280
- msgstr "Databeskyttelsesmyndighed"
281
-
282
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:141
283
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:286
284
- msgctxt "(Admin)"
285
- msgid "Data Protection Authority Website"
286
- msgstr "Databeskyttelsesmyndighedens hjemmeside"
287
-
288
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:148
289
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:293
290
- msgctxt "(Admin)"
291
- msgid "Data Protection Authority Email"
292
- msgstr "Data Protection Authority Email"
293
-
294
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:155
295
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:300
296
- msgctxt "(Admin)"
297
- msgid "Data Protection Authority Phone"
298
- msgstr "Datatilsynets telefon"
299
-
300
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:165
301
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:175
302
- msgctxt "(Admin)"
303
- msgid "Data Protection Officer"
304
- msgstr "Databeskyttelsesofficer"
305
-
306
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:168
307
- msgctxt "(Admin)"
308
- msgid "Knowledge base: Do I need to appoint a Data Protection Officer?"
309
- msgstr "Videnbase: Skal jeg udpege en databeskyttelsesofficer?"
310
-
311
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:182
312
- msgctxt "(Admin)"
313
- msgid "Data Protection Officer Name"
314
- msgstr "Navn på databeskyttelsesansvarlig"
315
-
316
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:190
317
- msgctxt "(Admin)"
318
- msgid "Data Protection Officer Email"
319
- msgstr "Databeskyttelsesofficer Email"
320
-
321
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:216
322
- msgctxt "(Admin)"
323
- msgid "Contact Email"
324
- msgstr "Kontakt Email"
325
-
326
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:235
327
- msgctxt "(Admin)"
328
- msgid "Representative Contact"
329
- msgstr "Repræsentativ Kontakt"
330
-
331
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:238
332
- msgctxt "(Admin)"
333
- msgid "Knowledge base: Do I need to appoint an EU-based representative?"
334
- msgstr "Videnbase: Skal jeg udpege en EU-baseret repræsentant?"
335
-
336
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:317
337
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:324
338
- msgctxt "(Admin)"
339
- msgid "DPO Name"
340
- msgstr "DPO Navn"
341
-
342
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:420
343
- msgctxt "(Admin)"
344
- msgid "Save & Generate Policy"
345
- msgstr "Gem og generer politik"
346
-
347
- #: src/Components/PrivacyPolicy/PrivacyPolicy.php:82
348
- #: src/Installer/Installer.php:271 src/Installer/Steps/PolicySettings.php:199
349
- #: views/themes/storefront/footer.php:3
350
- #: views/themes/twentyseventeen/footer.php:3
351
- #: views/themes/twentysixteen/footer.php:4
352
- msgid "Privacy Policy"
353
- msgstr "Fortrolighedspolitik"
354
-
355
- #: src/Components/PrivacyToolsPage/PrivacyToolsPageShortcode.php:19
356
- msgid "This page is currently disabled."
357
- msgstr "This page is currently disabled."
358
-
359
- #: src/Components/PrivacyToolsPage/PrivacyToolsPageShortcode.php:35
360
- #: src/Installer/Installer.php:279
361
- #: src/Installer/Steps/ConfigurationPages.php:55
362
- #: views/themes/storefront/footer.php:7
363
- #: views/themes/twentyseventeen/footer.php:7
364
- #: views/themes/twentysixteen/footer.php:9
365
- msgid "Privacy Tools"
366
- msgstr "Beskyttelse af personlige oplysninger"
367
-
368
- #: src/Components/Support/AdminTabSupport.php:13
369
- #: src/Components/Support/AdminTabSupport.php:20
370
- msgctxt "(Admin)"
371
- msgid "Support"
372
- msgstr "Support"
373
-
374
- #: src/Components/WordpressComments/WordpressComments.php:90
375
- #, php-format
376
- msgid "%sERROR:%s You need to accept the privacy policy to post a comment."
377
- msgstr ""
378
- "%sfejl:%s Du skal acceptere privatlivspolitikken for at skrive en kommentar."
379
-
380
- #: src/Components/WordpressUser/Controllers/DashboardDataPageController.php:54
381
- #: views/privacy-tools/notices.php:19
382
- msgid "We have received your request and will reply within 30 days."
383
- msgstr "Vi har modtaget din anmodning og vil svare inden for 30 dage."
384
-
385
- #: src/Components/WordpressUser/Controllers/DashboardDataPageController.php:59
386
- #: views/privacy-tools/notices.php:15
387
- msgid "Consent withdrawn."
388
- msgstr "Samtykke tilbagekaldt."
389
-
390
- #: src/Components/WordpressUser/RegistrationForm.php:42
391
- msgid "<strong>ERROR</strong>: You must accept the terms and conditions."
392
- msgstr ""
393
- "<strong> FEJL </ strong>: Du skal acceptere vilkårene og betingelserne."
394
-
395
- #: src/Components/WordpressUser/WordpressUser.php:63
396
- #: src/Components/WordpressUser/WordpressUser.php:64
397
- #: views/modules/wordpress-user/dashboard/data-page/header.php:2
398
- msgctxt "(Admin)"
399
- msgid "Privacy Tools"
400
- msgstr "Beskyttelse af personlige oplysninger"
401
-
402
- #: src/DataSubject/AdminTabDataSubject.php:27
403
- #: src/DataSubject/AdminTabDataSubject.php:41
404
- msgctxt "(Admin)"
405
- msgid "Data Subjects"
406
- msgstr "Data emner"
407
-
408
- #: src/DataSubject/DataRepository.php:143
409
- msgid "Data exported"
410
- msgstr "Data eksporteret"
411
-
412
- #: src/DataSubject/DataRepository.php:158
413
- msgid "Data export request"
414
- msgstr "Data eksport anmodning"
415
-
416
- #: src/DataSubject/DataRepository.php:171
417
- msgid "Data removed"
418
- msgstr "Data fjernet"
419
-
420
- #: src/DataSubject/DataRepository.php:186
421
- msgid "Data removal request"
422
- msgstr "Data fjernelse anmodning"
423
-
424
- #: src/DataSubject/DataSubjectIdentificator.php:65
425
- #: src/DataSubject/DataSubjectIdentificator.php:82
426
- msgid "Your personal data on"
427
- msgstr "Dine personlige data på"
428
-
429
- #: src/Helpers.php:27
430
- msgctxt "(Admin)"
431
- msgid "Austria"
432
- msgstr "Austria"
433
-
434
- #: src/Helpers.php:28
435
- msgctxt "(Admin)"
436
- msgid "Belgium"
437
- msgstr "Belgien"
438
-
439
- #: src/Helpers.php:29
440
- msgctxt "(Admin)"
441
- msgid "Bulgaria"
442
- msgstr "Bulgarien"
443
-
444
- #: src/Helpers.php:30
445
- msgctxt "(Admin)"
446
- msgid "Croatia"
447
- msgstr "Kroatien"
448
-
449
- #: src/Helpers.php:31
450
- msgctxt "(Admin)"
451
- msgid "Cyprus"
452
- msgstr "Zypern"
453
-
454
- #: src/Helpers.php:32
455
- msgctxt "(Admin)"
456
- msgid "Czech Republic"
457
- msgstr "Tschechische Republik"
458
-
459
- #: src/Helpers.php:33
460
- msgctxt "(Admin)"
461
- msgid "Denmark"
462
- msgstr "Dänemark"
463
-
464
- #: src/Helpers.php:34
465
- msgctxt "(Admin)"
466
- msgid "Estonia"
467
- msgstr "Estland"
468
-
469
- #: src/Helpers.php:35
470
- msgctxt "(Admin)"
471
- msgid "Finland"
472
- msgstr "Finnland"
473
-
474
- #: src/Helpers.php:36
475
- msgctxt "(Admin)"
476
- msgid "France"
477
- msgstr "Frankreich"
478
-
479
- #: src/Helpers.php:37
480
- msgctxt "(Admin)"
481
- msgid "Germany"
482
- msgstr "Deutschland"
483
-
484
- #: src/Helpers.php:38
485
- msgctxt "(Admin)"
486
- msgid "Greece"
487
- msgstr "Griechenland"
488
-
489
- #: src/Helpers.php:39
490
- msgctxt "(Admin)"
491
- msgid "Hungary"
492
- msgstr "Ungarn"
493
-
494
- #: src/Helpers.php:40
495
- msgctxt "(Admin)"
496
- msgid "Ireland"
497
- msgstr "Irland"
498
-
499
- #: src/Helpers.php:41
500
- msgctxt "(Admin)"
501
- msgid "Italy"
502
- msgstr "Italien"
503
-
504
- #: src/Helpers.php:42
505
- msgctxt "(Admin)"
506
- msgid "Latvia"
507
- msgstr "Lettland"
508
-
509
- #: src/Helpers.php:43
510
- msgctxt "(Admin)"
511
- msgid "Lithuania"
512
- msgstr "Litauen"
513
-
514
- #: src/Helpers.php:44
515
- msgctxt "(Admin)"
516
- msgid "Luxembourg"
517
- msgstr "Luxemburg"
518
-
519
- #: src/Helpers.php:45
520
- msgctxt "(Admin)"
521
- msgid "Malta"
522
- msgstr "Malta"
523
-
524
- #: src/Helpers.php:46
525
- msgctxt "(Admin)"
526
- msgid "Netherlands"
527
- msgstr "Niederlande"
528
-
529
- #: src/Helpers.php:47
530
- msgctxt "(Admin)"
531
- msgid "Poland"
532
- msgstr "Polen"
533
-
534
- #: src/Helpers.php:48
535
- msgctxt "(Admin)"
536
- msgid "Portugal"
537
- msgstr "Portugal"
538
-
539
- #: src/Helpers.php:49
540
- msgctxt "(Admin)"
541
- msgid "Romania"
542
- msgstr "Rumänien"
543
-
544
- #: src/Helpers.php:50
545
- msgctxt "(Admin)"
546
- msgid "Slovakia"
547
- msgstr "Slowakei"
548
-
549
- #: src/Helpers.php:51
550
- msgctxt "(Admin)"
551
- msgid "Slovenia"
552
- msgstr "Slowenien"
553
-
554
- #: src/Helpers.php:52
555
- msgctxt "(Admin)"
556
- msgid "Spain"
557
- msgstr "Spanien"
558
-
559
- #: src/Helpers.php:53
560
- msgctxt "(Admin)"
561
- msgid "Sweden"
562
- msgstr "Schweden"
563
-
564
- #: src/Helpers.php:54
565
- msgctxt "(Admin)"
566
- msgid "United Kingdom"
567
- msgstr "Großbritannien"
568
-
569
- #: src/Helpers.php:69
570
- msgctxt "(Admin)"
571
- msgid "Iceland"
572
- msgstr "Island"
573
-
574
- #: src/Helpers.php:70
575
- msgctxt "(Admin)"
576
- msgid "Norway"
577
- msgstr "Norwegen"
578
-
579
- #: src/Helpers.php:71
580
- msgctxt "(Admin)"
581
- msgid "Liechtenstein"
582
- msgstr "Liechtenstein"
583
-
584
- #: src/Helpers.php:72
585
- msgctxt "(Admin)"
586
- msgid "Switzerland"
587
- msgstr "Schweiz"
588
-
589
- #: src/Helpers.php:73
590
- msgctxt "(Admin)"
591
- msgid "United States"
592
- msgstr "USA"
593
-
594
- #: src/Helpers.php:74
595
- msgctxt "(Admin)"
596
- msgid "Rest of the world"
597
- msgstr "Resten af ​​verdenen"
598
-
599
- #: src/Helpers.php:145
600
- msgid "An error has occurred. Please contact the site administrator."
601
- msgstr "Der opstod en fejl. Kontakt venligst webstedsadministratoren."
602
-
603
- #: src/Installer/Installer.php:135
604
- msgctxt "(Admin)"
605
- msgid "Setup Wizard"
606
- msgstr "Opsætningsguide"
607
-
608
- #: src/Installer/Steps/ConfigurationPages.php:23
609
- #: src/Installer/Steps/PolicySettings.php:23
610
- #: src/Installer/Steps/PolicySettings.php:48
611
- msgctxt "(Admin)"
612
- msgid "&mdash; Create a new page &mdash;"
613
- msgstr "&mdash; Opret en ny side &mdash;"
614
-
615
- #: src/Installer/Steps/PolicySettings.php:38
616
- msgctxt "(Admin)"
617
- msgid ""
618
- "We have automatically selected your WooCommerce Terms & Conditions page."
619
- msgstr "Vi har automatisk valgt din WooCommerce Betingelser side."
620
-
621
- #: src/Modules/ContactForm7/ContactForm7.php:35
622
- msgctxt "(Admin)"
623
- msgid "gdpr terms txt"
624
- msgstr "gdpr termer txt"
625
-
626
- #: src/Router.php:80 src/Router.php:92 src/Router.php:125 src/Router.php:141
627
- #, php-format
628
- msgid "Nonce error for action \"%s\". Please go back and try again!"
629
- msgstr "Nonce fejl til handling \"%s \". Venligst gå tilbage og prøv igen!"
630
-
631
- #: src/Router.php:149
632
- msgctxt "(Admin)"
633
- msgid "You do not have the required permissions to perform this action!"
634
- msgstr "Du har ikke de nødvendige tilladelser til at udføre denne handling!"
635
-
636
- #: views/admin/consent.php:3
637
- msgctxt "(Admin)"
638
- msgid "Default consent types"
639
- msgstr "Standard samtykke typer"
640
-
641
- #: views/admin/consent.php:4
642
- msgctxt "(Admin)"
643
- msgid ""
644
- "These are the consent types that have been automatically registered by the "
645
- "framework or a plugin."
646
- msgstr ""
647
- "Dette er de samtykke typer, der er registreret automatisk af rammen eller et "
648
- "plugin."
649
-
650
- #: views/admin/consent.php:7 views/admin/consent.php:52
651
- msgctxt "(Admin)"
652
- msgid "Slug"
653
- msgstr "Slug"
654
-
655
- #: views/admin/consent.php:8 views/admin/consent.php:38
656
- #: views/admin/consent.php:60
657
- msgctxt "(Admin)"
658
- msgid "Title"
659
- msgstr "Titel"
660
-
661
- #: views/admin/consent.php:9 views/admin/consent.php:41
662
- #: views/admin/consent.php:63
663
- msgctxt "(Admin)"
664
- msgid "Description"
665
- msgstr "Beskrivelse"
666
-
667
- #: views/admin/consent.php:10
668
- msgctxt "(Admin)"
669
- msgid "Visibility"
670
- msgstr "Sigtbarhed"
671
-
672
- #: views/admin/consent.php:18
673
- msgctxt "(Admin)"
674
- msgid "Visible"
675
- msgstr "Synlig"
676
-
677
- #: views/admin/consent.php:20
678
- msgctxt "(Admin)"
679
- msgid "Hidden"
680
- msgstr "Skjult"
681
-
682
- #: views/admin/consent.php:29
683
- msgctxt "(Admin)"
684
- msgid "Custom consent types"
685
- msgstr "Brugerdefinerede samtykke typer"
686
-
687
- #: views/admin/consent.php:30
688
- msgctxt "(Admin)"
689
- msgid ""
690
- "Here you can add custom consent types to track. They will not be used "
691
- "anywhere by default - you will need to build an integration for each of them."
692
- msgstr ""
693
- "Her kan du tilføje tilpassede samtykke typer til at spore. De vil ikke blive "
694
- "brugt som standard som standard - du skal bygge en integration for hver af "
695
- "dem."
696
-
697
- #: views/admin/consent.php:35
698
- msgctxt "(Admin)"
699
- msgid "Machine-readable slug"
700
- msgstr "Maskinlæsbar slug"
701
-
702
- #: views/admin/consent.php:44 views/admin/consent.php:68
703
- msgctxt "(Admin)"
704
- msgid "Visible?"
705
- msgstr "Synlig?"
706
-
707
- #: views/admin/consent.php:72
708
- msgctxt "(Admin)"
709
- msgid "Remove"
710
- msgstr "Fjerne"
711
-
712
- #: views/admin/consent.php:93
713
- msgctxt "(Admin)"
714
- msgid "Additional info"
715
- msgstr "Yderligere information"
716
-
717
- #: views/admin/consent.php:95
718
- msgctxt "(Admin)"
719
- msgid ""
720
- "This text will be displayed to your data subjects on the Privacy Tools page."
721
- msgstr ""
722
- "Denne tekst bliver vist til dine registrerede på siden Beskyttelse af "
723
- "personlige oplysninger."
724
-
725
- #: views/admin/data-subjects/search-form.php:2
726
- msgctxt "(Admin)"
727
- msgid ""
728
- "On this page, you can find which data subjects personal data you are storing "
729
- "and download, export or delete it."
730
- msgstr ""
731
- "På denne side kan du finde ud af hvilke personoplysninger du gemmer og "
732
- "downloader, eksporterer eller sletter."
733
-
734
- #: views/admin/data-subjects/search-form.php:10
735
- msgctxt "(Admin)"
736
- msgid "Find data subject by email"
737
- msgstr "Find registrerede via e-mail"
738
-
739
- #: views/admin/data-subjects/search-form.php:11
740
- msgctxt "(Admin)"
741
- msgid "Email address"
742
- msgstr "Email address"
743
-
744
- #: views/admin/data-subjects/search-form.php:16
745
- msgctxt "(Admin)"
746
- msgid "Search"
747
- msgstr "Søg"
748
-
749
- #: views/admin/data-subjects/search-results.php:7
750
- msgctxt "(Admin)"
751
- msgid "Username"
752
- msgstr "Brugernavn"
753
-
754
- #: views/admin/data-subjects/search-results.php:12
755
- msgctxt "(Admin)"
756
- msgid "is not a registered user."
757
- msgstr "er ikke en registreret bruger."
758
-
759
- #: views/admin/data-subjects/search-results.php:16
760
- msgctxt "(Admin)"
761
- msgid "Download data (html)"
762
- msgstr "Download data (html)"
763
-
764
- #: views/admin/data-subjects/search-results.php:17
765
- msgctxt "(Admin)"
766
- msgid "Export data (json)"
767
- msgstr "Eksporter data (json)"
768
-
769
- #: views/admin/data-subjects/search-results.php:21
770
- msgctxt "(Admin)"
771
- msgid ""
772
- "This user has admin capabilities. Deleting data via this interface is "
773
- "disabled."
774
- msgstr ""
775
- "Denne bruger har administratorfunktioner. Sletning af data via denne "
776
- "grænseflade er deaktiveret."
777
-
778
- #: views/admin/data-subjects/search-results.php:24
779
- msgctxt "(Admin)"
780
- msgid "Anonymize data"
781
- msgstr "Anonymiser data"
782
-
783
- #: views/admin/data-subjects/search-results.php:25
784
- msgctxt "(Admin)"
785
- msgid "Delete data"
786
- msgstr "Slet data"
787
-
788
- #: views/admin/data-subjects/search-results.php:29
789
- msgctxt "(Admin)"
790
- msgid "No data found!"
791
- msgstr "Ingen data fundet!"
792
-
793
- #: views/admin/general/delete-action-email.php:5
794
- #: views/admin/general/export-action-email.php:5
795
- #: views/installer/steps/configuration-settings.php:29
796
- #: views/installer/steps/configuration-settings.php:79
797
- msgid "Email address"
798
- msgstr "Email adresse"
799
-
800
- #: views/admin/general/delete-action-reassign.php:3
801
- #: views/installer/steps/configuration-settings.php:50
802
- msgctxt "(Admin)"
803
- msgid "Delete content"
804
- msgstr "Slet indhold"
805
-
806
- #: views/admin/general/delete-action-reassign.php:6
807
- #: views/installer/steps/configuration-settings.php:53
808
- msgctxt "(Admin)"
809
- msgid "Reassign content to a user"
810
- msgstr "Omfordele indhold til en bruger"
811
-
812
- #: views/admin/general/delete-action-reassign.php:10
813
- msgctxt "(Admin)"
814
- msgid ""
815
- "If the user has submitted any content on your site, should it be deleted or "
816
- "reassigned to another user?"
817
- msgstr ""
818
- "Hvis brugeren har indsendt indhold på dit websted, skal den slettes eller "
819
- "tildeles til en anden bruger?"
820
-
821
- #: views/admin/general/description-data-page.php:2
822
- msgctxt "(Admin)"
823
- msgid ""
824
- "Select the page where users can go to control their data. This page must "
825
- "contain the [gdpr_privacy_tools] shortcode."
826
- msgstr ""
827
- "Vælg den side, hvor brugerne kan gå for at kontrollere deres data. Denne "
828
- "side skal indeholde [gdpr_privacy_tools] shortcode."
829
-
830
- #: views/admin/general/enable.php:9
831
- msgctxt "(Admin)"
832
- msgid "Enable the view, export and forget functionality for users and visitors"
833
- msgstr ""
834
- "Aktivér visningen, eksporter og glem funktionaliteten for brugere og "
835
- "besøgende"
836
-
837
- #: views/admin/general/enable.php:12
838
- msgctxt "(Admin)"
839
- msgid ""
840
- "Enable the Privacy Tools page on front-end and dashboard. This allows "
841
- "visitors to request viewing and deleting their personal data and withdraw "
842
- "consents."
843
- msgstr ""
844
- "Aktivér siden for beskyttelse af personlige oplysninger på front-end og "
845
- "dashboard. Dette gør det muligt for besøgende at anmode om at se og slette "
846
- "deres personlige data og trække samtykker tilbage."
847
-
848
- #: views/admin/general/theme-compatibility.php:9
849
- #: views/installer/steps/integrations.php:21
850
- msgctxt "(Admin)"
851
- msgid ""
852
- "Automatically add Privacy Policy and Privacy Tools links to your site footer."
853
- msgstr ""
854
- "Tilføj automatisk Privacy Policy og Privacy Tools links til dit websted "
855
- "footer."
856
-
857
- #: views/admin/notices/header.php:4 views/admin/settings-page.php:3
858
- #: views/installer/header.php:23
859
- msgctxt "(Admin)"
860
- msgid "The GDPR Framework"
861
- msgstr "GDPR-rammen"
862
-
863
- #: views/admin/notices/helper-autoinstall.php:2
864
- msgctxt "(Admin)"
865
- msgid ""
866
- "A Privacy Policy page has been created, but it is empty. You can generate a "
867
- "policy template on this page."
868
- msgstr ""
869
- "En side om beskyttelse af personlige oplysninger er blevet oprettet, men den "
870
- "er tom. Du kan oprette en policy skabelon på denne side."
871
-
872
- #: views/admin/notices/helper-policy.php:2
873
- msgctxt "(Admin)"
874
- msgid ""
875
- "Heads up - your Privacy Policy still requires some attention. Find the "
876
- "places marked with [TODO] and replace them with real content!"
877
- msgstr ""
878
- "Heads up - din privatlivspolitik kræver stadig en vis opmærksomhed. Find de "
879
- "steder, der er markeret med [TODO], og erstat dem med ægte indhold!"
880
-
881
- #: views/admin/notices/helper-tools.php:2
882
- msgctxt "(Admin)"
883
- msgid ""
884
- "The contents of this page should contain the [gdpr_privacy_tools] shortcode."
885
- msgstr "Indholdet på denne side skal indeholde [gdpr_privacy_tools] shortcode."
886
-
887
- #: views/admin/privacy-policy/description-policy-page.php:2
888
- msgctxt "(Admin)"
889
- msgid "Select the page which will contain your Privacy Policy"
890
- msgstr "Vælg den side, der indeholder din privatlivspolitik"
891
-
892
- #: views/admin/privacy-policy/generated.php:3
893
- msgctxt "(Admin)"
894
- msgid "Your Privacy Policy has been generated."
895
- msgstr "Din privatlivspolitik er blevet genereret."
896
-
897
- #: views/admin/privacy-policy/generated.php:20
898
- msgctxt "(Admin)"
899
- msgid "&laquo; Back"
900
- msgstr "&laquo; Tilbage"
901
-
902
- #: views/admin/privacy-policy/header.php:2
903
- msgctxt "(Admin)"
904
- msgid ""
905
- "This page allows you to generate a Privacy Policy based on the information "
906
- "you entered below."
907
- msgstr ""
908
- "Denne side giver dig mulighed for at generere en privatlivspolitik baseret "
909
- "på de oplysninger, du indtastede herunder."
910
-
911
- #: views/admin/settings-page.php:31
912
- #, php-format
913
- msgctxt "(Admin)"
914
- msgid "The GDPR Framework. Built with &#9829; by %sCodelight%s."
915
- msgstr "GDPR-rammen. Bygget med &#9829; ved %sCodelight%s."
916
-
917
- #: views/admin/support/contents.php:5 views/installer/steps/finish.php:10
918
- msgctxt "(Admin)"
919
- msgid "Need more info?"
920
- msgstr "Har du brug for mere info?"
921
-
922
- #: views/admin/support/contents.php:11 views/installer/steps/finish.php:16
923
- msgctxt "(Admin)"
924
- msgid "Site Owner's guide to GDPR"
925
- msgstr "Site Owner's Guide til GDPR"
926
-
927
- #: views/admin/support/contents.php:14 views/installer/steps/finish.php:19
928
- msgctxt "(Admin)"
929
- msgid "Read the full guide on GDPR compliance."
930
- msgstr "Læs den komplette vejledning om overholdelse af GDPR."
931
-
932
- #: views/admin/support/contents.php:20 views/installer/steps/finish.php:25
933
- msgctxt "(Admin)"
934
- msgid "Knowledge base"
935
- msgstr "Videnbase"
936
-
937
- #: views/admin/support/contents.php:23 views/installer/steps/finish.php:28
938
- msgctxt "(Admin)"
939
- msgid "Check out the knowledge base for common questions and answers."
940
- msgstr "Tjek kendskabet til almindelige spørgsmål og svar."
941
-
942
- #: views/admin/support/contents.php:29 views/installer/steps/finish.php:34
943
- msgctxt "(Admin)"
944
- msgid "Developer's guide to GDPR"
945
- msgstr "Udviklerens vejledning til GDPR"
946
-
947
- #: views/admin/support/contents.php:32 views/installer/steps/finish.php:37
948
- msgctxt "(Admin)"
949
- msgid "We have a thorough guide to help making custom sites compliant."
950
- msgstr ""
951
- "Vi har en grundig vejledning, der hjælper med at gøre brugerdefinerede "
952
- "websteder kompatible."
953
-
954
- #: views/admin/support/contents.php:40 views/installer/steps/finish.php:45
955
- msgctxt "(Admin)"
956
- msgid "Need help?"
957
- msgstr "Brug for hjælp?"
958
-
959
- #: views/admin/support/contents.php:46 views/installer/steps/finish.php:51
960
- msgctxt "(Admin)"
961
- msgid "Submit a support request"
962
- msgstr "Indsend en supportanmodning"
963
-
964
- #: views/admin/support/contents.php:49 views/installer/steps/finish.php:54
965
- msgctxt "(Admin)"
966
- msgid ""
967
- "Found a bug or problem with the plugin? Post in the wordpress.org support "
968
- "forum."
969
- msgstr ""
970
- "Har du fundet en fejl eller et problem med plugin? Indsend i wordpress.org "
971
- "support forum."
972
-
973
- #: views/admin/support/contents.php:55 views/installer/steps/finish.php:60
974
- msgctxt "(Admin)"
975
- msgid "Request a consultation"
976
- msgstr "Anmod om høring"
977
-
978
- #: views/admin/support/contents.php:58 views/installer/steps/finish.php:63
979
- msgctxt "(Admin)"
980
- msgid ""
981
- "Need development or legal assistance in making your site compliant? We can "
982
- "help!"
983
- msgstr ""
984
- "Har du brug for udvikling eller juridisk bistand til at gøre dit websted "
985
- "kompatibelt? Vi kan hjælpe!"
986
-
987
- #: views/admin/wizard-buttons.php:2
988
- msgctxt "(Admin)"
989
- msgid "Restart setup wizard"
990
- msgstr "Genstart installationsguiden"
991
-
992
- #: views/email/action-export.php:8 views/email/action-forget.php:12
993
- msgctxt "(Admin)"
994
- msgid ""
995
- "This email is just for your information. You don't need to take any action"
996
- msgstr "Denne email er kun til din information. Du behøver ikke at gøre noget"
997
-
998
- #: views/email/action-forget.php:8
999
- msgctxt "(Admin)"
1000
- msgid "The data subject had a user account on your website."
1001
- msgstr "Den registrerede havde en brugerkonto på din hjemmeside."
1002
-
1003
- #: views/email/identify-data-subject.php:2
1004
- msgid "Someone has requested access to your data on"
1005
- msgstr "Nogen har bedt om adgang til dine data på"
1006
-
1007
- #: views/email/identify-data-subject.php:3
1008
- msgid "If this was a mistake, just ignore this email and nothing will happen."
1009
- msgstr ""
1010
- "Hvis dette var en fejl, ignorerer du bare denne email, og der sker ikke "
1011
- "noget."
1012
-
1013
- #: views/email/identify-data-subject.php:4
1014
- msgid "To manage your data, visit the following address:"
1015
- msgstr "For at administrere dine data skal du besøge følgende adresse:"
1016
-
1017
- #: views/email/identify-data-subject.php:10
1018
- msgid "This link is valid for 15 minutes."
1019
- msgstr "Dette link er gyldigt i 15 minutter."
1020
-
1021
- #: views/email/no-data.php:2
1022
- msgid "Someone has requested information about your personal data on"
1023
- msgstr "Nogen har bedt om oplysninger om dine personlige data på"
1024
-
1025
- #: views/email/no-data.php:3
1026
- msgid "None of your personal data is stored on"
1027
- msgstr "Ingen af ​​dine personlige data gemmes på"
1028
-
1029
- #: views/email/no-data.php:5
1030
- msgid ""
1031
- "If this was a mistake or you did not request this email, just ignore it and "
1032
- "nothing will happen."
1033
- msgstr ""
1034
- "Hvis dette var en fejl eller du ikke anmodede om denne email, ignorerer du "
1035
- "bare det, og intet vil ske."
1036
-
1037
- #: views/email/request-export.php:13 views/email/request-forget.php:13
1038
- msgctxt "(Admin)"
1039
- msgid "As a reminder: according to GDPR, you have 30 days to comply."
1040
- msgstr "Som en påmindelse: Ifølge GDPR har du 30 dage til at overholde."
1041
-
1042
- #: views/global/delete-action.php:2
1043
- msgctxt "(Admin)"
1044
- msgid "Automatically anonymize data"
1045
- msgstr "Automatisk anonymisering af data"
1046
-
1047
- #: views/global/delete-action.php:5
1048
- msgctxt "(Admin)"
1049
- msgid "Automatically delete data"
1050
- msgstr "Slet automatisk data"
1051
-
1052
- #: views/global/delete-action.php:9
1053
- msgctxt "(Admin)"
1054
- msgid "Automatically anonymize data and notify me via email"
1055
- msgstr "Automatisk anonymisering af data og meddelelse mig via e-mail"
1056
-
1057
- #: views/global/delete-action.php:13
1058
- msgctxt "(Admin)"
1059
- msgid "Automatically delete data and notify me via email"
1060
- msgstr "Slet automatisk data og meddel mig via e-mail"
1061
-
1062
- #: views/global/delete-action.php:16 views/global/export-action.php:10
1063
- msgctxt "(Admin)"
1064
- msgid "Only notify me via email"
1065
- msgstr "Kun underret mig via e-mail"
1066
-
1067
- #: views/global/export-action.php:2
1068
- msgctxt "(Admin)"
1069
- msgid "Automatically download data"
1070
- msgstr "Download data automatisk"
1071
-
1072
- #: views/global/export-action.php:6
1073
- msgctxt "(Admin)"
1074
- msgid "Automatically download data and notify me via email"
1075
- msgstr "Download automatisk data og underret mig via e-mail"
1076
-
1077
- #: views/installer/continue-notice.php:2
1078
- msgctxt "(Admin)"
1079
- msgid "The The GDPR Framework setup has not been finalized yet."
1080
- msgstr "GDPR Framework-opsætningen er endnu ikke færdiggjort."
1081
-
1082
- #: views/installer/continue-notice.php:3
1083
- msgctxt "(Admin)"
1084
- msgid "You can continue the setup at any time."
1085
- msgstr "Du kan til enhver tid fortsætte opsætningen."
1086
-
1087
- #: views/installer/continue-notice.php:6
1088
- msgctxt "(Admin)"
1089
- msgid "Continue the setup wizard"
1090
- msgstr "Fortsæt installationsguiden"
1091
-
1092
- #: views/installer/continue-notice.php:9
1093
- msgctxt "(Admin)"
1094
- msgid "Hide this message"
1095
- msgstr "Skjul denne besked"
1096
-
1097
- #: views/installer/footer.php:7
1098
- msgid "Back"
1099
- msgstr "Tilbage"
1100
-
1101
- #: views/installer/header.php:26
1102
- msgctxt "(Admin)"
1103
- msgid "I need help"
1104
- msgstr "jeg har brug for hjælp"
1105
-
1106
- #: views/installer/header.php:29
1107
- msgctxt "(Admin)"
1108
- msgid "Developer Docs"
1109
- msgstr "Developer Docs"
1110
-
1111
- #: views/installer/header.php:36
1112
- msgctxt "(Admin)"
1113
- msgid "Configuration"
1114
- msgstr "Konfiguration"
1115
-
1116
- #: views/installer/header.php:46
1117
- msgctxt "(Admin)"
1118
- msgid "Forms & Consent"
1119
- msgstr "Formularer og samtykke"
1120
-
1121
- #: views/installer/header.php:51
1122
- msgctxt "(Admin)"
1123
- msgid "Integrations"
1124
- msgstr "integrationer"
1125
-
1126
- #: views/installer/steps/configuration-settings.php:23
1127
- #: views/installer/steps/configuration-settings.php:73
1128
- msgctxt "(Admin)"
1129
- msgid "Enter the email address to notify"
1130
- msgstr "Indtast e-mail-adressen for at underrette"
1131
-
1132
- #: views/installer/steps/disclaimer.php:21
1133
- msgctxt "(Admin)"
1134
- msgid "I accept"
1135
- msgstr "jeg accepterer"
1136
-
1137
- #: views/installer/welcome-notice.php:7
1138
- msgctxt "(Admin)"
1139
- msgid "Run the setup wizard"
1140
- msgstr "Kør installationsguiden"
1141
-
1142
- #: views/installer/welcome-notice.php:11
1143
- msgctxt "(Admin)"
1144
- msgid "Auto-install pages"
1145
- msgstr "Auto-installere sider"
1146
-
1147
- #: views/installer/welcome-notice.php:15
1148
- msgctxt "(Admin)"
1149
- msgid "Skip and install manually"
1150
- msgstr "Spring og installer manuelt"
1151
-
1152
- #: views/modules/contact-form-7/generator-privacy.php:6
1153
- msgctxt "(Admin)"
1154
- msgid ""
1155
- "This tag generates the default text for Terms & Conditions and/or Privacy "
1156
- "Policy checkbox."
1157
- msgstr ""
1158
- "Dette tag genererer standardteksten til vilkår og betingelser og / eller "
1159
- "privatlivspolitik."
1160
-
1161
- #: views/modules/contact-form-7/generator-privacy.php:15
1162
- msgid "Insert"
1163
- msgstr "Indsæt"
1164
-
1165
- #: views/modules/wordpress-comments/terms-checkbox.php:6
1166
- #: views/modules/wordpress-user/registration-terms-checkbox.php:7
1167
- #, php-format
1168
- msgid "I accept the %sTerms and Conditions%s and the %sPrivacy Policy%s"
1169
- msgstr "Jeg accepterer %sVilkår og betingelser%s og %sFortrolighedspolitik%s"
1170
-
1171
- #: views/modules/wordpress-user/dashboard/data-page/form-consent.php:3
1172
- msgid "Manage consents"
1173
- msgstr "Administrer samtykker"
1174
-
1175
- #: views/modules/wordpress-user/dashboard/data-page/form-consent.php:6
1176
- #: views/privacy-tools/form-consent.php:6
1177
- msgid "Here you can withdraw any consents you have given."
1178
- msgstr "Her kan du trække eventuelle samtykker tilbage."
1179
-
1180
- #: views/modules/wordpress-user/dashboard/data-page/form-consent.php:8
1181
- #: views/privacy-tools/form-consent.php:9
1182
- msgid "Consent types"
1183
- msgstr "Samtykke typer"
1184
-
1185
- #: views/modules/wordpress-user/dashboard/data-page/form-consent.php:23
1186
- #: views/privacy-tools/form-consent.php:24
1187
- msgid "Withdraw"
1188
- msgstr "Træk"
1189
-
1190
- #: views/modules/wordpress-user/dashboard/data-page/form-delete.php:5
1191
- #: views/modules/wordpress-user/dashboard/profile-page/form-delete.php:5
1192
- msgctxt "(Admin)"
1193
- msgid "Delete this user and all data"
1194
- msgstr "Slet denne bruger og alle data"
1195
-
1196
- #: views/modules/wordpress-user/dashboard/data-page/form-delete.php:11
1197
- msgctxt "(Admin)"
1198
- msgid "Delete my data"
1199
- msgstr "Slet mine data"
1200
-
1201
- #: views/modules/wordpress-user/dashboard/data-page/form-delete.php:15
1202
- #: views/privacy-tools/form-delete.php:13
1203
- msgid "Delete all data we have gathered about you."
1204
- msgstr "Slet alle data vi har samlet om dig."
1205
-
1206
- #: views/modules/wordpress-user/dashboard/data-page/form-delete.php:16
1207
- #: views/privacy-tools/form-delete.php:14
1208
- msgid "If you have a user account on our site, it will also be deleted."
1209
- msgstr ""
1210
- "Hvis du har en brugerkonto på vores hjemmeside, bliver den også slettet."
1211
-
1212
- #: views/modules/wordpress-user/dashboard/data-page/form-delete.php:17
1213
- #: views/privacy-tools/form-delete.php:15
1214
- msgid "Be careful - this action is permanent and CANNOT be undone."
1215
- msgstr "Pas på - denne handling er permanent og kan ikke fortrydes."
1216
-
1217
- #: views/modules/wordpress-user/dashboard/data-page/form-delete.php:22
1218
- #: views/modules/wordpress-user/dashboard/profile-page/form-delete.php:23
1219
- msgctxt "(Admin)"
1220
- msgid ""
1221
- "You seem to have an administrator or equivalent role, so deleting/"
1222
- "anonymizing via this page is disabled."
1223
- msgstr ""
1224
- "Du synes at have en administrator eller tilsvarende rolle, så sletning / "
1225
- "anonymisering via denne side er deaktiveret."
1226
-
1227
- #: views/modules/wordpress-user/dashboard/form-export.php:7
1228
- #: views/privacy-tools/form-export.php:1
1229
- msgid "Download your data"
1230
- msgstr "Download dine data"
1231
-
1232
- #: views/modules/wordpress-user/dashboard/form-export.php:12
1233
- #: views/privacy-tools/form-export.php:13
1234
- msgid "Download as table"
1235
- msgstr "Download som tabel"
1236
-
1237
- #: views/modules/wordpress-user/dashboard/form-export.php:15
1238
- #: views/privacy-tools/form-export.php:22
1239
- msgid "Export as JSON"
1240
- msgstr "Eksporter som JSON"
1241
-
1242
- #: views/modules/wordpress-user/dashboard/form-export.php:19
1243
- #: views/privacy-tools/form-export.php:4
1244
- msgid "You can download all your data formatted as a table for viewing."
1245
- msgstr "Du kan downloade alle dine data formateret som et bord til visning."
1246
-
1247
- #: views/modules/wordpress-user/dashboard/form-export.php:20
1248
- #: views/privacy-tools/form-export.php:5
1249
- msgid "Alternatively, you can export it in machine-readable JSON format."
1250
- msgstr "Alternativt kan du eksportere det i maskinlæsbart JSON-format."
1251
-
1252
- #: views/modules/wordpress-user/dashboard/profile-page/form-delete.php:11
1253
- msgctxt "(Admin)"
1254
- msgid "Delete user and all data"
1255
- msgstr "Slet bruger og alle data"
1256
-
1257
- #: views/modules/wordpress-user/dashboard/profile-page/form-delete.php:14
1258
- msgctxt "(Admin)"
1259
- msgid "Anonymize user and all data"
1260
- msgstr "Anonym bruger og alle data"
1261
-
1262
- #: views/modules/wordpress-user/dashboard/profile-page/header.php:2
1263
- msgctxt "(Admin)"
1264
- msgid "GDPR Data"
1265
- msgstr "GDPR-data"
1266
-
1267
- #: views/modules/wordpress-user/dashboard/profile-page/header.php:6
1268
- msgctxt "(Admin)"
1269
- msgid "This user has been anonymized."
1270
- msgstr "Denne bruger er blevet anonymiseret."
1271
-
1272
- #: views/modules/wordpress-user/dashboard/profile-page/table-consent.php:4
1273
- msgctxt "(Admin)"
1274
- msgid "Consents given"
1275
- msgstr "Tilladelser givet"
1276
-
1277
- #: views/modules/wordpress-user/dashboard/profile-page/table-consent.php:17
1278
- msgctxt "(Admin)"
1279
- msgid "No consents given"
1280
- msgstr "Ingen tilladelser givet"
1281
-
1282
- #: views/privacy-tools/form-consent.php:2
1283
- msgid "Consent"
1284
- msgstr "Samtykke"
1285
-
1286
- #: views/privacy-tools/form-delete.php:1
1287
- #: views/privacy-tools/notice-admin-role.php:1
1288
- msgid "Delete my user and data"
1289
- msgstr "Slet min bruger og data"
1290
-
1291
- #: views/privacy-tools/form-delete.php:7
1292
- msgid "Delete my data"
1293
- msgstr "Slet mine data"
1294
-
1295
- #: views/privacy-tools/form-identify.php:8
1296
- msgid "Back to Privacy Tools"
1297
- msgstr "Tilbage til Privacy Tools"
1298
-
1299
- #: views/privacy-tools/form-identify.php:14
1300
- msgid "Identify yourself!"
1301
- msgstr "Identificer dig selv!"
1302
-
1303
- #: views/privacy-tools/form-identify.php:17
1304
- #: views/privacy-tools/form-identify.php:20
1305
- msgid "Enter your email address"
1306
- msgstr "Indtast din e-mailadresse"
1307
-
1308
- #: views/privacy-tools/form-identify.php:23
1309
- msgid "Send email"
1310
- msgstr "Send e-mail"
1311
-
1312
- #: views/privacy-tools/notice-admin-role.php:4
1313
- msgctxt "(Admin)"
1314
- msgid "Data deletion is disabled for administrative accounts."
1315
- msgstr "Data sletning er deaktiveret for administrative konti."
1316
-
1317
- #: views/privacy-tools/notices.php:3
1318
- msgid ""
1319
- "We will send you an email with the link to access your data. Please check "
1320
- "your spam folder as well!"
1321
- msgstr ""
1322
- "Vi sender dig en email med linket for at få adgang til dine data. Kontroller "
1323
- "også din spam mappe!"
1324
-
1325
- #: views/privacy-tools/notices.php:7
1326
- msgid "The email you entered does not appear to be a valid email."
1327
- msgstr "Den email du indtastede ser ikke ud til at være en gyldig email."
1328
-
1329
- #: views/privacy-tools/notices.php:11
1330
- msgid "Sorry - the link seems to have expired. Please try again!"
1331
- msgstr "Beklager - linket synes at være udløbet. Prøv igen!"
1332
-
1333
- #: views/privacy-tools/notices.php:23
1334
- msgid "Your personal data has been removed!"
1335
- msgstr ""
1336
- "Deine personenbezogenen Daten wurden gelöscht!Dine personlige data er blevet "
1337
- "fjernet!"
1338
-
1339
- #: views/privacy-tools/privacy-tools.php:5
1340
- msgid "You are identified as"
1341
- msgstr "Du er identificeret som"
1342
-
1343
- #: views\admin\general\enable-tac.php:9
1344
- msgctxt "(Admin)"
1345
- msgid "Enable the term and condition page."
1346
- msgstr ""
1347
- "Aktiviere Begriffs- und Bedingungsseite.Aktivér termen og betingelsessiden."
1348
-
1349
- #: src\Admin\AdminTabGeneral.php:51
1350
- msgctxt "(Admin)"
1351
- msgid "Enable Term and Conditions"
1352
- msgstr "Aktivér vilkår og betingelser"
1353
-
1354
- #: gdpr-framework.php:121
1355
- msgid ""
1356
- "This website uses cookies to ensure you get the best experience on our "
1357
- "website."
1358
- msgstr ""
1359
- "Denne hjemmeside bruger cookies for at sikre, at du får den bedste oplevelse "
1360
- "på vores hjemmeside."
1361
-
1362
- #: gdpr-framework.php:121
1363
- msgid "Decline"
1364
- msgstr "Nedgang"
1365
-
1366
- #: gdpr-framework.php:121
1367
- msgid "Accept"
1368
- msgstr "Acceptere"
1369
-
1370
- #: gdpr-framework.php:133
1371
- msgid "Learn more"
1372
- msgstr "Lær mere"
1373
-
1374
- #: AdminTabGeneral.php:94
1375
- msgctxt "(Admin)"
1376
- msgid "From Email"
1377
- msgstr "Fra Email"
1378
-
1379
- #: AdminTabGeneral.php:87
1380
- msgctxt "(Admin)"
1381
- msgid "From Name"
1382
- msgstr "Fra Navn"
1383
-
1384
- #: AdminTabGeneral.php:82
1385
- msgctxt "(Admin)"
1386
- msgid "Email Setting"
1387
- msgstr "Emailindstilling"
1388
-
1389
- #: AdminTabGeneral.php:104
1390
- msgctxt "(Admin)"
1391
- msgid "Acceptance Popup Setting"
1392
- msgstr "Acceptance Popup Indstilling"
1393
-
1394
- #: AdminTabGeneral.php:109
1395
- msgctxt "(Admin)"
1396
- msgid "Popup Position"
1397
- msgstr "Popup Position"
1398
-
1399
- #: AdminTabGeneral.php:116
1400
- msgctxt "(Admin)"
1401
- msgid "Popup theme"
1402
- msgstr "Popup tema"
1403
-
1404
- #: AdminTabGeneral.php:123
1405
- msgctxt "(Admin)"
1406
- msgid "Cookie Acceptance Background Color"
1407
- msgstr "Cookie Acceptance Baggrundsfarve"
1408
-
1409
- #: AdminTabGeneral.php:130
1410
- msgctxt "(Admin)"
1411
- msgid "Cookie Acceptance Text Color"
1412
- msgstr "Cookie Acceptance Text Color"
1413
-
1414
- #: AdminTabGeneral.php:137
1415
- msgctxt "(Admin)"
1416
- msgid "Cookie Acceptance Button Backgroung Color"
1417
- msgstr "Cookie Acceptance Button Baggrundsfarve"
1418
-
1419
- #: AdminTabGeneral.php:144
1420
- msgctxt "(Admin)"
1421
- msgid "Cookie Acceptance Button Color"
1422
- msgstr "Cookie Acceptance Button Color"
1423
-
1424
- #: AdminTabGeneral.php:151
1425
- msgctxt "(Admin)"
1426
- msgid "Cookie Acceptance Border Color"
1427
- msgstr "Cookie Acceptance Border Color"
1428
-
1429
- #: AdminTabGeneral.php:67
1430
- msgctxt "(Admin)"
1431
- msgid "Enable Cookie Acceptance Popup"
1432
- msgstr "Aktivér cookieoptagelse popup"
1433
-
1434
- #: AdminTabGeneral.php:73
1435
- msgctxt "(Admin)"
1436
- msgid "Cookie Acceptance Popup Content"
1437
- msgstr "Cookie Acceptance Popup indhold"
1438
-
1439
- #: description-position-action.php
1440
- msgctxt "(Admin)"
1441
- msgid "Select position of the Popup"
1442
- msgstr "Vælg position af popupen"
1443
-
1444
- #: description-theme-action.php
1445
- msgctxt "(Admin)"
1446
- msgid "Select theme of the Popup"
1447
- msgstr "Vælg tema for popupen"
1448
-
1449
- #: description-theme-action.php:69
1450
- msgctxt "(Admin)"
1451
- msgid "Disable Comment Checkbox"
1452
- msgstr "Deaktiver kommentarfeltet"
1453
-
1454
- #: description-theme-action.php:76
1455
- msgctxt "(Admin)"
1456
- msgid "Disable Register Form Checkbox"
1457
- msgstr "Deaktiver Registreringsform Checkbox"
1458
-
1459
- #: description-theme-action.php:312
1460
- msgctxt "(Admin)"
1461
- msgid "Disable Checkbox For Comments"
1462
- msgstr "Deaktiver afkrydsningsfeltet for kommentarer"
1463
-
1464
- #: AdminTabGeneral.php:319
1465
- msgctxt "(Admin)"
1466
- msgid "Disable Checkbox For Register Form"
1467
- msgstr "Deaktiver afkrydsningsfeltet for registreringsformular"
1468
-
1469
- #: views/privacy-tools/form-identify.php:15
1470
- msgid "Please identify yourself via e-mail"
1471
- msgstr "Identificer dig selv via e-mail"
1472
-
1473
- #: advanced-integration\header.php:2
1474
- msgctxt "(Admin)"
1475
- msgid "This page allows you to advance integration with ClassiDocs™"
1476
- msgstr ""
1477
- "Denne side giver dig mulighed for at fremme integration med ClassiDocs™"
1478
-
1479
- #: AdminTabAdvancedIntegration.php:97
1480
- msgctxt "(Admin)"
1481
- msgid "ClassiDocs Password"
1482
- msgstr "ClassiDocs Password"
1483
-
1484
- #: AdminTabAdvancedIntegration.php:88
1485
- msgctxt "(Admin)"
1486
- msgid "ClassiDocs Username"
1487
- msgstr "ClassiDocs Brugernavn"
1488
-
1489
- #: AdminTabAdvancedIntegration.php:79
1490
- msgctxt "(Admin)"
1491
- msgid "ClassiDocs URL"
1492
- msgstr "ClassiDocs URL"
1493
-
1494
- #: AdminTabAdvancedIntegration.php:69
1495
- msgctxt "(Admin)"
1496
- msgid "Enable Response with related queries?"
1497
- msgstr "Aktivér svar med relaterede forespørgsler?"
1498
-
1499
- #: AdminTabAdvancedIntegration.php:60
1500
- msgctxt "(Admin)"
1501
- msgid "Submit SAR request details?"
1502
- msgstr "Indsend SAR-anmodning detaljer?"
1503
-
1504
- #: AdminTabAdvancedIntegration.php:51
1505
- msgctxt "(Admin)"
1506
- msgid "Integrate with ClassiDocs?"
1507
- msgstr "Integrere med ClassiDocs?"
1508
-
1509
- #: AdminTabAdvancedIntegration.php:43
1510
- msgctxt "(Admin)"
1511
- msgid "Integration Settings"
1512
- msgstr "Integrationsindstillinger"
1513
-
1514
- #: AdminTabAdvancedIntegration.php:35
1515
- msgctxt "(Admin)"
1516
- msgid "Advanced Integration"
1517
- msgstr "Avanceret integration"
1518
-
1519
- #: checkbox-field.php:10
1520
- msgctxt "(Admin)"
1521
- msgid "Sign up for free here"
1522
- msgstr "Tilmeld dig gratis her"
1523
-
1524
- #: checkbox-field.php:10
1525
- msgctxt "(Admin)"
1526
- msgid "Click Here"
1527
- msgstr "Klik her"
1528
-
1529
- #: ClassiDocs-results.php:12
1530
- msgid "Previous Results"
1531
- msgstr "Tidligere resultater"
1532
-
1533
- #: ClassiDocs-results.php:13
1534
- msgid "Current Results"
1535
- msgstr "Nuværende resultater"
1536
-
1537
- #: ClassiDocs-results.php:19
1538
- msgid "Name"
1539
- msgstr "Navn"
1540
-
1541
- #: ClassiDocs-results.php:22
1542
- msgid "Path"
1543
- msgstr "Sti"
1544
-
1545
- #: ClassiDocs-results.php:34
1546
- msgid "Workstation"
1547
- msgstr "Workstation"
1548
-
1549
- #: ClassiDocs-results.php:37
1550
- msgid "Last Scan"
1551
- msgstr "Sidste Scan"
1552
-
1553
- #: ClassiDocs-results.php:62
1554
- msgid "No ClassiDocs data found!"
1555
- msgstr "Ingen ClassiDocs data fundet!"
1556
-
1557
- #: enable_popup_header.php:5
1558
- msgid "Cookies used on the website!"
1559
- msgstr "Cookies utilizadas en el sitio web!"
1560
-
1561
- #: enable_popup_header.php:9
1562
- msgid "Leave blank if don't want header to get display."
1563
- msgstr "Deje en blanco si no quiere que el encabezado se muestre."
1564
-
1565
- #: AdminTabCookiePopup.php:39
1566
- msgctxt "(Admin)"
1567
- msgid "Cookie Popup Settings"
1568
- msgstr "Cookie popup indstillinger"
1569
-
1570
- #: AdminTabCookiePopup.php:17
1571
- msgctxt "(Admin)"
1572
- msgid "Cookie Popup"
1573
- msgstr "Cookie popup"
1574
-
1575
- #: AdminTabCookiePopup.php:49
1576
- msgctxt "(Admin)"
1577
- msgid "Enable One Time Cookie Acceptance Popup"
1578
- msgstr "Aktivér One Time Cookie Acceptance Popup"
1579
-
1580
- #: consent.php:79
1581
- msgctxt "(Admin)"
1582
- msgid "Show Consent types"
1583
- msgstr "Vis samtykke typer"
1584
-
1585
- msgctxt "(Admin)"
1586
- msgid "Hide consent types"
1587
- msgstr "Skjul samtykke typer"
1588
-
1589
- msgctxt "(Admin)"
1590
- msgid "Do you want form to be GDPR compliance."
1591
- msgstr "Ønsker du, at formularen er GDPR-overholdelse."
1592
-
1593
- msgctxt "(Admin)"
1594
- msgid ""
1595
- "You have installed flamingo, To make this GDPR compliance in individual "
1596
- "contact form's privacy tab check the checkbox for include data to be search "
1597
- "on Privacy tool."
1598
- msgstr ""
1599
- "Du har installeret flamingo. For at gøre denne GDPR-overholdelse i den "
1600
- "enkelte kontaktformularens privatlivs-faneblad markér afkrydsningsfeltet "
1601
- "for, at data, der skal søges i Privacy-værktøjet, er inkluderet."
1602
-
1603
- msgctxt "(Admin)"
1604
- msgid "Enable Policy Link On Popup"
1605
- msgstr "Aktivér politiklink på pop op"
1606
-
1607
- msgctxt "(Admin)"
1608
- msgid "Enable Privacy policy on Popup"
1609
- msgstr "Aktivér privatlivspolitik på pop op"
1610
-
1611
- #: AdminTabCookiePopup.php
1612
- msgctxt "(Admin)"
1613
- msgid "Cookie Acceptance Popup header"
1614
- msgstr "Cookie Acceptance Popup header"
1615
-
1616
- #: views\admin\privacy-manager\header.php:2
1617
- msgctxt "(Admin)"
1618
- msgid "Data443™ Privacy Manager"
1619
- msgstr "Data443™ Privacy Manager"
1620
-
1621
- #: views\admin\privacy-manager\header.php:3
1622
- msgctxt "(Admin)"
1623
- msgid ""
1624
- "ensures privacy regulation compliance, such as GDPR, CCPA, LGPD, etc, at the "
1625
- "next level."
1626
- msgstr ""
1627
- "sikrer overholdelse af reglerne om beskyttelse af privatlivets fred, som f."
1628
- "eks. GDPR, CCPA, LGPD osv. på næste niveau."
1629
-
1630
- #: views\admin\privacy-manager\header.php:4
1631
- msgctxt "(Admin)"
1632
- msgid ""
1633
- "In addition to DSAR tracking and management, Privacy Manager adds the "
1634
- "following features to your data protection compliance resources:"
1635
- msgstr ""
1636
- "Ud over DSAR-tracking og -administration tilføjer Privacy Manager følgende "
1637
- "funktioner til dine databeskyttelsesoverensstemmelsesressourcer:"
1638
-
1639
- #: views\admin\privacy-manager\header.php:6
1640
- msgctxt "(Admin)"
1641
- msgid "Log and store ICO breach notifications"
1642
- msgstr "Log og gem ICO krænker underretninger"
1643
-
1644
- #: views\admin\privacy-manager\header.php:7
1645
- msgctxt "(Admin)"
1646
- msgid "Keeps full record of all requests, ticketed and timeline"
1647
- msgstr "Holder fuld rekord af alle anmodninger, billet og tidslinje"
1648
-
1649
- #: views\admin\privacy-manager\header.php:8
1650
- msgctxt "(Admin)"
1651
- msgid "Gap analysis and breach notifications"
1652
- msgstr "Gap analyse og brud underretninger"
1653
-
1654
- #: views\admin\privacy-manager\header.php:9
1655
- msgctxt "(Admin)"
1656
- msgid "In depth activity log with all GDPR, CCPA, etc actions evidenced"
1657
- msgstr "I dybde aktivitets log med alle GDPR, CCPA, etc handlinger vist"
1658
-
1659
- #: views\admin\privacy-manager\header.php:10
1660
- msgctxt "(Admin)"
1661
- msgid "Highlights areas of concern and where you need to focus"
1662
- msgstr "Fremhæver områder af bekymring og hvor du skal fokusere"
1663
-
1664
- #: views\admin\privacy-manager\header.php:11
1665
- msgctxt "(Admin)"
1666
- msgid ""
1667
- "eLearning platform with access for all staff to ensure privacy regulation "
1668
- "compliance and obligations"
1669
- msgstr ""
1670
- "eLearning platform med adgang for alle medarbejdere til at sikre "
1671
- "overholdelse og forpligtelser til beskyttelse af privatlivets fred"
1672
-
1673
- #: views\admin\privacy-manager\header.php:12
1674
- msgctxt "(Admin)"
1675
- msgid "Tracks who accesses the system, when and why"
1676
- msgstr "Spor, der får adgang til systemet, hvornår og hvorfor"
1677
-
1678
- #: views\admin\privacy-manager\header.php:15
1679
- msgctxt "(Admin)"
1680
- msgid ""
1681
- "Our system enables your business to demonstrate its obligations in "
1682
- "protecting your customer data, show understanding of your business "
1683
- "activities and deliver eLearning and online tests to employees, ensuring "
1684
- "everyone in your company understands your privacy compliance rules and best "
1685
- "practices to operate."
1686
- msgstr ""
1687
- "Vores system gør det muligt for din virksomhed at demonstrere sine "
1688
- "forpligtelser med hensyn til at beskytte dine kundedata, vise forståelse for "
1689
- "dine forretningsaktiviteter og levere eLearning og online test til "
1690
- "medarbejdere, så alle i din virksomhed forstår dine regler for beskyttelse "
1691
- "af personlige oplysninger og bedste praksis til at fungere."
1692
-
1693
- #: views\admin\privacy-manager\header.php:16
1694
- msgctxt "(Admin)"
1695
- msgid ""
1696
- "No matter where you are on your data privacy journey, the ultimate goal is "
1697
- "compliance."
1698
- msgstr ""
1699
- "Uanset hvor du er på din datasikkerhedsrejse, er det ultimative mål at "
1700
- "overholde."
1701
-
1702
- #: views\admin\privacy-manager\header.php:16
1703
- msgctxt "(Admin)"
1704
- msgid "enables your organization to comply with all privacy regulations."
1705
- msgstr ""
1706
- "gør det muligt for din organisation at overholde alle regler om beskyttelse "
1707
- "af personlige oplysninger."
1708
-
1709
- #: views\admin\support\contents.php:49
1710
- msgctxt "(Admin)"
1711
- msgid ""
1712
- "Found a bug or have a question about the plugin? Submit a support request "
1713
- "and we’ll get right on it!"
1714
- msgstr ""
1715
- "Har du fundet en fejl eller har du et spørgsmål om plugin? Send en "
1716
- "supportanmodning, og vi får det rigtigt!"
1717
-
1718
- #: views\admin\support\contents.php:58
1719
- msgctxt "(Admin)"
1720
- msgid "Need assistance in making your site compliant? We can help!"
1721
- msgstr ""
1722
- "Har du brug for hjælp til at gøre dit websted kompatibelt? Vi kan hjælpe!"
1723
-
1724
- #: views\admin\general\woo-compatibility.php:9
1725
- msgctxt "(Admin)"
1726
- msgid "Enable WooCommerce data on GDPR tool"
1727
- msgstr "Aktivér WooCommerce-data på GDPR-værktøjet"
1728
-
1729
- #: src\Admin\AdminTabGeneral.php:241
1730
- msgctxt "(Admin)"
1731
- msgid "Enable WooCommerce Compatibility"
1732
- msgstr "Aktivér WooCommerce-kompatibilitet"
1733
-
1734
- #: views\modules\wordpress-user\dashboard\data-page\form-delete.php:19
1735
- msgid "Note Regarding Order:"
1736
- msgstr "Bemærkning vedrørende ordre:"
1737
-
1738
- #: views\modules\wordpress-user\dashboard\data-page\form-delete.php:20
1739
- msgid ""
1740
- "Your order with status Processing will not get deleted until status change."
1741
- msgstr ""
1742
- "Din ordre med status Behandling vil ikke blive slettet, indtil statusændring."
1743
-
1744
- #: views\modules\wordpress-user\dashboard\data-page\form-delete.php:21
1745
- msgid "Your order with status Completed will get anonymize."
1746
- msgstr "Din ordre med status Afsluttet vil blive anonymiseret."
1747
-
1748
- #: views\modules\wordpress-user\dashboard\data-page\form-delete.php:22
1749
- msgid "If you delete Completed order you can't apply for refund."
1750
- msgstr "Hvis du sletter Afsluttet ordre, kan du ikke søge om refusion."
1751
-
1752
- #: views\admin\general\woo-compatibility.php:12
1753
- msgctxt "(Admin)"
1754
- msgid "Will work for WooCommerce Version 3.4.0 or later."
1755
- msgstr "Vil arbejde for WooCommerce Version 3.4.0 eller nyere."
1756
-
1757
- #: views\admin\general\edd-compatibility.php:9
1758
- msgctxt "(Admin)"
1759
- msgid "Enable EDD data on GDPR tool."
1760
- msgstr "Aktivér EDD-data på GDPR-værktøjet."
1761
-
1762
- #: views\admin\general\edd-compatibility.php:12
1763
- msgctxt "(Admin)"
1764
- msgid "Will work for EDD Version 2.0.0 or later."
1765
- msgstr "Vil arbejde for EDD Version 2.0.0 eller senere."
1766
-
1767
- #: src\Admin\AdminTabGeneral.php:262
1768
- msgctxt "(Admin)"
1769
- msgid "Enable EDD Compatibility"
1770
- msgstr "Aktiver EDD-kompatibilitet"
1771
-
1772
- #: gdpr-framework.php:298
1773
- msgid "Cookie Policy"
1774
- msgstr "Cookie Policy"
1775
-
1776
- #: ConsentManager.php:96
1777
- msgctxt "(Admin)"
1778
- msgid ""
1779
- "This consent is visible by default on woocommerce checkout page. If someone "
1780
- "wishes to withdraw it, they should simply request to delete all their data."
1781
- msgstr ""
1782
- "Dette samtykke er som standard synligt på wokommerce checkout side. Hvis "
1783
- "nogen ønsker at trække det tilbage, skal de blot anmode om at slette alle "
1784
- "deres data."
1785
-
1786
- #: ConsentManager.php:96
1787
- msgctxt "(Admin)"
1788
- msgid "Woocommerce Policy Consent"
1789
- msgstr "Woocommerce Policy Consent"
1790
-
1791
- #: WoocommerceGdpr.php:150
1792
- msgid "Please acknowledge the Privacy Policy"
1793
- msgstr "Vær venlig at anerkende privatlivspolitikken"
1794
-
1795
- #: woo-compatibility.php:9
1796
- msgctxt "(Admin)"
1797
- msgid "Enable WooCommerce data on GDPR tool."
1798
- msgstr "Aktivér WooCommerce-data på GDPR-værktøjet."
1799
-
1800
- #: views\admin\general\enable-popup.php:12
1801
- msgctxt "(Admin)"
1802
- msgid ""
1803
- "<b>Note:</b> Need to add custom content <b>gdpr_cookie_consent</b> its "
1804
- "accepted on popup accept button."
1805
- msgstr ""
1806
- "<b> Bemærk: </ b> Har brug for at tilføje brugerdefineret indhold <b> "
1807
- "gdpr_cookie_consent </ b> det accepteres på popup accept knappen."
1808
-
1809
- #: AdminTabCookiePopup.php:105
1810
- msgctxt "(Admin)"
1811
- msgid "Popup Dismiss Text"
1812
- msgstr "Popup Afvis Tekst"
1813
-
1814
- #: AdminTabCookiePopup.php:98
1815
- msgctxt "(Admin)"
1816
- msgid "Popup Allow Text"
1817
- msgstr "Popup Tillad tekst"
1818
-
1819
- #: AdminTabGeneral.php:241
1820
- msgctxt "(Admin)"
1821
- msgid "Woocommerce Integration"
1822
- msgstr "WoCommerce Integration"
1823
-
1824
- #: AdminTabGeneral.php:259
1825
- msgctxt "(Admin)"
1826
- msgid "Easy Digital Download Integration"
1827
- msgstr "Easy Digital Download Integration"
1828
-
1829
- #: has-dpo.php:11
1830
- msgctxt "(Admin)"
1831
- msgid "I have appointed a Data Protection Officer (DPO)"
1832
- msgstr "Jeg har udpeget en databeskyttelsesansvarlig (DPO)"
1833
-
1834
- #: views/admin/general/stylesheet.php:9
1835
- msgctxt "(Admin)"
1836
- msgid "Enable basic styling for Privacy Tools page."
1837
- msgstr "Aktivér grundlæggende styling for siden Privacy Policy."
1838
-
1839
- #: AdminTabPrivacyPolicy.php:204
1840
- msgctxt "(Admin)"
1841
- msgid "Delete Text"
1842
- msgstr "Slet tekst"
1843
-
1844
- #: consent.php:80
1845
- msgctxt "(Admin)"
1846
- msgid "Add consent type"
1847
- msgstr "Tilføj tilladelse type"
1848
-
1849
- #: AdminTabGeneral.php:127
1850
- msgctxt "(Admin)"
1851
- msgid "Privacy Policy Custom URL"
1852
- msgstr "Privacy Policy Brugerdefineret URL"
1853
-
1854
- #: custom-policy-url.php:6
1855
- msgctxt "(Admin)"
1856
- msgid "Leave blank if privacy policy page already selected"
1857
- msgstr ""
1858
- "Forlad blank hvis siden om beskyttelse af personlige oplysninger allerede er "
1859
- "valgt"
1860
-
1861
- #: views/admin/general/description-delete-action.php:2
1862
- msgctxt "(Admin)"
1863
- msgid "What should happen if a data subject requests deleting their data."
1864
- msgstr "Hvad skal der ske, hvis et registrerede ønsker at slette deres data."
1865
-
1866
- #: views/admin/general/description-export-action.php:2
1867
- msgctxt "(Admin)"
1868
- msgid "Optional. Select the page which contains your Terms & Conditions"
1869
- msgstr "Valgfri. Vælg den side, der indeholder dine Vilkår og betingelser"
1870
-
1871
- #: views/admin/general/description-terms-page.php:2
1872
- msgctxt "(Admin)"
1873
- msgid ""
1874
- "What should happen if a data subject requests viewing or exporting their "
1875
- "data."
1876
- msgstr ""
1877
- "Hvad skal der ske, hvis et registreret ønsker at se eller eksportere deres "
1878
- "data."
1879
-
1880
- #: woo-disable_checkbox.php:9
1881
- msgctxt "(Admin)"
1882
- msgid "Disable WooCommerce Privacy Checkbox"
1883
- msgstr "Deaktiver WooCommerce Privacy Checkbox"
1884
-
1885
- #: AdminTabCookiePopup.php:133
1886
- msgctxt "(Admin)"
1887
- msgid "Popup Learn More Text"
1888
- msgstr "Popup Lær mere tekst"
1889
-
1890
- #: AdminTabGeneral.php:262
1891
- msgctxt "(Admin)"
1892
- msgid "Disable WooCommerce Register Privacy Checkbox"
1893
- msgstr ""
1894
- "Deaktiver afkrydsningsfeltet WooCommerce Register for beskyttelse af "
1895
- "personlige oplysninger"
1896
-
1897
- #: AdminTabCookiePopup.php:121
1898
- msgctxt "(Admin)"
1899
- msgid "Cookie Acceptance link target"
1900
- msgstr "Cookie-acceptlink-link"
1901
-
1902
- #: popup_link_target.php:3
1903
- msgctxt "(Admin)"
1904
- msgid "Next Tab"
1905
- msgstr "Næste fane"
1906
-
1907
- #: popup_link_target.php:5
1908
- msgctxt "(Admin)"
1909
- msgid "Self"
1910
- msgstr "self"
1
+ # SOME DESCRIPTIVE TITLE.
2
+ # Copyright (C) YEAR Codelight
3
+ # This file is distributed under the same license as the The GDPR Framework package.
4
+ # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5
+ #
6
+ msgid ""
7
+ msgstr ""
8
+ "Project-Id-Version: The GDPR Framework 1.0\n"
9
+ "Report-Msgid-Bugs-To: gdpr@codelight.eu\n"
10
+ "POT-Creation-Date: 2018-04-16 10:50+0000\n"
11
+ "PO-Revision-Date: 2019-09-19 12:37+0530\n"
12
+ "Last-Translator: Stefan Butz <webmaster@die-blaue-eisdiele.de>\n"
13
+ "MIME-Version: 1.0\n"
14
+ "Content-Type: text/plain; charset=UTF-8\n"
15
+ "Content-Transfer-Encoding: 8bit\n"
16
+ "X-Generator: Poedit 1.5.7\n"
17
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
+ "Language: de-DE\n"
19
+ "Language-Team: Deutsch\n"
20
+
21
+ #: gdpr-framework.php:26
22
+ msgctxt "(Admin)"
23
+ msgid "WordPress GDPR &rsaquo; Error"
24
+ msgstr "WordPress GDPR & rsaquo; Fejl"
25
+
26
+ #: gdpr-framework.php:35
27
+ msgctxt "(Admin)"
28
+ msgid "Invalid PHP version"
29
+ msgstr "Ugyldig PHP-version"
30
+
31
+ #: gdpr-framework.php:35
32
+ msgctxt "(Admin)"
33
+ msgid "You must be using PHP 5.6.33 or greater."
34
+ msgstr "Du skal bruge PHP 5.6.33 eller højere."
35
+
36
+ #: gdpr-framework.php:42
37
+ msgctxt "(Admin)"
38
+ msgid "Invalid WordPress version"
39
+ msgstr "Ugyldig WordPress-version"
40
+
41
+ #: gdpr-framework.php:42
42
+ msgctxt "(Admin)"
43
+ msgid "You must be using WordPress 4.3.0 or greater."
44
+ msgstr "Du skal bruge WordPress 4.3.0 eller nyere."
45
+
46
+ #: gdpr-framework.php:52
47
+ msgctxt "(Admin)"
48
+ msgid ""
49
+ "You appear to be running a development version of GDPR. You must run "
50
+ "<code>composer install</code> from the plugin directory."
51
+ msgstr ""
52
+ "Du ser ud til at køre en udviklingsversion af GDPR. Du skal køre <code> "
53
+ "komponentinstallation </ code> fra plugin biblioteket."
54
+
55
+ #: gdpr-framework.php:53
56
+ msgctxt "(Admin)"
57
+ msgid "Autoloader not found."
58
+ msgstr "Autoloader ikke fundet."
59
+
60
+ #: gdpr-framework.php:115
61
+ msgctxt "(Admin)"
62
+ msgid "Anonymous"
63
+ msgstr "Anonym"
64
+
65
+ #: src/Admin/AdminTab.php:115
66
+ msgctxt "(Admin)"
67
+ msgid "Save"
68
+ msgstr "Gemme"
69
+
70
+ #: src/Admin/AdminTab.php:151
71
+ msgctxt "(Admin)"
72
+ msgid "Policy generated!"
73
+ msgstr "Politik genereret!"
74
+
75
+ #: src/Admin/AdminTabGeneral.php:11
76
+ msgctxt "(Admin)"
77
+ msgid "General"
78
+ msgstr "Generel"
79
+
80
+ #: src/Admin/AdminTabGeneral.php:38
81
+ msgctxt "(Admin)"
82
+ msgid "General Settings"
83
+ msgstr "Generelle indstillinger"
84
+
85
+ #: src/Admin/AdminTabGeneral.php:43
86
+ msgctxt "(Admin)"
87
+ msgid "Enable Privacy Tools"
88
+ msgstr "Aktivér privatlivsværktøjer"
89
+
90
+ #: src/Admin/AdminTabGeneral.php:53
91
+ msgctxt "(Admin)"
92
+ msgid "Pages"
93
+ msgstr "sider"
94
+
95
+ #: src/Admin/AdminTabGeneral.php:58 src/Admin/WordpressAdmin.php:151
96
+ msgctxt "(Admin)"
97
+ msgid "Privacy Tools Page"
98
+ msgstr "Privacy Tools Page"
99
+
100
+ #: src/Admin/AdminTabGeneral.php:65 src/Admin/WordpressAdmin.php:147
101
+ msgctxt "(Admin)"
102
+ msgid "Privacy Policy Page"
103
+ msgstr "Privacy Policy Side"
104
+
105
+ #: src/Admin/AdminTabGeneral.php:72
106
+ msgctxt "(Admin)"
107
+ msgid "Terms & Conditions Page"
108
+ msgstr "Vilkår og betingelser Side"
109
+
110
+ #: src/Admin/AdminTabGeneral.php:82
111
+ msgctxt "(Admin)"
112
+ msgid "View & Export Data"
113
+ msgstr "Vis og eksporter data"
114
+
115
+ #: src/Admin/AdminTabGeneral.php:87
116
+ msgctxt "(Admin)"
117
+ msgid "Export action"
118
+ msgstr "Eksporter handling"
119
+
120
+ #: src/Admin/AdminTabGeneral.php:94 src/Admin/AdminTabGeneral.php:133
121
+ msgctxt "(Admin)"
122
+ msgid "Email to notify"
123
+ msgstr "Email til at underrette"
124
+
125
+ #: src/Admin/AdminTabGeneral.php:105
126
+ msgctxt "(Admin)"
127
+ msgid "Delete & Anonymize Data"
128
+ msgstr "Slet & anonymiser data"
129
+
130
+ #: src/Admin/AdminTabGeneral.php:110
131
+ msgctxt "(Admin)"
132
+ msgid "Delete action"
133
+ msgstr "Delete action"
134
+
135
+ #: src/Admin/AdminTabGeneral.php:117
136
+ msgctxt "(Admin)"
137
+ msgid "Delete or reassign content?"
138
+ msgstr "Slet eller omfordele indhold?"
139
+
140
+ #: src/Admin/AdminTabGeneral.php:125
141
+ msgctxt "(Admin)"
142
+ msgid "Reassign content to"
143
+ msgstr "Omfordele indhold til"
144
+
145
+ #: src/Admin/AdminTabGeneral.php:145
146
+ msgctxt "(Admin)"
147
+ msgid "Styling"
148
+ msgstr "Styling"
149
+
150
+ #: src/Admin/AdminTabGeneral.php:150
151
+ msgctxt "(Admin)"
152
+ msgid "Enable basic styling on Privacy Tools page"
153
+ msgstr ""
154
+ "Aktivér grundlæggende styling på siden Beskyttelse af personlige oplysninger"
155
+
156
+ #: src/Admin/AdminTabGeneral.php:162
157
+ msgctxt "(Admin)"
158
+ msgid "Compatibility"
159
+ msgstr "Kompatibilitet"
160
+
161
+ #: src/Admin/AdminTabGeneral.php:167
162
+ msgctxt "(Admin)"
163
+ msgid "Enable automatic theme compatibility"
164
+ msgstr "Aktivér automatisk tema kompatibilitet"
165
+
166
+ #: src/Admin/AdminTabGeneral.php:184 src/Admin/AdminTabGeneral.php:200
167
+ #: src/Admin/AdminTabGeneral.php:213 src/Admin/AdminTabGeneral.php:252
168
+ #: views/installer/steps/configuration-settings.php:62
169
+ msgctxt "(Admin)"
170
+ msgid "&mdash; Select &mdash;"
171
+ msgstr "&mdash; Vælg &mdash;"
172
+
173
+ #: src/Admin/WordpressAdmin.php:65
174
+ msgctxt "(Admin)"
175
+ msgid "Privacy & GDPR Settings"
176
+ msgstr "Privacy & GDPR Settings"
177
+
178
+ #: src/Admin/WordpressAdmin.php:66
179
+ msgctxt "(Admin)"
180
+ msgid "Privacy"
181
+ msgstr "Privatliv"
182
+
183
+ #: src/Components/Consent/AdminTabConsent.php:30
184
+ #: src/Components/Consent/AdminTabConsent.php:49
185
+ msgctxt "(Admin)"
186
+ msgid "Consent"
187
+ msgstr "Samtykke"
188
+
189
+ #: src/Components/Consent/AdminTabConsent.php:157
190
+ msgctxt "(Admin)"
191
+ msgid "Consent slug is a required field!"
192
+ msgstr "Samtykke slug er et obligatorisk felt!"
193
+
194
+ #: src/Components/Consent/AdminTabConsent.php:162
195
+ msgctxt "(Admin)"
196
+ msgid ""
197
+ "You may only use alphanumeric characters, dash and underscore in the consent "
198
+ "slug field."
199
+ msgstr ""
200
+ "Du må kun bruge alfanumeriske tegn, bindestreg og understregning i "
201
+ "samtykkefliken."
202
+
203
+ #: src/Components/Consent/AdminTabConsent.php:167
204
+ msgctxt "(Admin)"
205
+ msgid "Consent title is a required field!"
206
+ msgstr "Samtykke titel er et påkrævet felt!"
207
+
208
+ #: src/Components/Consent/ConsentManager.php:46
209
+ #: views/modules/contact-form-7/content-privacy.php:2
210
+ #: views/modules/wordpress-comments/terms-checkbox.php:14
211
+ #: views/modules/wordpress-user/registration-terms-checkbox.php:15
212
+ #, php-format
213
+ msgid "I accept the %sPrivacy Policy%s"
214
+ msgstr "Jeg accepterer %sPrivacy Policy%s"
215
+
216
+ #: src/Components/Consent/ConsentManager.php:50
217
+ #: src/Components/Consent/ConsentManager.php:69
218
+ msgctxt "(Admin)"
219
+ msgid ""
220
+ "This consent is not visible by default. If someone wishes to withdraw it, "
221
+ "they should simply request to delete all their data."
222
+ msgstr ""
223
+ "Dette samtykke er som standard ikke synligt. Hvis nogen ønsker at trække den "
224
+ "tilbage, skal de blot anmode om at slette alle deres data."
225
+
226
+ #: src/Components/Consent/ConsentManager.php:65
227
+ #, php-format
228
+ msgid "I accept the %sTerms & Conditions%s"
229
+ msgstr "Jeg accepterer %sVilkår og Betingelser%s"
230
+
231
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:19
232
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:61
233
+ #: views/admin/privacy-policy/generated.php:1 views/installer/header.php:41
234
+ msgctxt "(Admin)"
235
+ msgid "Privacy Policy"
236
+ msgstr "Fortrolighedspolitik"
237
+
238
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:70
239
+ msgctxt "(Admin)"
240
+ msgid "Company information"
241
+ msgstr "Virksomhedsoplysninger"
242
+
243
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:75
244
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:209
245
+ msgctxt "(Admin)"
246
+ msgid "Company Name"
247
+ msgstr "firmanavn"
248
+
249
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:82
250
+ msgctxt "(Admin)"
251
+ msgid "Company Email"
252
+ msgstr "Firma Email"
253
+
254
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:89
255
+ msgctxt "(Admin)"
256
+ msgid "Company Location"
257
+ msgstr "Virksomhedens placering"
258
+
259
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:105
260
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:245
261
+ msgctxt "(Admin)"
262
+ msgid "Representative Contact Name"
263
+ msgstr "Repræsentant Kontaktnavn"
264
+
265
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:112
266
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:252
267
+ msgctxt "(Admin)"
268
+ msgid "Representative Contact Email"
269
+ msgstr "Repræsentativ Kontakt Email"
270
+
271
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:119
272
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:259
273
+ msgctxt "(Admin)"
274
+ msgid "Representative Contact Phone"
275
+ msgstr "Repræsentativ Kontakt Telefon"
276
+
277
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:135
278
+ msgctxt "(Admin)"
279
+ msgid "Data Protection Authority"
280
+ msgstr "Databeskyttelsesmyndighed"
281
+
282
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:141
283
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:286
284
+ msgctxt "(Admin)"
285
+ msgid "Data Protection Authority Website"
286
+ msgstr "Databeskyttelsesmyndighedens hjemmeside"
287
+
288
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:148
289
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:293
290
+ msgctxt "(Admin)"
291
+ msgid "Data Protection Authority Email"
292
+ msgstr "Data Protection Authority Email"
293
+
294
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:155
295
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:300
296
+ msgctxt "(Admin)"
297
+ msgid "Data Protection Authority Phone"
298
+ msgstr "Datatilsynets telefon"
299
+
300
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:165
301
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:175
302
+ msgctxt "(Admin)"
303
+ msgid "Data Protection Officer"
304
+ msgstr "Databeskyttelsesofficer"
305
+
306
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:168
307
+ msgctxt "(Admin)"
308
+ msgid "Knowledge base: Do I need to appoint a Data Protection Officer?"
309
+ msgstr "Videnbase: Skal jeg udpege en databeskyttelsesofficer?"
310
+
311
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:182
312
+ msgctxt "(Admin)"
313
+ msgid "Data Protection Officer Name"
314
+ msgstr "Navn på databeskyttelsesansvarlig"
315
+
316
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:190
317
+ msgctxt "(Admin)"
318
+ msgid "Data Protection Officer Email"
319
+ msgstr "Databeskyttelsesofficer Email"
320
+
321
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:216
322
+ msgctxt "(Admin)"
323
+ msgid "Contact Email"
324
+ msgstr "Kontakt Email"
325
+
326
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:235
327
+ msgctxt "(Admin)"
328
+ msgid "Representative Contact"
329
+ msgstr "Repræsentativ Kontakt"
330
+
331
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:238
332
+ msgctxt "(Admin)"
333
+ msgid "Knowledge base: Do I need to appoint an EU-based representative?"
334
+ msgstr "Videnbase: Skal jeg udpege en EU-baseret repræsentant?"
335
+
336
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:317
337
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:324
338
+ msgctxt "(Admin)"
339
+ msgid "DPO Name"
340
+ msgstr "DPO Navn"
341
+
342
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:420
343
+ msgctxt "(Admin)"
344
+ msgid "Save & Generate Policy"
345
+ msgstr "Gem og generer politik"
346
+
347
+ #: src/Components/PrivacyPolicy/PrivacyPolicy.php:82
348
+ #: src/Installer/Installer.php:271 src/Installer/Steps/PolicySettings.php:199
349
+ #: views/themes/storefront/footer.php:3
350
+ #: views/themes/twentyseventeen/footer.php:3
351
+ #: views/themes/twentysixteen/footer.php:4
352
+ msgid "Privacy Policy"
353
+ msgstr "Fortrolighedspolitik"
354
+
355
+ #: src/Components/PrivacyToolsPage/PrivacyToolsPageShortcode.php:19
356
+ msgid "This page is currently disabled."
357
+ msgstr "This page is currently disabled."
358
+
359
+ #: src/Components/PrivacyToolsPage/PrivacyToolsPageShortcode.php:35
360
+ #: src/Installer/Installer.php:279
361
+ #: src/Installer/Steps/ConfigurationPages.php:55
362
+ #: views/themes/storefront/footer.php:7
363
+ #: views/themes/twentyseventeen/footer.php:7
364
+ #: views/themes/twentysixteen/footer.php:9
365
+ msgid "Privacy Tools"
366
+ msgstr "Beskyttelse af personlige oplysninger"
367
+
368
+ #: src/Components/Support/AdminTabSupport.php:13
369
+ #: src/Components/Support/AdminTabSupport.php:20
370
+ msgctxt "(Admin)"
371
+ msgid "Support"
372
+ msgstr "Support"
373
+
374
+ #: src/Components/WordpressComments/WordpressComments.php:90
375
+ #, php-format
376
+ msgid "%sERROR:%s You need to accept the privacy policy to post a comment."
377
+ msgstr ""
378
+ "%sfejl:%s Du skal acceptere privatlivspolitikken for at skrive en kommentar."
379
+
380
+ #: src/Components/WordpressUser/Controllers/DashboardDataPageController.php:54
381
+ #: views/privacy-tools/notices.php:19
382
+ msgid "We have received your request and will reply within 30 days."
383
+ msgstr "Vi har modtaget din anmodning og vil svare inden for 30 dage."
384
+
385
+ #: src/Components/WordpressUser/Controllers/DashboardDataPageController.php:59
386
+ #: views/privacy-tools/notices.php:15
387
+ msgid "Consent withdrawn."
388
+ msgstr "Samtykke tilbagekaldt."
389
+
390
+ #: src/Components/WordpressUser/RegistrationForm.php:42
391
+ msgid "<strong>ERROR</strong>: You must accept the terms and conditions."
392
+ msgstr ""
393
+ "<strong> FEJL </ strong>: Du skal acceptere vilkårene og betingelserne."
394
+
395
+ #: src/Components/WordpressUser/WordpressUser.php:63
396
+ #: src/Components/WordpressUser/WordpressUser.php:64
397
+ #: views/modules/wordpress-user/dashboard/data-page/header.php:2
398
+ msgctxt "(Admin)"
399
+ msgid "Privacy Tools"
400
+ msgstr "Beskyttelse af personlige oplysninger"
401
+
402
+ #: src/DataSubject/AdminTabDataSubject.php:27
403
+ #: src/DataSubject/AdminTabDataSubject.php:41
404
+ msgctxt "(Admin)"
405
+ msgid "Data Subjects"
406
+ msgstr "Data emner"
407
+
408
+ #: src/DataSubject/DataRepository.php:143
409
+ msgid "Data exported"
410
+ msgstr "Data eksporteret"
411
+
412
+ #: src/DataSubject/DataRepository.php:158
413
+ msgid "Data export request"
414
+ msgstr "Data eksport anmodning"
415
+
416
+ #: src/DataSubject/DataRepository.php:171
417
+ msgid "Data removed"
418
+ msgstr "Data fjernet"
419
+
420
+ #: src/DataSubject/DataRepository.php:186
421
+ msgid "Data removal request"
422
+ msgstr "Data fjernelse anmodning"
423
+
424
+ #: src/DataSubject/DataSubjectIdentificator.php:65
425
+ #: src/DataSubject/DataSubjectIdentificator.php:82
426
+ msgid "Your personal data on"
427
+ msgstr "Dine personlige data på"
428
+
429
+ #: src/Helpers.php:27
430
+ msgctxt "(Admin)"
431
+ msgid "Austria"
432
+ msgstr "Austria"
433
+
434
+ #: src/Helpers.php:28
435
+ msgctxt "(Admin)"
436
+ msgid "Belgium"
437
+ msgstr "Belgien"
438
+
439
+ #: src/Helpers.php:29
440
+ msgctxt "(Admin)"
441
+ msgid "Bulgaria"
442
+ msgstr "Bulgarien"
443
+
444
+ #: src/Helpers.php:30
445
+ msgctxt "(Admin)"
446
+ msgid "Croatia"
447
+ msgstr "Kroatien"
448
+
449
+ #: src/Helpers.php:31
450
+ msgctxt "(Admin)"
451
+ msgid "Cyprus"
452
+ msgstr "Zypern"
453
+
454
+ #: src/Helpers.php:32
455
+ msgctxt "(Admin)"
456
+ msgid "Czech Republic"
457
+ msgstr "Tschechische Republik"
458
+
459
+ #: src/Helpers.php:33
460
+ msgctxt "(Admin)"
461
+ msgid "Denmark"
462
+ msgstr "Dänemark"
463
+
464
+ #: src/Helpers.php:34
465
+ msgctxt "(Admin)"
466
+ msgid "Estonia"
467
+ msgstr "Estland"
468
+
469
+ #: src/Helpers.php:35
470
+ msgctxt "(Admin)"
471
+ msgid "Finland"
472
+ msgstr "Finnland"
473
+
474
+ #: src/Helpers.php:36
475
+ msgctxt "(Admin)"
476
+ msgid "France"
477
+ msgstr "Frankreich"
478
+
479
+ #: src/Helpers.php:37
480
+ msgctxt "(Admin)"
481
+ msgid "Germany"
482
+ msgstr "Deutschland"
483
+
484
+ #: src/Helpers.php:38
485
+ msgctxt "(Admin)"
486
+ msgid "Greece"
487
+ msgstr "Griechenland"
488
+
489
+ #: src/Helpers.php:39
490
+ msgctxt "(Admin)"
491
+ msgid "Hungary"
492
+ msgstr "Ungarn"
493
+
494
+ #: src/Helpers.php:40
495
+ msgctxt "(Admin)"
496
+ msgid "Ireland"
497
+ msgstr "Irland"
498
+
499
+ #: src/Helpers.php:41
500
+ msgctxt "(Admin)"
501
+ msgid "Italy"
502
+ msgstr "Italien"
503
+
504
+ #: src/Helpers.php:42
505
+ msgctxt "(Admin)"
506
+ msgid "Latvia"
507
+ msgstr "Lettland"
508
+
509
+ #: src/Helpers.php:43
510
+ msgctxt "(Admin)"
511
+ msgid "Lithuania"
512
+ msgstr "Litauen"
513
+
514
+ #: src/Helpers.php:44
515
+ msgctxt "(Admin)"
516
+ msgid "Luxembourg"
517
+ msgstr "Luxemburg"
518
+
519
+ #: src/Helpers.php:45
520
+ msgctxt "(Admin)"
521
+ msgid "Malta"
522
+ msgstr "Malta"
523
+
524
+ #: src/Helpers.php:46
525
+ msgctxt "(Admin)"
526
+ msgid "Netherlands"
527
+ msgstr "Niederlande"
528
+
529
+ #: src/Helpers.php:47
530
+ msgctxt "(Admin)"
531
+ msgid "Poland"
532
+ msgstr "Polen"
533
+
534
+ #: src/Helpers.php:48
535
+ msgctxt "(Admin)"
536
+ msgid "Portugal"
537
+ msgstr "Portugal"
538
+
539
+ #: src/Helpers.php:49
540
+ msgctxt "(Admin)"
541
+ msgid "Romania"
542
+ msgstr "Rumänien"
543
+
544
+ #: src/Helpers.php:50
545
+ msgctxt "(Admin)"
546
+ msgid "Slovakia"
547
+ msgstr "Slowakei"
548
+
549
+ #: src/Helpers.php:51
550
+ msgctxt "(Admin)"
551
+ msgid "Slovenia"
552
+ msgstr "Slowenien"
553
+
554
+ #: src/Helpers.php:52
555
+ msgctxt "(Admin)"
556
+ msgid "Spain"
557
+ msgstr "Spanien"
558
+
559
+ #: src/Helpers.php:53
560
+ msgctxt "(Admin)"
561
+ msgid "Sweden"
562
+ msgstr "Schweden"
563
+
564
+ #: src/Helpers.php:54
565
+ msgctxt "(Admin)"
566
+ msgid "United Kingdom"
567
+ msgstr "Großbritannien"
568
+
569
+ #: src/Helpers.php:69
570
+ msgctxt "(Admin)"
571
+ msgid "Iceland"
572
+ msgstr "Island"
573
+
574
+ #: src/Helpers.php:70
575
+ msgctxt "(Admin)"
576
+ msgid "Norway"
577
+ msgstr "Norwegen"
578
+
579
+ #: src/Helpers.php:71
580
+ msgctxt "(Admin)"
581
+ msgid "Liechtenstein"
582
+ msgstr "Liechtenstein"
583
+
584
+ #: src/Helpers.php:72
585
+ msgctxt "(Admin)"
586
+ msgid "Switzerland"
587
+ msgstr "Schweiz"
588
+
589
+ #: src/Helpers.php:73
590
+ msgctxt "(Admin)"
591
+ msgid "United States"
592
+ msgstr "USA"
593
+
594
+ #: src/Helpers.php:74
595
+ msgctxt "(Admin)"
596
+ msgid "Rest of the world"
597
+ msgstr "Resten af ​​verdenen"
598
+
599
+ #: src/Helpers.php:145
600
+ msgid "An error has occurred. Please contact the site administrator."
601
+ msgstr "Der opstod en fejl. Kontakt venligst webstedsadministratoren."
602
+
603
+ #: src/Installer/Installer.php:135
604
+ msgctxt "(Admin)"
605
+ msgid "Setup Wizard"
606
+ msgstr "Opsætningsguide"
607
+
608
+ #: src/Installer/Steps/ConfigurationPages.php:23
609
+ #: src/Installer/Steps/PolicySettings.php:23
610
+ #: src/Installer/Steps/PolicySettings.php:48
611
+ msgctxt "(Admin)"
612
+ msgid "&mdash; Create a new page &mdash;"
613
+ msgstr "&mdash; Opret en ny side &mdash;"
614
+
615
+ #: src/Installer/Steps/PolicySettings.php:38
616
+ msgctxt "(Admin)"
617
+ msgid ""
618
+ "We have automatically selected your WooCommerce Terms & Conditions page."
619
+ msgstr "Vi har automatisk valgt din WooCommerce Betingelser side."
620
+
621
+ #: src/Modules/ContactForm7/ContactForm7.php:35
622
+ msgctxt "(Admin)"
623
+ msgid "gdpr terms txt"
624
+ msgstr "gdpr termer txt"
625
+
626
+ #: src/Router.php:80 src/Router.php:92 src/Router.php:125 src/Router.php:141
627
+ #, php-format
628
+ msgid "Nonce error for action \"%s\". Please go back and try again!"
629
+ msgstr "Nonce fejl til handling \"%s \". Venligst gå tilbage og prøv igen!"
630
+
631
+ #: src/Router.php:149
632
+ msgctxt "(Admin)"
633
+ msgid "You do not have the required permissions to perform this action!"
634
+ msgstr "Du har ikke de nødvendige tilladelser til at udføre denne handling!"
635
+
636
+ #: views/admin/consent.php:3
637
+ msgctxt "(Admin)"
638
+ msgid "Default consent types"
639
+ msgstr "Standard samtykke typer"
640
+
641
+ #: views/admin/consent.php:4
642
+ msgctxt "(Admin)"
643
+ msgid ""
644
+ "These are the consent types that have been automatically registered by the "
645
+ "framework or a plugin."
646
+ msgstr ""
647
+ "Dette er de samtykke typer, der er registreret automatisk af rammen eller et "
648
+ "plugin."
649
+
650
+ #: views/admin/consent.php:7 views/admin/consent.php:52
651
+ msgctxt "(Admin)"
652
+ msgid "Slug"
653
+ msgstr "Slug"
654
+
655
+ #: views/admin/consent.php:8 views/admin/consent.php:38
656
+ #: views/admin/consent.php:60
657
+ msgctxt "(Admin)"
658
+ msgid "Title"
659
+ msgstr "Titel"
660
+
661
+ #: views/admin/consent.php:9 views/admin/consent.php:41
662
+ #: views/admin/consent.php:63
663
+ msgctxt "(Admin)"
664
+ msgid "Description"
665
+ msgstr "Beskrivelse"
666
+
667
+ #: views/admin/consent.php:10
668
+ msgctxt "(Admin)"
669
+ msgid "Visibility"
670
+ msgstr "Sigtbarhed"
671
+
672
+ #: views/admin/consent.php:18
673
+ msgctxt "(Admin)"
674
+ msgid "Visible"
675
+ msgstr "Synlig"
676
+
677
+ #: views/admin/consent.php:20
678
+ msgctxt "(Admin)"
679
+ msgid "Hidden"
680
+ msgstr "Skjult"
681
+
682
+ #: views/admin/consent.php:29
683
+ msgctxt "(Admin)"
684
+ msgid "Custom consent types"
685
+ msgstr "Brugerdefinerede samtykke typer"
686
+
687
+ #: views/admin/consent.php:30
688
+ msgctxt "(Admin)"
689
+ msgid ""
690
+ "Here you can add custom consent types to track. They will not be used "
691
+ "anywhere by default - you will need to build an integration for each of them."
692
+ msgstr ""
693
+ "Her kan du tilføje tilpassede samtykke typer til at spore. De vil ikke blive "
694
+ "brugt som standard som standard - du skal bygge en integration for hver af "
695
+ "dem."
696
+
697
+ #: views/admin/consent.php:35
698
+ msgctxt "(Admin)"
699
+ msgid "Machine-readable slug"
700
+ msgstr "Maskinlæsbar slug"
701
+
702
+ #: views/admin/consent.php:44 views/admin/consent.php:68
703
+ msgctxt "(Admin)"
704
+ msgid "Visible?"
705
+ msgstr "Synlig?"
706
+
707
+ #: views/admin/consent.php:72
708
+ msgctxt "(Admin)"
709
+ msgid "Remove"
710
+ msgstr "Fjerne"
711
+
712
+ #: views/admin/consent.php:93
713
+ msgctxt "(Admin)"
714
+ msgid "Additional info"
715
+ msgstr "Yderligere information"
716
+
717
+ #: views/admin/consent.php:95
718
+ msgctxt "(Admin)"
719
+ msgid ""
720
+ "This text will be displayed to your data subjects on the Privacy Tools page."
721
+ msgstr ""
722
+ "Denne tekst bliver vist til dine registrerede på siden Beskyttelse af "
723
+ "personlige oplysninger."
724
+
725
+ #: views/admin/data-subjects/search-form.php:2
726
+ msgctxt "(Admin)"
727
+ msgid ""
728
+ "On this page, you can find which data subjects personal data you are storing "
729
+ "and download, export or delete it."
730
+ msgstr ""
731
+ "På denne side kan du finde ud af hvilke personoplysninger du gemmer og "
732
+ "downloader, eksporterer eller sletter."
733
+
734
+ #: views/admin/data-subjects/search-form.php:10
735
+ msgctxt "(Admin)"
736
+ msgid "Find data subject by email"
737
+ msgstr "Find registrerede via e-mail"
738
+
739
+ #: views/admin/data-subjects/search-form.php:11
740
+ msgctxt "(Admin)"
741
+ msgid "Email address"
742
+ msgstr "Email address"
743
+
744
+ #: views/admin/data-subjects/search-form.php:16
745
+ msgctxt "(Admin)"
746
+ msgid "Search"
747
+ msgstr "Søg"
748
+
749
+ #: views/admin/data-subjects/search-results.php:7
750
+ msgctxt "(Admin)"
751
+ msgid "Username"
752
+ msgstr "Brugernavn"
753
+
754
+ #: views/admin/data-subjects/search-results.php:12
755
+ msgctxt "(Admin)"
756
+ msgid "is not a registered user."
757
+ msgstr "er ikke en registreret bruger."
758
+
759
+ #: views/admin/data-subjects/search-results.php:16
760
+ msgctxt "(Admin)"
761
+ msgid "Download data (html)"
762
+ msgstr "Download data (html)"
763
+
764
+ #: views/admin/data-subjects/search-results.php:17
765
+ msgctxt "(Admin)"
766
+ msgid "Export data (json)"
767
+ msgstr "Eksporter data (json)"
768
+
769
+ #: views/admin/data-subjects/search-results.php:21
770
+ msgctxt "(Admin)"
771
+ msgid ""
772
+ "This user has admin capabilities. Deleting data via this interface is "
773
+ "disabled."
774
+ msgstr ""
775
+ "Denne bruger har administratorfunktioner. Sletning af data via denne "
776
+ "grænseflade er deaktiveret."
777
+
778
+ #: views/admin/data-subjects/search-results.php:24
779
+ msgctxt "(Admin)"
780
+ msgid "Anonymize data"
781
+ msgstr "Anonymiser data"
782
+
783
+ #: views/admin/data-subjects/search-results.php:25
784
+ msgctxt "(Admin)"
785
+ msgid "Delete data"
786
+ msgstr "Slet data"
787
+
788
+ #: views/admin/data-subjects/search-results.php:29
789
+ msgctxt "(Admin)"
790
+ msgid "No data found!"
791
+ msgstr "Ingen data fundet!"
792
+
793
+ #: views/admin/general/delete-action-email.php:5
794
+ #: views/admin/general/export-action-email.php:5
795
+ #: views/installer/steps/configuration-settings.php:29
796
+ #: views/installer/steps/configuration-settings.php:79
797
+ msgid "Email address"
798
+ msgstr "Email adresse"
799
+
800
+ #: views/admin/general/delete-action-reassign.php:3
801
+ #: views/installer/steps/configuration-settings.php:50
802
+ msgctxt "(Admin)"
803
+ msgid "Delete content"
804
+ msgstr "Slet indhold"
805
+
806
+ #: views/admin/general/delete-action-reassign.php:6
807
+ #: views/installer/steps/configuration-settings.php:53
808
+ msgctxt "(Admin)"
809
+ msgid "Reassign content to a user"
810
+ msgstr "Omfordele indhold til en bruger"
811
+
812
+ #: views/admin/general/delete-action-reassign.php:10
813
+ msgctxt "(Admin)"
814
+ msgid ""
815
+ "If the user has submitted any content on your site, should it be deleted or "
816
+ "reassigned to another user?"
817
+ msgstr ""
818
+ "Hvis brugeren har indsendt indhold på dit websted, skal den slettes eller "
819
+ "tildeles til en anden bruger?"
820
+
821
+ #: views/admin/general/description-data-page.php:2
822
+ msgctxt "(Admin)"
823
+ msgid ""
824
+ "Select the page where users can go to control their data. This page must "
825
+ "contain the [gdpr_privacy_tools] shortcode."
826
+ msgstr ""
827
+ "Vælg den side, hvor brugerne kan gå for at kontrollere deres data. Denne "
828
+ "side skal indeholde [gdpr_privacy_tools] shortcode."
829
+
830
+ #: views/admin/general/enable.php:9
831
+ msgctxt "(Admin)"
832
+ msgid "Enable the view, export and forget functionality for users and visitors"
833
+ msgstr ""
834
+ "Aktivér visningen, eksporter og glem funktionaliteten for brugere og "
835
+ "besøgende"
836
+
837
+ #: views/admin/general/enable.php:12
838
+ msgctxt "(Admin)"
839
+ msgid ""
840
+ "Enable the Privacy Tools page on front-end and dashboard. This allows "
841
+ "visitors to request viewing and deleting their personal data and withdraw "
842
+ "consents."
843
+ msgstr ""
844
+ "Aktivér siden for beskyttelse af personlige oplysninger på front-end og "
845
+ "dashboard. Dette gør det muligt for besøgende at anmode om at se og slette "
846
+ "deres personlige data og trække samtykker tilbage."
847
+
848
+ #: views/admin/general/theme-compatibility.php:9
849
+ #: views/installer/steps/integrations.php:21
850
+ msgctxt "(Admin)"
851
+ msgid ""
852
+ "Automatically add Privacy Policy and Privacy Tools links to your site footer."
853
+ msgstr ""
854
+ "Tilføj automatisk Privacy Policy og Privacy Tools links til dit websted "
855
+ "footer."
856
+
857
+ #: views/admin/notices/header.php:4 views/admin/settings-page.php:3
858
+ #: views/installer/header.php:23
859
+ msgctxt "(Admin)"
860
+ msgid "The GDPR Framework"
861
+ msgstr "GDPR-rammen"
862
+
863
+ #: views/admin/notices/helper-autoinstall.php:2
864
+ msgctxt "(Admin)"
865
+ msgid ""
866
+ "A Privacy Policy page has been created, but it is empty. You can generate a "
867
+ "policy template on this page."
868
+ msgstr ""
869
+ "En side om beskyttelse af personlige oplysninger er blevet oprettet, men den "
870
+ "er tom. Du kan oprette en policy skabelon på denne side."
871
+
872
+ #: views/admin/notices/helper-policy.php:2
873
+ msgctxt "(Admin)"
874
+ msgid ""
875
+ "Heads up - your Privacy Policy still requires some attention. Find the "
876
+ "places marked with [TODO] and replace them with real content!"
877
+ msgstr ""
878
+ "Heads up - din privatlivspolitik kræver stadig en vis opmærksomhed. Find de "
879
+ "steder, der er markeret med [TODO], og erstat dem med ægte indhold!"
880
+
881
+ #: views/admin/notices/helper-tools.php:2
882
+ msgctxt "(Admin)"
883
+ msgid ""
884
+ "The contents of this page should contain the [gdpr_privacy_tools] shortcode."
885
+ msgstr "Indholdet på denne side skal indeholde [gdpr_privacy_tools] shortcode."
886
+
887
+ #: views/admin/privacy-policy/description-policy-page.php:2
888
+ msgctxt "(Admin)"
889
+ msgid "Select the page which will contain your Privacy Policy"
890
+ msgstr "Vælg den side, der indeholder din privatlivspolitik"
891
+
892
+ #: views/admin/privacy-policy/generated.php:3
893
+ msgctxt "(Admin)"
894
+ msgid "Your Privacy Policy has been generated."
895
+ msgstr "Din privatlivspolitik er blevet genereret."
896
+
897
+ #: views/admin/privacy-policy/generated.php:20
898
+ msgctxt "(Admin)"
899
+ msgid "&laquo; Back"
900
+ msgstr "&laquo; Tilbage"
901
+
902
+ #: views/admin/privacy-policy/header.php:2
903
+ msgctxt "(Admin)"
904
+ msgid ""
905
+ "This page allows you to generate a Privacy Policy based on the information "
906
+ "you entered below."
907
+ msgstr ""
908
+ "Denne side giver dig mulighed for at generere en privatlivspolitik baseret "
909
+ "på de oplysninger, du indtastede herunder."
910
+
911
+ #: views/admin/settings-page.php:31
912
+ #, php-format
913
+ msgctxt "(Admin)"
914
+ msgid "The GDPR Framework. Built with &#9829; by %sCodelight%s."
915
+ msgstr "GDPR-rammen. Bygget med &#9829; ved %sCodelight%s."
916
+
917
+ #: views/admin/support/contents.php:5 views/installer/steps/finish.php:10
918
+ msgctxt "(Admin)"
919
+ msgid "Need more info?"
920
+ msgstr "Har du brug for mere info?"
921
+
922
+ #: views/admin/support/contents.php:11 views/installer/steps/finish.php:16
923
+ msgctxt "(Admin)"
924
+ msgid "Site Owner's guide to GDPR"
925
+ msgstr "Site Owner's Guide til GDPR"
926
+
927
+ #: views/admin/support/contents.php:14 views/installer/steps/finish.php:19
928
+ msgctxt "(Admin)"
929
+ msgid "Read the full guide on GDPR compliance."
930
+ msgstr "Læs den komplette vejledning om overholdelse af GDPR."
931
+
932
+ #: views/admin/support/contents.php:20 views/installer/steps/finish.php:25
933
+ msgctxt "(Admin)"
934
+ msgid "Knowledge base"
935
+ msgstr "Videnbase"
936
+
937
+ #: views/admin/support/contents.php:23 views/installer/steps/finish.php:28
938
+ msgctxt "(Admin)"
939
+ msgid "Check out the knowledge base for common questions and answers."
940
+ msgstr "Tjek kendskabet til almindelige spørgsmål og svar."
941
+
942
+ #: views/admin/support/contents.php:29 views/installer/steps/finish.php:34
943
+ msgctxt "(Admin)"
944
+ msgid "Developer's guide to GDPR"
945
+ msgstr "Udviklerens vejledning til GDPR"
946
+
947
+ #: views/admin/support/contents.php:32 views/installer/steps/finish.php:37
948
+ msgctxt "(Admin)"
949
+ msgid "We have a thorough guide to help making custom sites compliant."
950
+ msgstr ""
951
+ "Vi har en grundig vejledning, der hjælper med at gøre brugerdefinerede "
952
+ "websteder kompatible."
953
+
954
+ #: views/admin/support/contents.php:40 views/installer/steps/finish.php:45
955
+ msgctxt "(Admin)"
956
+ msgid "Need help?"
957
+ msgstr "Brug for hjælp?"
958
+
959
+ #: views/admin/support/contents.php:46 views/installer/steps/finish.php:51
960
+ msgctxt "(Admin)"
961
+ msgid "Submit a support request"
962
+ msgstr "Indsend en supportanmodning"
963
+
964
+ #: views/admin/support/contents.php:49 views/installer/steps/finish.php:54
965
+ msgctxt "(Admin)"
966
+ msgid ""
967
+ "Found a bug or problem with the plugin? Post in the wordpress.org support "
968
+ "forum."
969
+ msgstr ""
970
+ "Har du fundet en fejl eller et problem med plugin? Indsend i wordpress.org "
971
+ "support forum."
972
+
973
+ #: views/admin/support/contents.php:55 views/installer/steps/finish.php:60
974
+ msgctxt "(Admin)"
975
+ msgid "Request a consultation"
976
+ msgstr "Anmod om høring"
977
+
978
+ #: views/admin/support/contents.php:58 views/installer/steps/finish.php:63
979
+ msgctxt "(Admin)"
980
+ msgid ""
981
+ "Need development or legal assistance in making your site compliant? We can "
982
+ "help!"
983
+ msgstr ""
984
+ "Har du brug for udvikling eller juridisk bistand til at gøre dit websted "
985
+ "kompatibelt? Vi kan hjælpe!"
986
+
987
+ #: views/admin/wizard-buttons.php:2
988
+ msgctxt "(Admin)"
989
+ msgid "Restart setup wizard"
990
+ msgstr "Genstart installationsguiden"
991
+
992
+ #: views/email/action-export.php:8 views/email/action-forget.php:12
993
+ msgctxt "(Admin)"
994
+ msgid ""
995
+ "This email is just for your information. You don't need to take any action"
996
+ msgstr "Denne email er kun til din information. Du behøver ikke at gøre noget"
997
+
998
+ #: views/email/action-forget.php:8
999
+ msgctxt "(Admin)"
1000
+ msgid "The data subject had a user account on your website."
1001
+ msgstr "Den registrerede havde en brugerkonto på din hjemmeside."
1002
+
1003
+ #: views/email/identify-data-subject.php:2
1004
+ msgid "Someone has requested access to your data on"
1005
+ msgstr "Nogen har bedt om adgang til dine data på"
1006
+
1007
+ #: views/email/identify-data-subject.php:3
1008
+ msgid "If this was a mistake, just ignore this email and nothing will happen."
1009
+ msgstr ""
1010
+ "Hvis dette var en fejl, ignorerer du bare denne email, og der sker ikke "
1011
+ "noget."
1012
+
1013
+ #: views/email/identify-data-subject.php:4
1014
+ msgid "To manage your data, visit the following address:"
1015
+ msgstr "For at administrere dine data skal du besøge følgende adresse:"
1016
+
1017
+ #: views/email/identify-data-subject.php:10
1018
+ msgid "This link is valid for 15 minutes."
1019
+ msgstr "Dette link er gyldigt i 15 minutter."
1020
+
1021
+ #: views/email/no-data.php:2
1022
+ msgid "Someone has requested information about your personal data on"
1023
+ msgstr "Nogen har bedt om oplysninger om dine personlige data på"
1024
+
1025
+ #: views/email/no-data.php:3
1026
+ msgid "None of your personal data is stored on"
1027
+ msgstr "Ingen af ​​dine personlige data gemmes på"
1028
+
1029
+ #: views/email/no-data.php:5
1030
+ msgid ""
1031
+ "If this was a mistake or you did not request this email, just ignore it and "
1032
+ "nothing will happen."
1033
+ msgstr ""
1034
+ "Hvis dette var en fejl eller du ikke anmodede om denne email, ignorerer du "
1035
+ "bare det, og intet vil ske."
1036
+
1037
+ #: views/email/request-export.php:13 views/email/request-forget.php:13
1038
+ msgctxt "(Admin)"
1039
+ msgid "As a reminder: according to GDPR, you have 30 days to comply."
1040
+ msgstr "Som en påmindelse: Ifølge GDPR har du 30 dage til at overholde."
1041
+
1042
+ #: views/global/delete-action.php:2
1043
+ msgctxt "(Admin)"
1044
+ msgid "Automatically anonymize data"
1045
+ msgstr "Automatisk anonymisering af data"
1046
+
1047
+ #: views/global/delete-action.php:5
1048
+ msgctxt "(Admin)"
1049
+ msgid "Automatically delete data"
1050
+ msgstr "Slet automatisk data"
1051
+
1052
+ #: views/global/delete-action.php:9
1053
+ msgctxt "(Admin)"
1054
+ msgid "Automatically anonymize data and notify me via email"
1055
+ msgstr "Automatisk anonymisering af data og meddelelse mig via e-mail"
1056
+
1057
+ #: views/global/delete-action.php:13
1058
+ msgctxt "(Admin)"
1059
+ msgid "Automatically delete data and notify me via email"
1060
+ msgstr "Slet automatisk data og meddel mig via e-mail"
1061
+
1062
+ #: views/global/delete-action.php:16 views/global/export-action.php:10
1063
+ msgctxt "(Admin)"
1064
+ msgid "Only notify me via email"
1065
+ msgstr "Kun underret mig via e-mail"
1066
+
1067
+ #: views/global/export-action.php:2
1068
+ msgctxt "(Admin)"
1069
+ msgid "Automatically download data"
1070
+ msgstr "Download data automatisk"
1071
+
1072
+ #: views/global/export-action.php:6
1073
+ msgctxt "(Admin)"
1074
+ msgid "Automatically download data and notify me via email"
1075
+ msgstr "Download automatisk data og underret mig via e-mail"
1076
+
1077
+ #: views/installer/continue-notice.php:2
1078
+ msgctxt "(Admin)"
1079
+ msgid "The The GDPR Framework setup has not been finalized yet."
1080
+ msgstr "GDPR Framework-opsætningen er endnu ikke færdiggjort."
1081
+
1082
+ #: views/installer/continue-notice.php:3
1083
+ msgctxt "(Admin)"
1084
+ msgid "You can continue the setup at any time."
1085
+ msgstr "Du kan til enhver tid fortsætte opsætningen."
1086
+
1087
+ #: views/installer/continue-notice.php:6
1088
+ msgctxt "(Admin)"
1089
+ msgid "Continue the setup wizard"
1090
+ msgstr "Fortsæt installationsguiden"
1091
+
1092
+ #: views/installer/continue-notice.php:9
1093
+ msgctxt "(Admin)"
1094
+ msgid "Hide this message"
1095
+ msgstr "Skjul denne besked"
1096
+
1097
+ #: views/installer/footer.php:7
1098
+ msgid "Back"
1099
+ msgstr "Tilbage"
1100
+
1101
+ #: views/installer/header.php:26
1102
+ msgctxt "(Admin)"
1103
+ msgid "I need help"
1104
+ msgstr "jeg har brug for hjælp"
1105
+
1106
+ #: views/installer/header.php:29
1107
+ msgctxt "(Admin)"
1108
+ msgid "Developer Docs"
1109
+ msgstr "Developer Docs"
1110
+
1111
+ #: views/installer/header.php:36
1112
+ msgctxt "(Admin)"
1113
+ msgid "Configuration"
1114
+ msgstr "Konfiguration"
1115
+
1116
+ #: views/installer/header.php:46
1117
+ msgctxt "(Admin)"
1118
+ msgid "Forms & Consent"
1119
+ msgstr "Formularer og samtykke"
1120
+
1121
+ #: views/installer/header.php:51
1122
+ msgctxt "(Admin)"
1123
+ msgid "Integrations"
1124
+ msgstr "integrationer"
1125
+
1126
+ #: views/installer/steps/configuration-settings.php:23
1127
+ #: views/installer/steps/configuration-settings.php:73
1128
+ msgctxt "(Admin)"
1129
+ msgid "Enter the email address to notify"
1130
+ msgstr "Indtast e-mail-adressen for at underrette"
1131
+
1132
+ #: views/installer/steps/disclaimer.php:21
1133
+ msgctxt "(Admin)"
1134
+ msgid "I accept"
1135
+ msgstr "jeg accepterer"
1136
+
1137
+ #: views/installer/welcome-notice.php:7
1138
+ msgctxt "(Admin)"
1139
+ msgid "Run the setup wizard"
1140
+ msgstr "Kør installationsguiden"
1141
+
1142
+ #: views/installer/welcome-notice.php:11
1143
+ msgctxt "(Admin)"
1144
+ msgid "Auto-install pages"
1145
+ msgstr "Auto-installere sider"
1146
+
1147
+ #: views/installer/welcome-notice.php:15
1148
+ msgctxt "(Admin)"
1149
+ msgid "Skip and install manually"
1150
+ msgstr "Spring og installer manuelt"
1151
+
1152
+ #: views/modules/contact-form-7/generator-privacy.php:6
1153
+ msgctxt "(Admin)"
1154
+ msgid ""
1155
+ "This tag generates the default text for Terms & Conditions and/or Privacy "
1156
+ "Policy checkbox."
1157
+ msgstr ""
1158
+ "Dette tag genererer standardteksten til vilkår og betingelser og / eller "
1159
+ "privatlivspolitik."
1160
+
1161
+ #: views/modules/contact-form-7/generator-privacy.php:15
1162
+ msgid "Insert"
1163
+ msgstr "Indsæt"
1164
+
1165
+ #: views/modules/wordpress-comments/terms-checkbox.php:6
1166
+ #: views/modules/wordpress-user/registration-terms-checkbox.php:7
1167
+ #, php-format
1168
+ msgid "I accept the %sTerms and Conditions%s and the %sPrivacy Policy%s"
1169
+ msgstr "Jeg accepterer %sVilkår og betingelser%s og %sFortrolighedspolitik%s"
1170
+
1171
+ #: views/modules/wordpress-user/dashboard/data-page/form-consent.php:3
1172
+ msgid "Manage consents"
1173
+ msgstr "Administrer samtykker"
1174
+
1175
+ #: views/modules/wordpress-user/dashboard/data-page/form-consent.php:6
1176
+ #: views/privacy-tools/form-consent.php:6
1177
+ msgid "Here you can withdraw any consents you have given."
1178
+ msgstr "Her kan du trække eventuelle samtykker tilbage."
1179
+
1180
+ #: views/modules/wordpress-user/dashboard/data-page/form-consent.php:8
1181
+ #: views/privacy-tools/form-consent.php:9
1182
+ msgid "Consent types"
1183
+ msgstr "Samtykke typer"
1184
+
1185
+ #: views/modules/wordpress-user/dashboard/data-page/form-consent.php:23
1186
+ #: views/privacy-tools/form-consent.php:24
1187
+ msgid "Withdraw"
1188
+ msgstr "Træk"
1189
+
1190
+ #: views/modules/wordpress-user/dashboard/data-page/form-delete.php:5
1191
+ #: views/modules/wordpress-user/dashboard/profile-page/form-delete.php:5
1192
+ msgctxt "(Admin)"
1193
+ msgid "Delete this user and all data"
1194
+ msgstr "Slet denne bruger og alle data"
1195
+
1196
+ #: views/modules/wordpress-user/dashboard/data-page/form-delete.php:11
1197
+ msgctxt "(Admin)"
1198
+ msgid "Delete my data"
1199
+ msgstr "Slet mine data"
1200
+
1201
+ #: views/modules/wordpress-user/dashboard/data-page/form-delete.php:15
1202
+ #: views/privacy-tools/form-delete.php:13
1203
+ msgid "Delete all data we have gathered about you."
1204
+ msgstr "Slet alle data vi har samlet om dig."
1205
+
1206
+ #: views/modules/wordpress-user/dashboard/data-page/form-delete.php:16
1207
+ #: views/privacy-tools/form-delete.php:14
1208
+ msgid "If you have a user account on our site, it will also be deleted."
1209
+ msgstr ""
1210
+ "Hvis du har en brugerkonto på vores hjemmeside, bliver den også slettet."
1211
+
1212
+ #: views/modules/wordpress-user/dashboard/data-page/form-delete.php:17
1213
+ #: views/privacy-tools/form-delete.php:15
1214
+ msgid "Be careful - this action is permanent and CANNOT be undone."
1215
+ msgstr "Pas på - denne handling er permanent og kan ikke fortrydes."
1216
+
1217
+ #: views/modules/wordpress-user/dashboard/data-page/form-delete.php:22
1218
+ #: views/modules/wordpress-user/dashboard/profile-page/form-delete.php:23
1219
+ msgctxt "(Admin)"
1220
+ msgid ""
1221
+ "You seem to have an administrator or equivalent role, so deleting/"
1222
+ "anonymizing via this page is disabled."
1223
+ msgstr ""
1224
+ "Du synes at have en administrator eller tilsvarende rolle, så sletning / "
1225
+ "anonymisering via denne side er deaktiveret."
1226
+
1227
+ #: views/modules/wordpress-user/dashboard/form-export.php:7
1228
+ #: views/privacy-tools/form-export.php:1
1229
+ msgid "Download your data"
1230
+ msgstr "Download dine data"
1231
+
1232
+ #: views/modules/wordpress-user/dashboard/form-export.php:12
1233
+ #: views/privacy-tools/form-export.php:13
1234
+ msgid "Download as table"
1235
+ msgstr "Download som tabel"
1236
+
1237
+ #: views/modules/wordpress-user/dashboard/form-export.php:15
1238
+ #: views/privacy-tools/form-export.php:22
1239
+ msgid "Export as JSON"
1240
+ msgstr "Eksporter som JSON"
1241
+
1242
+ #: views/modules/wordpress-user/dashboard/form-export.php:19
1243
+ #: views/privacy-tools/form-export.php:4
1244
+ msgid "You can download all your data formatted as a table for viewing."
1245
+ msgstr "Du kan downloade alle dine data formateret som et bord til visning."
1246
+
1247
+ #: views/modules/wordpress-user/dashboard/form-export.php:20
1248
+ #: views/privacy-tools/form-export.php:5
1249
+ msgid "Alternatively, you can export it in machine-readable JSON format."
1250
+ msgstr "Alternativt kan du eksportere det i maskinlæsbart JSON-format."
1251
+
1252
+ #: views/modules/wordpress-user/dashboard/profile-page/form-delete.php:11
1253
+ msgctxt "(Admin)"
1254
+ msgid "Delete user and all data"
1255
+ msgstr "Slet bruger og alle data"
1256
+
1257
+ #: views/modules/wordpress-user/dashboard/profile-page/form-delete.php:14
1258
+ msgctxt "(Admin)"
1259
+ msgid "Anonymize user and all data"
1260
+ msgstr "Anonym bruger og alle data"
1261
+
1262
+ #: views/modules/wordpress-user/dashboard/profile-page/header.php:2
1263
+ msgctxt "(Admin)"
1264
+ msgid "GDPR Data"
1265
+ msgstr "GDPR-data"
1266
+
1267
+ #: views/modules/wordpress-user/dashboard/profile-page/header.php:6
1268
+ msgctxt "(Admin)"
1269
+ msgid "This user has been anonymized."
1270
+ msgstr "Denne bruger er blevet anonymiseret."
1271
+
1272
+ #: views/modules/wordpress-user/dashboard/profile-page/table-consent.php:4
1273
+ msgctxt "(Admin)"
1274
+ msgid "Consents given"
1275
+ msgstr "Tilladelser givet"
1276
+
1277
+ #: views/modules/wordpress-user/dashboard/profile-page/table-consent.php:17
1278
+ msgctxt "(Admin)"
1279
+ msgid "No consents given"
1280
+ msgstr "Ingen tilladelser givet"
1281
+
1282
+ #: views/privacy-tools/form-consent.php:2
1283
+ msgid "Consent"
1284
+ msgstr "Samtykke"
1285
+
1286
+ #: views/privacy-tools/form-delete.php:1
1287
+ #: views/privacy-tools/notice-admin-role.php:1
1288
+ msgid "Delete my user and data"
1289
+ msgstr "Slet min bruger og data"
1290
+
1291
+ #: views/privacy-tools/form-delete.php:7
1292
+ msgid "Delete my data"
1293
+ msgstr "Slet mine data"
1294
+
1295
+ #: views/privacy-tools/form-identify.php:8
1296
+ msgid "Back to Privacy Tools"
1297
+ msgstr "Tilbage til Privacy Tools"
1298
+
1299
+ #: views/privacy-tools/form-identify.php:14
1300
+ msgid "Identify yourself!"
1301
+ msgstr "Identificer dig selv!"
1302
+
1303
+ #: views/privacy-tools/form-identify.php:17
1304
+ #: views/privacy-tools/form-identify.php:20
1305
+ msgid "Enter your email address"
1306
+ msgstr "Indtast din e-mailadresse"
1307
+
1308
+ #: views/privacy-tools/form-identify.php:23
1309
+ msgid "Send email"
1310
+ msgstr "Send e-mail"
1311
+
1312
+ #: views/privacy-tools/notice-admin-role.php:4
1313
+ msgctxt "(Admin)"
1314
+ msgid "Data deletion is disabled for administrative accounts."
1315
+ msgstr "Data sletning er deaktiveret for administrative konti."
1316
+
1317
+ #: views/privacy-tools/notices.php:3
1318
+ msgid ""
1319
+ "We will send you an email with the link to access your data. Please check "
1320
+ "your spam folder as well!"
1321
+ msgstr ""
1322
+ "Vi sender dig en email med linket for at få adgang til dine data. Kontroller "
1323
+ "også din spam mappe!"
1324
+
1325
+ #: views/privacy-tools/notices.php:7
1326
+ msgid "The email you entered does not appear to be a valid email."
1327
+ msgstr "Den email du indtastede ser ikke ud til at være en gyldig email."
1328
+
1329
+ #: views/privacy-tools/notices.php:11
1330
+ msgid "Sorry - the link seems to have expired. Please try again!"
1331
+ msgstr "Beklager - linket synes at være udløbet. Prøv igen!"
1332
+
1333
+ #: views/privacy-tools/notices.php:23
1334
+ msgid "Your personal data has been removed!"
1335
+ msgstr ""
1336
+ "Deine personenbezogenen Daten wurden gelöscht!Dine personlige data er blevet "
1337
+ "fjernet!"
1338
+
1339
+ #: views/privacy-tools/privacy-tools.php:5
1340
+ msgid "You are identified as"
1341
+ msgstr "Du er identificeret som"
1342
+
1343
+ #: views\admin\general\enable-tac.php:9
1344
+ msgctxt "(Admin)"
1345
+ msgid "Enable the term and condition page."
1346
+ msgstr ""
1347
+ "Aktiviere Begriffs- und Bedingungsseite.Aktivér termen og betingelsessiden."
1348
+
1349
+ #: src\Admin\AdminTabGeneral.php:51
1350
+ msgctxt "(Admin)"
1351
+ msgid "Enable Term and Conditions"
1352
+ msgstr "Aktivér vilkår og betingelser"
1353
+
1354
+ #: gdpr-framework.php:121
1355
+ msgid ""
1356
+ "This website uses cookies to ensure you get the best experience on our "
1357
+ "website."
1358
+ msgstr ""
1359
+ "Denne hjemmeside bruger cookies for at sikre, at du får den bedste oplevelse "
1360
+ "på vores hjemmeside."
1361
+
1362
+ #: gdpr-framework.php:121
1363
+ msgid "Decline"
1364
+ msgstr "Nedgang"
1365
+
1366
+ #: gdpr-framework.php:121
1367
+ msgid "Accept"
1368
+ msgstr "Acceptere"
1369
+
1370
+ #: gdpr-framework.php:133
1371
+ msgid "Learn more"
1372
+ msgstr "Lær mere"
1373
+
1374
+ #: AdminTabGeneral.php:94
1375
+ msgctxt "(Admin)"
1376
+ msgid "From Email"
1377
+ msgstr "Fra Email"
1378
+
1379
+ #: AdminTabGeneral.php:87
1380
+ msgctxt "(Admin)"
1381
+ msgid "From Name"
1382
+ msgstr "Fra Navn"
1383
+
1384
+ #: AdminTabGeneral.php:82
1385
+ msgctxt "(Admin)"
1386
+ msgid "Email Setting"
1387
+ msgstr "Emailindstilling"
1388
+
1389
+ #: AdminTabGeneral.php:104
1390
+ msgctxt "(Admin)"
1391
+ msgid "Acceptance Popup Setting"
1392
+ msgstr "Acceptance Popup Indstilling"
1393
+
1394
+ #: AdminTabGeneral.php:109
1395
+ msgctxt "(Admin)"
1396
+ msgid "Popup Position"
1397
+ msgstr "Popup Position"
1398
+
1399
+ #: AdminTabGeneral.php:116
1400
+ msgctxt "(Admin)"
1401
+ msgid "Popup theme"
1402
+ msgstr "Popup tema"
1403
+
1404
+ #: AdminTabGeneral.php:123
1405
+ msgctxt "(Admin)"
1406
+ msgid "Cookie Acceptance Background Color"
1407
+ msgstr "Cookie Acceptance Baggrundsfarve"
1408
+
1409
+ #: AdminTabGeneral.php:130
1410
+ msgctxt "(Admin)"
1411
+ msgid "Cookie Acceptance Text Color"
1412
+ msgstr "Cookie Acceptance Text Color"
1413
+
1414
+ #: AdminTabGeneral.php:137
1415
+ msgctxt "(Admin)"
1416
+ msgid "Cookie Acceptance Button Backgroung Color"
1417
+ msgstr "Cookie Acceptance Button Baggrundsfarve"
1418
+
1419
+ #: AdminTabGeneral.php:144
1420
+ msgctxt "(Admin)"
1421
+ msgid "Cookie Acceptance Button Color"
1422
+ msgstr "Cookie Acceptance Button Color"
1423
+
1424
+ #: AdminTabGeneral.php:151
1425
+ msgctxt "(Admin)"
1426
+ msgid "Cookie Acceptance Border Color"
1427
+ msgstr "Cookie Acceptance Border Color"
1428
+
1429
+ #: AdminTabGeneral.php:67
1430
+ msgctxt "(Admin)"
1431
+ msgid "Enable Cookie Acceptance Popup"
1432
+ msgstr "Aktivér cookieoptagelse popup"
1433
+
1434
+ #: AdminTabGeneral.php:73
1435
+ msgctxt "(Admin)"
1436
+ msgid "Cookie Acceptance Popup Content"
1437
+ msgstr "Cookie Acceptance Popup indhold"
1438
+
1439
+ #: description-position-action.php
1440
+ msgctxt "(Admin)"
1441
+ msgid "Select position of the Popup"
1442
+ msgstr "Vælg position af popupen"
1443
+
1444
+ #: description-theme-action.php
1445
+ msgctxt "(Admin)"
1446
+ msgid "Select theme of the Popup"
1447
+ msgstr "Vælg tema for popupen"
1448
+
1449
+ #: description-theme-action.php:69
1450
+ msgctxt "(Admin)"
1451
+ msgid "Disable Comment Checkbox"
1452
+ msgstr "Deaktiver kommentarfeltet"
1453
+
1454
+ #: description-theme-action.php:76
1455
+ msgctxt "(Admin)"
1456
+ msgid "Disable Register Form Checkbox"
1457
+ msgstr "Deaktiver Registreringsform Checkbox"
1458
+
1459
+ #: description-theme-action.php:312
1460
+ msgctxt "(Admin)"
1461
+ msgid "Disable Checkbox For Comments"
1462
+ msgstr "Deaktiver afkrydsningsfeltet for kommentarer"
1463
+
1464
+ #: AdminTabGeneral.php:319
1465
+ msgctxt "(Admin)"
1466
+ msgid "Disable Checkbox For Register Form"
1467
+ msgstr "Deaktiver afkrydsningsfeltet for registreringsformular"
1468
+
1469
+ #: views/privacy-tools/form-identify.php:15
1470
+ msgid "Please identify yourself via e-mail"
1471
+ msgstr "Identificer dig selv via e-mail"
1472
+
1473
+ #: advanced-integration\header.php:2
1474
+ msgctxt "(Admin)"
1475
+ msgid "This page allows you to advance integration with ClassiDocs™"
1476
+ msgstr ""
1477
+ "Denne side giver dig mulighed for at fremme integration med ClassiDocs™"
1478
+
1479
+ #: AdminTabAdvancedIntegration.php:97
1480
+ msgctxt "(Admin)"
1481
+ msgid "ClassiDocs Password"
1482
+ msgstr "ClassiDocs Password"
1483
+
1484
+ #: AdminTabAdvancedIntegration.php:88
1485
+ msgctxt "(Admin)"
1486
+ msgid "ClassiDocs Username"
1487
+ msgstr "ClassiDocs Brugernavn"
1488
+
1489
+ #: AdminTabAdvancedIntegration.php:79
1490
+ msgctxt "(Admin)"
1491
+ msgid "ClassiDocs URL"
1492
+ msgstr "ClassiDocs URL"
1493
+
1494
+ #: AdminTabAdvancedIntegration.php:69
1495
+ msgctxt "(Admin)"
1496
+ msgid "Enable Response with related queries?"
1497
+ msgstr "Aktivér svar med relaterede forespørgsler?"
1498
+
1499
+ #: AdminTabAdvancedIntegration.php:60
1500
+ msgctxt "(Admin)"
1501
+ msgid "Submit SAR request details?"
1502
+ msgstr "Indsend SAR-anmodning detaljer?"
1503
+
1504
+ #: AdminTabAdvancedIntegration.php:51
1505
+ msgctxt "(Admin)"
1506
+ msgid "Integrate with ClassiDocs?"
1507
+ msgstr "Integrere med ClassiDocs?"
1508
+
1509
+ #: AdminTabAdvancedIntegration.php:43
1510
+ msgctxt "(Admin)"
1511
+ msgid "Integration Settings"
1512
+ msgstr "Integrationsindstillinger"
1513
+
1514
+ #: AdminTabAdvancedIntegration.php:35
1515
+ msgctxt "(Admin)"
1516
+ msgid "Advanced Integration"
1517
+ msgstr "Avanceret integration"
1518
+
1519
+ #: checkbox-field.php:10
1520
+ msgctxt "(Admin)"
1521
+ msgid "Sign up for free here"
1522
+ msgstr "Tilmeld dig gratis her"
1523
+
1524
+ #: checkbox-field.php:10
1525
+ msgctxt "(Admin)"
1526
+ msgid "Click Here"
1527
+ msgstr "Klik her"
1528
+
1529
+ #: ClassiDocs-results.php:12
1530
+ msgid "Previous Results"
1531
+ msgstr "Tidligere resultater"
1532
+
1533
+ #: ClassiDocs-results.php:13
1534
+ msgid "Current Results"
1535
+ msgstr "Nuværende resultater"
1536
+
1537
+ #: ClassiDocs-results.php:19
1538
+ msgid "Name"
1539
+ msgstr "Navn"
1540
+
1541
+ #: ClassiDocs-results.php:22
1542
+ msgid "Path"
1543
+ msgstr "Sti"
1544
+
1545
+ #: ClassiDocs-results.php:34
1546
+ msgid "Workstation"
1547
+ msgstr "Workstation"
1548
+
1549
+ #: ClassiDocs-results.php:37
1550
+ msgid "Last Scan"
1551
+ msgstr "Sidste Scan"
1552
+
1553
+ #: ClassiDocs-results.php:62
1554
+ msgid "No ClassiDocs data found!"
1555
+ msgstr "Ingen ClassiDocs data fundet!"
1556
+
1557
+ #: enable_popup_header.php:5
1558
+ msgid "Cookies used on the website!"
1559
+ msgstr "Cookies utilizadas en el sitio web!"
1560
+
1561
+ #: enable_popup_header.php:9
1562
+ msgid "Leave blank if don't want header to get display."
1563
+ msgstr "Deje en blanco si no quiere que el encabezado se muestre."
1564
+
1565
+ #: AdminTabCookiePopup.php:39
1566
+ msgctxt "(Admin)"
1567
+ msgid "Cookie Popup Settings"
1568
+ msgstr "Cookie popup indstillinger"
1569
+
1570
+ #: AdminTabCookiePopup.php:17
1571
+ msgctxt "(Admin)"
1572
+ msgid "Cookie Popup"
1573
+ msgstr "Cookie popup"
1574
+
1575
+ #: AdminTabCookiePopup.php:49
1576
+ msgctxt "(Admin)"
1577
+ msgid "Enable One Time Cookie Acceptance Popup"
1578
+ msgstr "Aktivér One Time Cookie Acceptance Popup"
1579
+
1580
+ #: consent.php:79
1581
+ msgctxt "(Admin)"
1582
+ msgid "Show Consent types"
1583
+ msgstr "Vis samtykke typer"
1584
+
1585
+ msgctxt "(Admin)"
1586
+ msgid "Hide consent types"
1587
+ msgstr "Skjul samtykke typer"
1588
+
1589
+ msgctxt "(Admin)"
1590
+ msgid "Do you want form to be GDPR compliance."
1591
+ msgstr "Ønsker du, at formularen er GDPR-overholdelse."
1592
+
1593
+ msgctxt "(Admin)"
1594
+ msgid ""
1595
+ "You have installed flamingo, To make this GDPR compliance in individual "
1596
+ "contact form's privacy tab check the checkbox for include data to be search "
1597
+ "on Privacy tool."
1598
+ msgstr ""
1599
+ "Du har installeret flamingo. For at gøre denne GDPR-overholdelse i den "
1600
+ "enkelte kontaktformularens privatlivs-faneblad markér afkrydsningsfeltet "
1601
+ "for, at data, der skal søges i Privacy-værktøjet, er inkluderet."
1602
+
1603
+ msgctxt "(Admin)"
1604
+ msgid "Enable Policy Link On Popup"
1605
+ msgstr "Aktivér politiklink på pop op"
1606
+
1607
+ msgctxt "(Admin)"
1608
+ msgid "Enable Privacy policy on Popup"
1609
+ msgstr "Aktivér privatlivspolitik på pop op"
1610
+
1611
+ #: AdminTabCookiePopup.php
1612
+ msgctxt "(Admin)"
1613
+ msgid "Cookie Acceptance Popup header"
1614
+ msgstr "Cookie Acceptance Popup header"
1615
+
1616
+ #: views\admin\privacy-manager\header.php:2
1617
+ msgctxt "(Admin)"
1618
+ msgid "Data443™ Privacy Manager"
1619
+ msgstr "Data443™ Privacy Manager"
1620
+
1621
+ #: views\admin\privacy-manager\header.php:3
1622
+ msgctxt "(Admin)"
1623
+ msgid ""
1624
+ "ensures privacy regulation compliance, such as GDPR, CCPA, LGPD, etc, at the "
1625
+ "next level."
1626
+ msgstr ""
1627
+ "sikrer overholdelse af reglerne om beskyttelse af privatlivets fred, som f."
1628
+ "eks. GDPR, CCPA, LGPD osv. på næste niveau."
1629
+
1630
+ #: views\admin\privacy-manager\header.php:4
1631
+ msgctxt "(Admin)"
1632
+ msgid ""
1633
+ "In addition to DSAR tracking and management, Privacy Manager adds the "
1634
+ "following features to your data protection compliance resources:"
1635
+ msgstr ""
1636
+ "Ud over DSAR-tracking og -administration tilføjer Privacy Manager følgende "
1637
+ "funktioner til dine databeskyttelsesoverensstemmelsesressourcer:"
1638
+
1639
+ #: views\admin\privacy-manager\header.php:6
1640
+ msgctxt "(Admin)"
1641
+ msgid "Log and store ICO breach notifications"
1642
+ msgstr "Log og gem ICO krænker underretninger"
1643
+
1644
+ #: views\admin\privacy-manager\header.php:7
1645
+ msgctxt "(Admin)"
1646
+ msgid "Keeps full record of all requests, ticketed and timeline"
1647
+ msgstr "Holder fuld rekord af alle anmodninger, billet og tidslinje"
1648
+
1649
+ #: views\admin\privacy-manager\header.php:8
1650
+ msgctxt "(Admin)"
1651
+ msgid "Gap analysis and breach notifications"
1652
+ msgstr "Gap analyse og brud underretninger"
1653
+
1654
+ #: views\admin\privacy-manager\header.php:9
1655
+ msgctxt "(Admin)"
1656
+ msgid "In depth activity log with all GDPR, CCPA, etc actions evidenced"
1657
+ msgstr "I dybde aktivitets log med alle GDPR, CCPA, etc handlinger vist"
1658
+
1659
+ #: views\admin\privacy-manager\header.php:10
1660
+ msgctxt "(Admin)"
1661
+ msgid "Highlights areas of concern and where you need to focus"
1662
+ msgstr "Fremhæver områder af bekymring og hvor du skal fokusere"
1663
+
1664
+ #: views\admin\privacy-manager\header.php:11
1665
+ msgctxt "(Admin)"
1666
+ msgid ""
1667
+ "eLearning platform with access for all staff to ensure privacy regulation "
1668
+ "compliance and obligations"
1669
+ msgstr ""
1670
+ "eLearning platform med adgang for alle medarbejdere til at sikre "
1671
+ "overholdelse og forpligtelser til beskyttelse af privatlivets fred"
1672
+
1673
+ #: views\admin\privacy-manager\header.php:12
1674
+ msgctxt "(Admin)"
1675
+ msgid "Tracks who accesses the system, when and why"
1676
+ msgstr "Spor, der får adgang til systemet, hvornår og hvorfor"
1677
+
1678
+ #: views\admin\privacy-manager\header.php:15
1679
+ msgctxt "(Admin)"
1680
+ msgid ""
1681
+ "Our system enables your business to demonstrate its obligations in "
1682
+ "protecting your customer data, show understanding of your business "
1683
+ "activities and deliver eLearning and online tests to employees, ensuring "
1684
+ "everyone in your company understands your privacy compliance rules and best "
1685
+ "practices to operate."
1686
+ msgstr ""
1687
+ "Vores system gør det muligt for din virksomhed at demonstrere sine "
1688
+ "forpligtelser med hensyn til at beskytte dine kundedata, vise forståelse for "
1689
+ "dine forretningsaktiviteter og levere eLearning og online test til "
1690
+ "medarbejdere, så alle i din virksomhed forstår dine regler for beskyttelse "
1691
+ "af personlige oplysninger og bedste praksis til at fungere."
1692
+
1693
+ #: views\admin\privacy-manager\header.php:16
1694
+ msgctxt "(Admin)"
1695
+ msgid ""
1696
+ "No matter where you are on your data privacy journey, the ultimate goal is "
1697
+ "compliance."
1698
+ msgstr ""
1699
+ "Uanset hvor du er på din datasikkerhedsrejse, er det ultimative mål at "
1700
+ "overholde."
1701
+
1702
+ #: views\admin\privacy-manager\header.php:16
1703
+ msgctxt "(Admin)"
1704
+ msgid "enables your organization to comply with all privacy regulations."
1705
+ msgstr ""
1706
+ "gør det muligt for din organisation at overholde alle regler om beskyttelse "
1707
+ "af personlige oplysninger."
1708
+
1709
+ #: views\admin\support\contents.php:49
1710
+ msgctxt "(Admin)"
1711
+ msgid ""
1712
+ "Found a bug or have a question about the plugin? Submit a support request "
1713
+ "and we’ll get right on it!"
1714
+ msgstr ""
1715
+ "Har du fundet en fejl eller har du et spørgsmål om plugin? Send en "
1716
+ "supportanmodning, og vi får det rigtigt!"
1717
+
1718
+ #: views\admin\support\contents.php:58
1719
+ msgctxt "(Admin)"
1720
+ msgid "Need assistance in making your site compliant? We can help!"
1721
+ msgstr ""
1722
+ "Har du brug for hjælp til at gøre dit websted kompatibelt? Vi kan hjælpe!"
1723
+
1724
+ #: views\admin\general\woo-compatibility.php:9
1725
+ msgctxt "(Admin)"
1726
+ msgid "Enable WooCommerce data on GDPR tool"
1727
+ msgstr "Aktivér WooCommerce-data på GDPR-værktøjet"
1728
+
1729
+ #: src\Admin\AdminTabGeneral.php:241
1730
+ msgctxt "(Admin)"
1731
+ msgid "Enable WooCommerce Compatibility"
1732
+ msgstr "Aktivér WooCommerce-kompatibilitet"
1733
+
1734
+ #: views\modules\wordpress-user\dashboard\data-page\form-delete.php:19
1735
+ msgid "Note Regarding Order:"
1736
+ msgstr "Bemærkning vedrørende ordre:"
1737
+
1738
+ #: views\modules\wordpress-user\dashboard\data-page\form-delete.php:20
1739
+ msgid ""
1740
+ "Your order with status Processing will not get deleted until status change."
1741
+ msgstr ""
1742
+ "Din ordre med status Behandling vil ikke blive slettet, indtil statusændring."
1743
+
1744
+ #: views\modules\wordpress-user\dashboard\data-page\form-delete.php:21
1745
+ msgid "Your order with status Completed will get anonymize."
1746
+ msgstr "Din ordre med status Afsluttet vil blive anonymiseret."
1747
+
1748
+ #: views\modules\wordpress-user\dashboard\data-page\form-delete.php:22
1749
+ msgid "If you delete Completed order you can't apply for refund."
1750
+ msgstr "Hvis du sletter Afsluttet ordre, kan du ikke søge om refusion."
1751
+
1752
+ #: views\admin\general\woo-compatibility.php:12
1753
+ msgctxt "(Admin)"
1754
+ msgid "Will work for WooCommerce Version 3.4.0 or later."
1755
+ msgstr "Vil arbejde for WooCommerce Version 3.4.0 eller nyere."
1756
+
1757
+ #: views\admin\general\edd-compatibility.php:9
1758
+ msgctxt "(Admin)"
1759
+ msgid "Enable EDD data on GDPR tool."
1760
+ msgstr "Aktivér EDD-data på GDPR-værktøjet."
1761
+
1762
+ #: views\admin\general\edd-compatibility.php:12
1763
+ msgctxt "(Admin)"
1764
+ msgid "Will work for EDD Version 2.0.0 or later."
1765
+ msgstr "Vil arbejde for EDD Version 2.0.0 eller senere."
1766
+
1767
+ #: src\Admin\AdminTabGeneral.php:262
1768
+ msgctxt "(Admin)"
1769
+ msgid "Enable EDD Compatibility"
1770
+ msgstr "Aktiver EDD-kompatibilitet"
1771
+
1772
+ #: gdpr-framework.php:298
1773
+ msgid "Cookie Policy"
1774
+ msgstr "Cookie Policy"
1775
+
1776
+ #: ConsentManager.php:96
1777
+ msgctxt "(Admin)"
1778
+ msgid ""
1779
+ "This consent is visible by default on woocommerce checkout page. If someone "
1780
+ "wishes to withdraw it, they should simply request to delete all their data."
1781
+ msgstr ""
1782
+ "Dette samtykke er som standard synligt på wokommerce checkout side. Hvis "
1783
+ "nogen ønsker at trække det tilbage, skal de blot anmode om at slette alle "
1784
+ "deres data."
1785
+
1786
+ #: ConsentManager.php:96
1787
+ msgctxt "(Admin)"
1788
+ msgid "Woocommerce Policy Consent"
1789
+ msgstr "Woocommerce Policy Consent"
1790
+
1791
+ #: WoocommerceGdpr.php:150
1792
+ msgid "Please acknowledge the Privacy Policy"
1793
+ msgstr "Vær venlig at anerkende privatlivspolitikken"
1794
+
1795
+ #: woo-compatibility.php:9
1796
+ msgctxt "(Admin)"
1797
+ msgid "Enable WooCommerce data on GDPR tool."
1798
+ msgstr "Aktivér WooCommerce-data på GDPR-værktøjet."
1799
+
1800
+ #: views\admin\general\enable-popup.php:12
1801
+ msgctxt "(Admin)"
1802
+ msgid ""
1803
+ "<b>Note:</b> Need to add custom content <b>gdpr_cookie_consent</b> its "
1804
+ "accepted on popup accept button."
1805
+ msgstr ""
1806
+ "<b> Bemærk: </ b> Har brug for at tilføje brugerdefineret indhold <b> "
1807
+ "gdpr_cookie_consent </ b> det accepteres på popup accept knappen."
1808
+
1809
+ #: AdminTabCookiePopup.php:105
1810
+ msgctxt "(Admin)"
1811
+ msgid "Popup Dismiss Text"
1812
+ msgstr "Popup Afvis Tekst"
1813
+
1814
+ #: AdminTabCookiePopup.php:98
1815
+ msgctxt "(Admin)"
1816
+ msgid "Popup Allow Text"
1817
+ msgstr "Popup Tillad tekst"
1818
+
1819
+ #: AdminTabGeneral.php:241
1820
+ msgctxt "(Admin)"
1821
+ msgid "Woocommerce Integration"
1822
+ msgstr "WoCommerce Integration"
1823
+
1824
+ #: AdminTabGeneral.php:259
1825
+ msgctxt "(Admin)"
1826
+ msgid "Easy Digital Download Integration"
1827
+ msgstr "Easy Digital Download Integration"
1828
+
1829
+ #: has-dpo.php:11
1830
+ msgctxt "(Admin)"
1831
+ msgid "I have appointed a Data Protection Officer (DPO)"
1832
+ msgstr "Jeg har udpeget en databeskyttelsesansvarlig (DPO)"
1833
+
1834
+ #: views/admin/general/stylesheet.php:9
1835
+ msgctxt "(Admin)"
1836
+ msgid "Enable basic styling for Privacy Tools page."
1837
+ msgstr "Aktivér grundlæggende styling for siden Privacy Policy."
1838
+
1839
+ #: AdminTabPrivacyPolicy.php:204
1840
+ msgctxt "(Admin)"
1841
+ msgid "Delete Text"
1842
+ msgstr "Slet tekst"
1843
+
1844
+ #: consent.php:80
1845
+ msgctxt "(Admin)"
1846
+ msgid "Add consent type"
1847
+ msgstr "Tilføj tilladelse type"
1848
+
1849
+ #: AdminTabGeneral.php:127
1850
+ msgctxt "(Admin)"
1851
+ msgid "Privacy Policy Custom URL"
1852
+ msgstr "Privacy Policy Brugerdefineret URL"
1853
+
1854
+ #: custom-policy-url.php:6
1855
+ msgctxt "(Admin)"
1856
+ msgid "Leave blank if privacy policy page already selected"
1857
+ msgstr ""
1858
+ "Forlad blank hvis siden om beskyttelse af personlige oplysninger allerede er "
1859
+ "valgt"
1860
+
1861
+ #: views/admin/general/description-delete-action.php:2
1862
+ msgctxt "(Admin)"
1863
+ msgid "What should happen if a data subject requests deleting their data."
1864
+ msgstr "Hvad skal der ske, hvis et registrerede ønsker at slette deres data."
1865
+
1866
+ #: views/admin/general/description-export-action.php:2
1867
+ msgctxt "(Admin)"
1868
+ msgid "Optional. Select the page which contains your Terms & Conditions"
1869
+ msgstr "Valgfri. Vælg den side, der indeholder dine Vilkår og betingelser"
1870
+
1871
+ #: views/admin/general/description-terms-page.php:2
1872
+ msgctxt "(Admin)"
1873
+ msgid ""
1874
+ "What should happen if a data subject requests viewing or exporting their "
1875
+ "data."
1876
+ msgstr ""
1877
+ "Hvad skal der ske, hvis et registreret ønsker at se eller eksportere deres "
1878
+ "data."
1879
+
1880
+ #: woo-disable_checkbox.php:9
1881
+ msgctxt "(Admin)"
1882
+ msgid "Disable WooCommerce Privacy Checkbox"
1883
+ msgstr "Deaktiver WooCommerce Privacy Checkbox"
1884
+
1885
+ #: AdminTabCookiePopup.php:133
1886
+ msgctxt "(Admin)"
1887
+ msgid "Popup Learn More Text"
1888
+ msgstr "Popup Lær mere tekst"
1889
+
1890
+ #: AdminTabGeneral.php:262
1891
+ msgctxt "(Admin)"
1892
+ msgid "Disable WooCommerce Register Privacy Checkbox"
1893
+ msgstr ""
1894
+ "Deaktiver afkrydsningsfeltet WooCommerce Register for beskyttelse af "
1895
+ "personlige oplysninger"
1896
+
1897
+ #: AdminTabCookiePopup.php:121
1898
+ msgctxt "(Admin)"
1899
+ msgid "Cookie Acceptance link target"
1900
+ msgstr "Cookie-acceptlink-link"
1901
+
1902
+ #: popup_link_target.php:3
1903
+ msgctxt "(Admin)"
1904
+ msgid "Next Tab"
1905
+ msgstr "Næste fane"
1906
+
1907
+ #: popup_link_target.php:5
1908
+ msgctxt "(Admin)"
1909
+ msgid "Self"
1910
+ msgstr "self"
languages/gdpr-framework-de_DE.po CHANGED
@@ -1,1944 +1,1944 @@
1
- # SOME DESCRIPTIVE TITLE.
2
- # Copyright (C) YEAR Codelight
3
- # This file is distributed under the same license as the The GDPR Framework package.
4
- # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5
- #
6
- msgid ""
7
- msgstr ""
8
- "Project-Id-Version: The GDPR Framework 1.0\n"
9
- "Report-Msgid-Bugs-To: gdpr@codelight.eu\n"
10
- "POT-Creation-Date: 2018-04-16 10:50+0000\n"
11
- "PO-Revision-Date: 2019-09-19 12:38+0530\n"
12
- "Last-Translator: Stefan Butz <webmaster@die-blaue-eisdiele.de>\n"
13
- "MIME-Version: 1.0\n"
14
- "Content-Type: text/plain; charset=UTF-8\n"
15
- "Content-Transfer-Encoding: 8bit\n"
16
- "X-Generator: Poedit 1.5.7\n"
17
- "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
- "Language: de-DE\n"
19
- "Language-Team: Deutsch\n"
20
-
21
- #: gdpr-framework.php:26
22
- msgctxt "(Admin)"
23
- msgid "WordPress GDPR &rsaquo; Error"
24
- msgstr "WordPress GDPR &rsaquo; Fehler"
25
-
26
- #: gdpr-framework.php:35
27
- msgctxt "(Admin)"
28
- msgid "Invalid PHP version"
29
- msgstr "Ungültige PHP-Version"
30
-
31
- #: gdpr-framework.php:35
32
- msgctxt "(Admin)"
33
- msgid "You must be using PHP 5.6.33 or greater."
34
- msgstr "Du musst PHP 5.6.33 oder höher verwenden."
35
-
36
- #: gdpr-framework.php:42
37
- msgctxt "(Admin)"
38
- msgid "Invalid WordPress version"
39
- msgstr "Ungültige WordPress-Version"
40
-
41
- #: gdpr-framework.php:42
42
- msgctxt "(Admin)"
43
- msgid "You must be using WordPress 4.3.0 or greater."
44
- msgstr "Du musst WordPress 4.3.0 oder höher verwenden."
45
-
46
- #: gdpr-framework.php:52
47
- msgctxt "(Admin)"
48
- msgid ""
49
- "You appear to be running a development version of GDPR. You must run "
50
- "<code>composer install</code> from the plugin directory."
51
- msgstr ""
52
- "Es scheint, dass Du eine Entwicklungsversion des GDPR Framework Plugins "
53
- "verwendest. Du musst im Pluginverzeichnis <code>composer install</code> "
54
- "laufen lassen."
55
-
56
- #: gdpr-framework.php:53
57
- msgctxt "(Admin)"
58
- msgid "Autoloader not found."
59
- msgstr "Autoloader nicht gefunden."
60
-
61
- #: gdpr-framework.php:115
62
- msgctxt "(Admin)"
63
- msgid "Anonymous"
64
- msgstr "Anonym"
65
-
66
- #: src/Admin/AdminTab.php:115
67
- msgctxt "(Admin)"
68
- msgid "Save"
69
- msgstr "Speichern"
70
-
71
- #: src/Admin/AdminTab.php:151
72
- msgctxt "(Admin)"
73
- msgid "Policy generated!"
74
- msgstr "Richtlinie erstellt!"
75
-
76
- #: src/Admin/AdminTabGeneral.php:11
77
- msgctxt "(Admin)"
78
- msgid "General"
79
- msgstr "Allgemein"
80
-
81
- #: src/Admin/AdminTabGeneral.php:38
82
- msgctxt "(Admin)"
83
- msgid "General Settings"
84
- msgstr "Allgemeine Einstellungen"
85
-
86
- #: src/Admin/AdminTabGeneral.php:43
87
- msgctxt "(Admin)"
88
- msgid "Enable Privacy Tools"
89
- msgstr "Datenschutz-Tools aktivieren"
90
-
91
- #: src/Admin/AdminTabGeneral.php:53
92
- msgctxt "(Admin)"
93
- msgid "Pages"
94
- msgstr "Seiten"
95
-
96
- #: src/Admin/AdminTabGeneral.php:58 src/Admin/WordpressAdmin.php:151
97
- msgctxt "(Admin)"
98
- msgid "Privacy Tools Page"
99
- msgstr "Seite der Datenschutz-Tools"
100
-
101
- #: src/Admin/AdminTabGeneral.php:65 src/Admin/WordpressAdmin.php:147
102
- msgctxt "(Admin)"
103
- msgid "Privacy Policy Page"
104
- msgstr "Seite der Datenschutzerklärung"
105
-
106
- #: src/Admin/AdminTabGeneral.php:72
107
- msgctxt "(Admin)"
108
- msgid "Terms & Conditions Page"
109
- msgstr "Seite der Allgemeinen Geschäftsbedingungen"
110
-
111
- #: src/Admin/AdminTabGeneral.php:82
112
- msgctxt "(Admin)"
113
- msgid "View & Export Data"
114
- msgstr "Daten ansehen & exportieren"
115
-
116
- #: src/Admin/AdminTabGeneral.php:87
117
- msgctxt "(Admin)"
118
- msgid "Export action"
119
- msgstr "Export-Aktion"
120
-
121
- #: src/Admin/AdminTabGeneral.php:94 src/Admin/AdminTabGeneral.php:133
122
- msgctxt "(Admin)"
123
- msgid "Email to notify"
124
- msgstr "E-Mail für die Benachrichtigung"
125
-
126
- #: src/Admin/AdminTabGeneral.php:105
127
- msgctxt "(Admin)"
128
- msgid "Delete & Anonymize Data"
129
- msgstr "Daten löschen & anonymisieren"
130
-
131
- #: src/Admin/AdminTabGeneral.php:110
132
- msgctxt "(Admin)"
133
- msgid "Delete action"
134
- msgstr "Lösch-Aktion"
135
-
136
- #: src/Admin/AdminTabGeneral.php:117
137
- msgctxt "(Admin)"
138
- msgid "Delete or reassign content?"
139
- msgstr "Inhalt löschen oder neu zuordnen?"
140
-
141
- #: src/Admin/AdminTabGeneral.php:125
142
- msgctxt "(Admin)"
143
- msgid "Reassign content to"
144
- msgstr "Inhalt zuordnen an"
145
-
146
- #: src/Admin/AdminTabGeneral.php:145
147
- msgctxt "(Admin)"
148
- msgid "Styling"
149
- msgstr "Gestaltung"
150
-
151
- #: src/Admin/AdminTabGeneral.php:150
152
- msgctxt "(Admin)"
153
- msgid "Enable basic styling on Privacy Tools page"
154
- msgstr "Grundlegende Gestaltung auf der Seite der Datenschutz-Tools aktivieren"
155
-
156
- #: src/Admin/AdminTabGeneral.php:162
157
- msgctxt "(Admin)"
158
- msgid "Compatibility"
159
- msgstr "Kompatibilität"
160
-
161
- #: src/Admin/AdminTabGeneral.php:167
162
- msgctxt "(Admin)"
163
- msgid "Enable automatic theme compatibility"
164
- msgstr "Aktiviere die automatische Theme-Kompatibilität"
165
-
166
- #: src/Admin/AdminTabGeneral.php:184 src/Admin/AdminTabGeneral.php:200
167
- #: src/Admin/AdminTabGeneral.php:213 src/Admin/AdminTabGeneral.php:252
168
- #: views/installer/steps/configuration-settings.php:62
169
- msgctxt "(Admin)"
170
- msgid "&mdash; Select &mdash;"
171
- msgstr "&mdash; Auswählen &mdash;"
172
-
173
- #: src/Admin/WordpressAdmin.php:65
174
- msgctxt "(Admin)"
175
- msgid "Privacy & GDPR Settings"
176
- msgstr "Datenschutz & DSGVO Einstellungen"
177
-
178
- #: src/Admin/WordpressAdmin.php:66
179
- msgctxt "(Admin)"
180
- msgid "Privacy"
181
- msgstr "Datenschutz"
182
-
183
- #: src/Components/Consent/AdminTabConsent.php:30
184
- #: src/Components/Consent/AdminTabConsent.php:49
185
- msgctxt "(Admin)"
186
- msgid "Consent"
187
- msgstr "Zustimmung"
188
-
189
- #: src/Components/Consent/AdminTabConsent.php:157
190
- msgctxt "(Admin)"
191
- msgid "Consent slug is a required field!"
192
- msgstr "Der Pfad zur Zustimming ist ein Pflichtfeld!"
193
-
194
- #: src/Components/Consent/AdminTabConsent.php:162
195
- msgctxt "(Admin)"
196
- msgid ""
197
- "You may only use alphanumeric characters, dash and underscore in the consent "
198
- "slug field."
199
- msgstr ""
200
- "Du darfst nur alphanumerische Zeichen, Bindestriche und Unterstriche im Feld "
201
- "für den Zustimmungs-Pfad verwenden."
202
-
203
- #: src/Components/Consent/AdminTabConsent.php:167
204
- msgctxt "(Admin)"
205
- msgid "Consent title is a required field!"
206
- msgstr "Titel der Zustimmungsseite wird benötigt!"
207
-
208
- #: src/Components/Consent/ConsentManager.php:46
209
- #: views/modules/contact-form-7/content-privacy.php:2
210
- #: views/modules/wordpress-comments/terms-checkbox.php:14
211
- #: views/modules/wordpress-user/registration-terms-checkbox.php:15
212
- #, php-format
213
- msgid "I accept the %sPrivacy Policy%s"
214
- msgstr "Ich stimme der %sDatenschutzerklärung%s zu"
215
-
216
- #: src/Components/Consent/ConsentManager.php:50
217
- #: src/Components/Consent/ConsentManager.php:69
218
- msgctxt "(Admin)"
219
- msgid ""
220
- "This consent is not visible by default. If someone wishes to withdraw it, "
221
- "they should simply request to delete all their data."
222
- msgstr ""
223
- "Diese Zustimmung ist per Voreinstellung nicht sichtbar. Wenn jemand sie "
224
- "widerrufen möchte, sollte er einfach die Löschung aller seiner Daten "
225
- "verlangen."
226
-
227
- #: src/Components/Consent/ConsentManager.php:65
228
- #, php-format
229
- msgid "I accept the %sTerms & Conditions%s"
230
- msgstr "Ich akzeptiere die %sAllgemeinen Geschäftsbedingungen%s"
231
-
232
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:19
233
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:61
234
- #: views/admin/privacy-policy/generated.php:1 views/installer/header.php:41
235
- msgctxt "(Admin)"
236
- msgid "Privacy Policy"
237
- msgstr "Datenschutzerklärung"
238
-
239
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:70
240
- msgctxt "(Admin)"
241
- msgid "Company information"
242
- msgstr "Firmen-Informationen"
243
-
244
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:75
245
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:209
246
- msgctxt "(Admin)"
247
- msgid "Company Name"
248
- msgstr "Name der Firma"
249
-
250
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:82
251
- msgctxt "(Admin)"
252
- msgid "Company Email"
253
- msgstr "E-Mail-Adresse der Firma"
254
-
255
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:89
256
- msgctxt "(Admin)"
257
- msgid "Company Location"
258
- msgstr "Standort der Firma"
259
-
260
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:105
261
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:245
262
- msgctxt "(Admin)"
263
- msgid "Representative Contact Name"
264
- msgstr "Name des Ansprechpartners"
265
-
266
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:112
267
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:252
268
- msgctxt "(Admin)"
269
- msgid "Representative Contact Email"
270
- msgstr "E-Mail-Adresse des Ansprechpartners"
271
-
272
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:119
273
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:259
274
- msgctxt "(Admin)"
275
- msgid "Representative Contact Phone"
276
- msgstr "Telefonnummer des Ansprechpartners"
277
-
278
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:135
279
- msgctxt "(Admin)"
280
- msgid "Data Protection Authority"
281
- msgstr "Datenschutzbehörde"
282
-
283
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:141
284
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:286
285
- msgctxt "(Admin)"
286
- msgid "Data Protection Authority Website"
287
- msgstr "Website der Datenschutzbehörde"
288
-
289
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:148
290
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:293
291
- msgctxt "(Admin)"
292
- msgid "Data Protection Authority Email"
293
- msgstr "E-Mail-Adresse der Datenschutzbehörde"
294
-
295
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:155
296
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:300
297
- msgctxt "(Admin)"
298
- msgid "Data Protection Authority Phone"
299
- msgstr "Telefonnummer der Datenschutzbehörde"
300
-
301
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:165
302
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:175
303
- msgctxt "(Admin)"
304
- msgid "Data Protection Officer"
305
- msgstr "Datenschutzbeauftragter"
306
-
307
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:168
308
- msgctxt "(Admin)"
309
- msgid "Knowledge base: Do I need to appoint a Data Protection Officer?"
310
- msgstr "Wissensdatenbank: Muss ich einen Datenschutzbeauftragten ernennen?"
311
-
312
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:182
313
- msgctxt "(Admin)"
314
- msgid "Data Protection Officer Name"
315
- msgstr "Name des Datenschutzbeauftragten"
316
-
317
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:190
318
- msgctxt "(Admin)"
319
- msgid "Data Protection Officer Email"
320
- msgstr "E-Mail-Adresse des Datenschutzbeauftragten"
321
-
322
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:216
323
- msgctxt "(Admin)"
324
- msgid "Contact Email"
325
- msgstr "Kontakt-E-Mail-Adresse"
326
-
327
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:235
328
- msgctxt "(Admin)"
329
- msgid "Representative Contact"
330
- msgstr "Vertretungsberechtigter Kontakt"
331
-
332
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:238
333
- msgctxt "(Admin)"
334
- msgid "Knowledge base: Do I need to appoint an EU-based representative?"
335
- msgstr ""
336
- "Wissensdatenbank: Muss ich einen Ansprechpartner bennen, der innerhalb der "
337
- "EU sitzt?"
338
-
339
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:317
340
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:324
341
- msgctxt "(Admin)"
342
- msgid "DPO Name"
343
- msgstr "Behördliche Datenschutzbeauftragte"
344
-
345
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:420
346
- msgctxt "(Admin)"
347
- msgid "Save & Generate Policy"
348
- msgstr "Speichern & Richtlinie erstellen"
349
-
350
- #: src/Components/PrivacyPolicy/PrivacyPolicy.php:82
351
- #: src/Installer/Installer.php:271 src/Installer/Steps/PolicySettings.php:199
352
- #: views/themes/storefront/footer.php:3
353
- #: views/themes/twentyseventeen/footer.php:3
354
- #: views/themes/twentysixteen/footer.php:4
355
- msgid "Privacy Policy"
356
- msgstr "Datenschutzerklärung"
357
-
358
- #: src/Components/PrivacyToolsPage/PrivacyToolsPageShortcode.php:19
359
- msgid "This page is currently disabled."
360
- msgstr "Diese Seite ist derzeit deaktiviert."
361
-
362
- #: src/Components/PrivacyToolsPage/PrivacyToolsPageShortcode.php:35
363
- #: src/Installer/Installer.php:279
364
- #: src/Installer/Steps/ConfigurationPages.php:55
365
- #: views/themes/storefront/footer.php:7
366
- #: views/themes/twentyseventeen/footer.php:7
367
- #: views/themes/twentysixteen/footer.php:9
368
- msgid "Privacy Tools"
369
- msgstr "Datenschutz-Tools"
370
-
371
- #: src/Components/Support/AdminTabSupport.php:13
372
- #: src/Components/Support/AdminTabSupport.php:20
373
- msgctxt "(Admin)"
374
- msgid "Support"
375
- msgstr "Support"
376
-
377
- #: src/Components/WordpressComments/WordpressComments.php:90
378
- #, php-format
379
- msgid "%sERROR:%s You need to accept the privacy policy to post a comment."
380
- msgstr ""
381
- "%sFEHLER:%s Sie müssen die Datenschutzbestimmungen akzeptieren, um einen "
382
- "Kommentar posten zu können."
383
-
384
- #: src/Components/WordpressUser/Controllers/DashboardDataPageController.php:54
385
- #: views/privacy-tools/notices.php:19
386
- msgid "We have received your request and will reply within 30 days."
387
- msgstr ""
388
- "Wir haben Deine Anfrage erhalten und werden Ihnen innerhalb von 30 Tagen "
389
- "antworten."
390
-
391
- #: src/Components/WordpressUser/Controllers/DashboardDataPageController.php:59
392
- #: views/privacy-tools/notices.php:15
393
- msgid "Consent withdrawn."
394
- msgstr "Zustimmung zurückgezogen."
395
-
396
- #: src/Components/WordpressUser/RegistrationForm.php:42
397
- msgid "<strong>ERROR</strong>: You must accept the terms and conditions."
398
- msgstr ""
399
- "<strong>FEHLER</strong>: Du musst die Allgemeinen Geschäftsbedingungen "
400
- "akzeptieren."
401
-
402
- #: src/Components/WordpressUser/WordpressUser.php:63
403
- #: src/Components/WordpressUser/WordpressUser.php:64
404
- #: views/modules/wordpress-user/dashboard/data-page/header.php:2
405
- msgctxt "(Admin)"
406
- msgid "Privacy Tools"
407
- msgstr "Datenschutz-Tools"
408
-
409
- #: src/DataSubject/AdminTabDataSubject.php:27
410
- #: src/DataSubject/AdminTabDataSubject.php:41
411
- msgctxt "(Admin)"
412
- msgid "Data Subjects"
413
- msgstr "Betroffene Personen"
414
-
415
- #: src/DataSubject/DataRepository.php:143
416
- msgid "Data exported"
417
- msgstr "Daten exportiert"
418
-
419
- #: src/DataSubject/DataRepository.php:158
420
- msgid "Data export request"
421
- msgstr "Anfrage eines Daten-Exports"
422
-
423
- #: src/DataSubject/DataRepository.php:171
424
- msgid "Data removed"
425
- msgstr "Daten gelöscht"
426
-
427
- #: src/DataSubject/DataRepository.php:186
428
- msgid "Data removal request"
429
- msgstr "Anfrage einer Datenlöschung"
430
-
431
- #: src/DataSubject/DataSubjectIdentificator.php:65
432
- #: src/DataSubject/DataSubjectIdentificator.php:82
433
- msgid "Your personal data on"
434
- msgstr "Deine personenbezogenen Daten auf"
435
-
436
- #: src/Helpers.php:27
437
- msgctxt "(Admin)"
438
- msgid "Austria"
439
- msgstr "Österreich"
440
-
441
- #: src/Helpers.php:28
442
- msgctxt "(Admin)"
443
- msgid "Belgium"
444
- msgstr "Belgien"
445
-
446
- #: src/Helpers.php:29
447
- msgctxt "(Admin)"
448
- msgid "Bulgaria"
449
- msgstr "Bulgarien"
450
-
451
- #: src/Helpers.php:30
452
- msgctxt "(Admin)"
453
- msgid "Croatia"
454
- msgstr "Kroatien"
455
-
456
- #: src/Helpers.php:31
457
- msgctxt "(Admin)"
458
- msgid "Cyprus"
459
- msgstr "Zypern"
460
-
461
- #: src/Helpers.php:32
462
- msgctxt "(Admin)"
463
- msgid "Czech Republic"
464
- msgstr "Tschechische Republik"
465
-
466
- #: src/Helpers.php:33
467
- msgctxt "(Admin)"
468
- msgid "Denmark"
469
- msgstr "Dänemark"
470
-
471
- #: src/Helpers.php:34
472
- msgctxt "(Admin)"
473
- msgid "Estonia"
474
- msgstr "Estland"
475
-
476
- #: src/Helpers.php:35
477
- msgctxt "(Admin)"
478
- msgid "Finland"
479
- msgstr "Finnland"
480
-
481
- #: src/Helpers.php:36
482
- msgctxt "(Admin)"
483
- msgid "France"
484
- msgstr "Frankreich"
485
-
486
- #: src/Helpers.php:37
487
- msgctxt "(Admin)"
488
- msgid "Germany"
489
- msgstr "Deutschland"
490
-
491
- #: src/Helpers.php:38
492
- msgctxt "(Admin)"
493
- msgid "Greece"
494
- msgstr "Griechenland"
495
-
496
- #: src/Helpers.php:39
497
- msgctxt "(Admin)"
498
- msgid "Hungary"
499
- msgstr "Ungarn"
500
-
501
- #: src/Helpers.php:40
502
- msgctxt "(Admin)"
503
- msgid "Ireland"
504
- msgstr "Irland"
505
-
506
- #: src/Helpers.php:41
507
- msgctxt "(Admin)"
508
- msgid "Italy"
509
- msgstr "Italien"
510
-
511
- #: src/Helpers.php:42
512
- msgctxt "(Admin)"
513
- msgid "Latvia"
514
- msgstr "Lettland"
515
-
516
- #: src/Helpers.php:43
517
- msgctxt "(Admin)"
518
- msgid "Lithuania"
519
- msgstr "Litauen"
520
-
521
- #: src/Helpers.php:44
522
- msgctxt "(Admin)"
523
- msgid "Luxembourg"
524
- msgstr "Luxemburg"
525
-
526
- #: src/Helpers.php:45
527
- msgctxt "(Admin)"
528
- msgid "Malta"
529
- msgstr "Malta"
530
-
531
- #: src/Helpers.php:46
532
- msgctxt "(Admin)"
533
- msgid "Netherlands"
534
- msgstr "Niederlande"
535
-
536
- #: src/Helpers.php:47
537
- msgctxt "(Admin)"
538
- msgid "Poland"
539
- msgstr "Polen"
540
-
541
- #: src/Helpers.php:48
542
- msgctxt "(Admin)"
543
- msgid "Portugal"
544
- msgstr "Portugal"
545
-
546
- #: src/Helpers.php:49
547
- msgctxt "(Admin)"
548
- msgid "Romania"
549
- msgstr "Rumänien"
550
-
551
- #: src/Helpers.php:50
552
- msgctxt "(Admin)"
553
- msgid "Slovakia"
554
- msgstr "Slowakei"
555
-
556
- #: src/Helpers.php:51
557
- msgctxt "(Admin)"
558
- msgid "Slovenia"
559
- msgstr "Slowenien"
560
-
561
- #: src/Helpers.php:52
562
- msgctxt "(Admin)"
563
- msgid "Spain"
564
- msgstr "Spanien"
565
-
566
- #: src/Helpers.php:53
567
- msgctxt "(Admin)"
568
- msgid "Sweden"
569
- msgstr "Schweden"
570
-
571
- #: src/Helpers.php:54
572
- msgctxt "(Admin)"
573
- msgid "United Kingdom"
574
- msgstr "Großbritannien"
575
-
576
- #: src/Helpers.php:69
577
- msgctxt "(Admin)"
578
- msgid "Iceland"
579
- msgstr "Island"
580
-
581
- #: src/Helpers.php:70
582
- msgctxt "(Admin)"
583
- msgid "Norway"
584
- msgstr "Norwegen"
585
-
586
- #: src/Helpers.php:71
587
- msgctxt "(Admin)"
588
- msgid "Liechtenstein"
589
- msgstr "Liechtenstein"
590
-
591
- #: src/Helpers.php:72
592
- msgctxt "(Admin)"
593
- msgid "Switzerland"
594
- msgstr "Schweiz"
595
-
596
- #: src/Helpers.php:73
597
- msgctxt "(Admin)"
598
- msgid "United States"
599
- msgstr "USA"
600
-
601
- #: src/Helpers.php:74
602
- msgctxt "(Admin)"
603
- msgid "Rest of the world"
604
- msgstr "Übrige Welt"
605
-
606
- #: src/Helpers.php:145
607
- msgid "An error has occurred. Please contact the site administrator."
608
- msgstr ""
609
- "Es ist ein Fehler aufgetreten. Bitte kontaktiere den Webseiten-Administrator."
610
-
611
- #: src/Installer/Installer.php:135
612
- msgctxt "(Admin)"
613
- msgid "Setup Wizard"
614
- msgstr "Einrichtungsassistent"
615
-
616
- #: src/Installer/Steps/ConfigurationPages.php:23
617
- #: src/Installer/Steps/PolicySettings.php:23
618
- #: src/Installer/Steps/PolicySettings.php:48
619
- msgctxt "(Admin)"
620
- msgid "&mdash; Create a new page &mdash;"
621
- msgstr "&mdash; Neue Seite erstellen &mdash;"
622
-
623
- #: src/Installer/Steps/PolicySettings.php:38
624
- msgctxt "(Admin)"
625
- msgid ""
626
- "We have automatically selected your WooCommerce Terms & Conditions page."
627
- msgstr ""
628
- "Wir haben automatisch Deine Seite mit den Allgemeinen Geschäftsbedingungen "
629
- "von WooCommerce ausgewählt."
630
-
631
- #: src/Modules/ContactForm7/ContactForm7.php:35
632
- msgctxt "(Admin)"
633
- msgid "gdpr terms txt"
634
- msgstr "DSGVO Bestimmungen txt"
635
-
636
- #: src/Router.php:80 src/Router.php:92 src/Router.php:125 src/Router.php:141
637
- #, php-format
638
- msgid "Nonce error for action \"%s\". Please go back and try again!"
639
- msgstr ""
640
- "Ein Fehler für die Aktion %s ist aufgetreten. Bitte gehe zurück und versuche "
641
- "es erneut!"
642
-
643
- #: src/Router.php:149
644
- msgctxt "(Admin)"
645
- msgid "You do not have the required permissions to perform this action!"
646
- msgstr ""
647
- "Du verfügst nicht über die erforderlichen Berechtigungen zum Ausführen "
648
- "dieser Aktion!"
649
-
650
- #: views/admin/consent.php:3
651
- msgctxt "(Admin)"
652
- msgid "Default consent types"
653
- msgstr "Voreingestellte Arten der Zustimmung"
654
-
655
- #: views/admin/consent.php:4
656
- msgctxt "(Admin)"
657
- msgid ""
658
- "These are the consent types that have been automatically registered by the "
659
- "framework or a plugin."
660
- msgstr ""
661
- "Dies sind die Zustimmungsarten, die automatisch durch das GDPR Framework "
662
- "oder ein anderes Plugin registriert wurden."
663
-
664
- #: views/admin/consent.php:7 views/admin/consent.php:52
665
- msgctxt "(Admin)"
666
- msgid "Slug"
667
- msgstr "Pfad"
668
-
669
- #: views/admin/consent.php:8 views/admin/consent.php:38
670
- #: views/admin/consent.php:60
671
- msgctxt "(Admin)"
672
- msgid "Title"
673
- msgstr "Titel"
674
-
675
- #: views/admin/consent.php:9 views/admin/consent.php:41
676
- #: views/admin/consent.php:63
677
- msgctxt "(Admin)"
678
- msgid "Description"
679
- msgstr "Beschreibung"
680
-
681
- #: views/admin/consent.php:10
682
- msgctxt "(Admin)"
683
- msgid "Visibility"
684
- msgstr "Sichtbarkeit"
685
-
686
- #: views/admin/consent.php:18
687
- msgctxt "(Admin)"
688
- msgid "Visible"
689
- msgstr "Sichtbar"
690
-
691
- #: views/admin/consent.php:20
692
- msgctxt "(Admin)"
693
- msgid "Hidden"
694
- msgstr "Ausgeblendet"
695
-
696
- #: views/admin/consent.php:29
697
- msgctxt "(Admin)"
698
- msgid "Custom consent types"
699
- msgstr "Benutzerdefinierte Arten der Zustimmung"
700
-
701
- #: views/admin/consent.php:30
702
- msgctxt "(Admin)"
703
- msgid ""
704
- "Here you can add custom consent types to track. They will not be used "
705
- "anywhere by default - you will need to build an integration for each of them."
706
- msgstr ""
707
- "Hier kannst Du benutzerdefinierte Arten der Zustimmung hinzufügen, um sie zu "
708
- "verfolgen. Sie werden nigends per Voreinstellung verwendet. Du musst dafür "
709
- "jeweils eine Integration erstellen."
710
-
711
- #: views/admin/consent.php:35
712
- msgctxt "(Admin)"
713
- msgid "Machine-readable slug"
714
- msgstr "Maschinenlesbarer Pfad"
715
-
716
- #: views/admin/consent.php:44 views/admin/consent.php:68
717
- msgctxt "(Admin)"
718
- msgid "Visible?"
719
- msgstr "Sichtbar?"
720
-
721
- #: views/admin/consent.php:72
722
- msgctxt "(Admin)"
723
- msgid "Remove"
724
- msgstr "Entfernen"
725
-
726
- #: views/admin/consent.php:93
727
- msgctxt "(Admin)"
728
- msgid "Additional info"
729
- msgstr "Zusätzliche Informationen"
730
-
731
- #: views/admin/consent.php:95
732
- msgctxt "(Admin)"
733
- msgid ""
734
- "This text will be displayed to your data subjects on the Privacy Tools page."
735
- msgstr ""
736
- "Dieser Text wird den betroffenen Personen auf der Seite der Datenschutz-"
737
- "Tools angezeigt."
738
-
739
- #: views/admin/data-subjects/search-form.php:2
740
- msgctxt "(Admin)"
741
- msgid ""
742
- "On this page, you can find which data subjects personal data you are storing "
743
- "and download, export or delete it."
744
- msgstr ""
745
- "Auf dieser Seite kannst Du nachlesen, welche personenbezogenen Daten Du von "
746
- "betroffenen Personen speicherst und diese herunterladen, exportieren oder "
747
- "löschen."
748
-
749
- #: views/admin/data-subjects/search-form.php:10
750
- msgctxt "(Admin)"
751
- msgid "Find data subject by email"
752
- msgstr "Betroffene Personen über die E-Mail-Adresse finden"
753
-
754
- #: views/admin/data-subjects/search-form.php:11
755
- msgctxt "(Admin)"
756
- msgid "Email address"
757
- msgstr "E-Mail-Adresse"
758
-
759
- #: views/admin/data-subjects/search-form.php:16
760
- msgctxt "(Admin)"
761
- msgid "Search"
762
- msgstr "Suchen"
763
-
764
- #: views/admin/data-subjects/search-results.php:7
765
- msgctxt "(Admin)"
766
- msgid "Username"
767
- msgstr "Benutzername"
768
-
769
- #: views/admin/data-subjects/search-results.php:12
770
- msgctxt "(Admin)"
771
- msgid "is not a registered user."
772
- msgstr "ist nicht registriert."
773
-
774
- #: views/admin/data-subjects/search-results.php:16
775
- msgctxt "(Admin)"
776
- msgid "Download data (html)"
777
- msgstr "Download der Daten (html)"
778
-
779
- #: views/admin/data-subjects/search-results.php:17
780
- msgctxt "(Admin)"
781
- msgid "Export data (json)"
782
- msgstr "Datenexport (json)"
783
-
784
- #: views/admin/data-subjects/search-results.php:21
785
- msgctxt "(Admin)"
786
- msgid ""
787
- "This user has admin capabilities. Deleting data via this interface is "
788
- "disabled."
789
- msgstr ""
790
- "Dieser Benutzer hat die Berechtigungsstufe eines Admins. Das Löschen der "
791
- "Daten über diese Bedienoberfläche ist daher deaktiviert."
792
-
793
- #: views/admin/data-subjects/search-results.php:24
794
- msgctxt "(Admin)"
795
- msgid "Anonymize data"
796
- msgstr "Daten anonymisieren"
797
-
798
- #: views/admin/data-subjects/search-results.php:25
799
- msgctxt "(Admin)"
800
- msgid "Delete data"
801
- msgstr "Daten löschen"
802
-
803
- #: views/admin/data-subjects/search-results.php:29
804
- msgctxt "(Admin)"
805
- msgid "No data found!"
806
- msgstr "Keine Daten gefunden!"
807
-
808
- #: views/admin/general/delete-action-email.php:5
809
- #: views/admin/general/export-action-email.php:5
810
- #: views/installer/steps/configuration-settings.php:29
811
- #: views/installer/steps/configuration-settings.php:79
812
- msgid "Email address"
813
- msgstr "E-Mail-Adresse"
814
-
815
- #: views/admin/general/delete-action-reassign.php:3
816
- #: views/installer/steps/configuration-settings.php:50
817
- msgctxt "(Admin)"
818
- msgid "Delete content"
819
- msgstr "Inhalt(e) löschen"
820
-
821
- #: views/admin/general/delete-action-reassign.php:6
822
- #: views/installer/steps/configuration-settings.php:53
823
- msgctxt "(Admin)"
824
- msgid "Reassign content to a user"
825
- msgstr "Inhalt(e) einem anderen Benutzer zuweisen"
826
-
827
- #: views/admin/general/delete-action-reassign.php:10
828
- msgctxt "(Admin)"
829
- msgid ""
830
- "If the user has submitted any content on your site, should it be deleted or "
831
- "reassigned to another user?"
832
- msgstr ""
833
- "Falls der Benutzer Inhalte an Deine Website übermittelt hat: Sollen diese "
834
- "gelöscht oder einem anderen Benutzer zugewiesen werden?"
835
-
836
- #: views/admin/general/description-data-page.php:2
837
- msgctxt "(Admin)"
838
- msgid ""
839
- "Select the page where users can go to control their data. This page must "
840
- "contain the [gdpr_privacy_tools] shortcode."
841
- msgstr ""
842
- "Wähle die Seite aus, auf der Benutzer ihre Daten überprüfen können. Diese "
843
- "Seite muss den folgenden Shortcode enthalten: [gdpr_privacy_tools]"
844
-
845
- #: views/admin/general/enable.php:9
846
- msgctxt "(Admin)"
847
- msgid "Enable the view, export and forget functionality for users and visitors"
848
- msgstr ""
849
- "Aktiviere die Ansichts-, Export- und Vergessens-Funktionalität für Benutzer "
850
- "und Besucher"
851
-
852
- #: views/admin/general/enable.php:12
853
- msgctxt "(Admin)"
854
- msgid ""
855
- "Enable the Privacy Tools page on front-end and dashboard. This allows "
856
- "visitors to request viewing and deleting their personal data and withdraw "
857
- "consents."
858
- msgstr ""
859
- "Aktiviere die Seite der Datenschutz-Tools im Frontend und Dashboard. Dies "
860
- "ermöglicht es den Besuchern, Einsicht in Deine persönlichen Daten zu "
861
- "verlangen, sie zu löschen und ihre Zustimmung zur Speicherung zu widerrufen."
862
-
863
- #: views/admin/general/theme-compatibility.php:9
864
- #: views/installer/steps/integrations.php:21
865
- msgctxt "(Admin)"
866
- msgid ""
867
- "Automatically add Privacy Policy and Privacy Tools links to your site footer."
868
- msgstr ""
869
- "Automatisch die Links zur Datenschutzerklärung und zu den Datenschutz-Tools "
870
- "im Footer Deiner Website hinzufügen."
871
-
872
- #: views/admin/notices/header.php:4 views/admin/settings-page.php:3
873
- #: views/installer/header.php:23
874
- msgctxt "(Admin)"
875
- msgid "The GDPR Framework"
876
- msgstr "The GDPR Framework"
877
-
878
- #: views/admin/notices/helper-autoinstall.php:2
879
- msgctxt "(Admin)"
880
- msgid ""
881
- "A Privacy Policy page has been created, but it is empty. You can generate a "
882
- "policy template on this page."
883
- msgstr ""
884
- "Eine Seite für die Datenschutzerklärung wurde erstellt, aber sie ist leer. "
885
- "Du kannst auf dieser Seite eine Vorlage für die Datenschutzerklärung "
886
- "generieren."
887
-
888
- #: views/admin/notices/helper-policy.php:2
889
- msgctxt "(Admin)"
890
- msgid ""
891
- "Heads up - your Privacy Policy still requires some attention. Find the "
892
- "places marked with [TODO] and replace them with real content!"
893
- msgstr ""
894
- "Aufgepasst - Deine Datenschutzerklärung erfordert noch einige "
895
- "Aufmerksamkeit. Finde die mit [TODO] markierten Orte und ersetzen sie durch "
896
- "echten Inhalt!"
897
-
898
- #: views/admin/notices/helper-tools.php:2
899
- msgctxt "(Admin)"
900
- msgid ""
901
- "The contents of this page should contain the [gdpr_privacy_tools] shortcode."
902
- msgstr ""
903
- "Der Inhalt dieser Seite sollte den Shortcode [gdpr_privacy_tools] enthalten."
904
-
905
- #: views/admin/privacy-policy/description-policy-page.php:2
906
- msgctxt "(Admin)"
907
- msgid "Select the page which will contain your Privacy Policy"
908
- msgstr "Wähle die Seite aus, die Deine Datenschutzerklärung enthalten wird"
909
-
910
- #: views/admin/privacy-policy/generated.php:3
911
- msgctxt "(Admin)"
912
- msgid "Your Privacy Policy has been generated."
913
- msgstr "Deine Datenschutzerklärung wurde erstellt."
914
-
915
- #: views/admin/privacy-policy/generated.php:20
916
- msgctxt "(Admin)"
917
- msgid "&laquo; Back"
918
- msgstr "&laquo; Zurück"
919
-
920
- #: views/admin/privacy-policy/header.php:2
921
- msgctxt "(Admin)"
922
- msgid ""
923
- "This page allows you to generate a Privacy Policy based on the information "
924
- "you entered below."
925
- msgstr ""
926
- "Auf dieser Seite kannst Du eine Datenschutzerklärung erzeugen, die auf den "
927
- "Informationen basiert, die Du unten eingegeben hast."
928
-
929
- #: views/admin/settings-page.php:31
930
- #, php-format
931
- msgctxt "(Admin)"
932
- msgid "The GDPR Framework. Built with &#9829; by %sCodelight%s."
933
- msgstr "The GDPR Framework. Built with &#9829; by %sCodelight%s."
934
-
935
- #: views/admin/support/contents.php:5 views/installer/steps/finish.php:10
936
- msgctxt "(Admin)"
937
- msgid "Need more info?"
938
- msgstr "Benötigst Du weitere Informationen?"
939
-
940
- #: views/admin/support/contents.php:11 views/installer/steps/finish.php:16
941
- msgctxt "(Admin)"
942
- msgid "Site Owner's guide to GDPR"
943
- msgstr "DSGVO-Handbuch für Website-Besitzer"
944
-
945
- #: views/admin/support/contents.php:14 views/installer/steps/finish.php:19
946
- msgctxt "(Admin)"
947
- msgid "Read the full guide on GDPR compliance."
948
- msgstr "Lies das vollständige Handbuch zur DSGVO-Konformität."
949
-
950
- #: views/admin/support/contents.php:20 views/installer/steps/finish.php:25
951
- msgctxt "(Admin)"
952
- msgid "Knowledge base"
953
- msgstr "Wissensdatenbank"
954
-
955
- #: views/admin/support/contents.php:23 views/installer/steps/finish.php:28
956
- msgctxt "(Admin)"
957
- msgid "Check out the knowledge base for common questions and answers."
958
- msgstr ""
959
- "Sieh Dir die Wissensdatenbank an, um häufige Fragen und Antworten zu lesen."
960
-
961
- #: views/admin/support/contents.php:29 views/installer/steps/finish.php:34
962
- msgctxt "(Admin)"
963
- msgid "Developer's guide to GDPR"
964
- msgstr "Entwicklerleitfaden zur DSGVO"
965
-
966
- #: views/admin/support/contents.php:32 views/installer/steps/finish.php:37
967
- msgctxt "(Admin)"
968
- msgid "We have a thorough guide to help making custom sites compliant."
969
- msgstr ""
970
- "Wir haben eine umfassende Anleitung, um benutzerdefinierte Websites DSGVO-"
971
- "konform zu machen."
972
-
973
- #: views/admin/support/contents.php:40 views/installer/steps/finish.php:45
974
- msgctxt "(Admin)"
975
- msgid "Need help?"
976
- msgstr "Brauchst Du Hilfe?"
977
-
978
- #: views/admin/support/contents.php:46 views/installer/steps/finish.php:51
979
- msgctxt "(Admin)"
980
- msgid "Submit a support request"
981
- msgstr "Supportanfrage stellen"
982
-
983
- #: views/admin/support/contents.php:49 views/installer/steps/finish.php:54
984
- msgctxt "(Admin)"
985
- msgid ""
986
- "Found a bug or problem with the plugin? Post in the wordpress.org support "
987
- "forum."
988
- msgstr ""
989
- "Du hast einen Fehler gefunden oder ein Problem mit dem Plugin? Bitte "
990
- "schreibe uns im Support-Forum von wordpress.org."
991
-
992
- #: views/admin/support/contents.php:55 views/installer/steps/finish.php:60
993
- msgctxt "(Admin)"
994
- msgid "Request a consultation"
995
- msgstr "Fordern Sie eine Beratung an"
996
-
997
- #: views/admin/support/contents.php:58 views/installer/steps/finish.php:63
998
- msgctxt "(Admin)"
999
- msgid ""
1000
- "Need development or legal assistance in making your site compliant? We can "
1001
- "help!"
1002
- msgstr ""
1003
- "Benötigst Du Unterstützung bei der Web-Entwicklung oder Rechtshilfe um Deine "
1004
- "Website DSGVO-konform einzurichten? Wir können helfen!"
1005
-
1006
- #: views/admin/wizard-buttons.php:2
1007
- msgctxt "(Admin)"
1008
- msgid "Restart setup wizard"
1009
- msgstr "Einrichtungsassistenten erneut starten"
1010
-
1011
- #: views/email/action-export.php:8 views/email/action-forget.php:12
1012
- msgctxt "(Admin)"
1013
- msgid ""
1014
- "This email is just for your information. You don't need to take any action"
1015
- msgstr ""
1016
- "Diese E-Mail dient nur zu Ihrer Information. Du musst nichts unternehmen."
1017
-
1018
- #: views/email/action-forget.php:8
1019
- msgctxt "(Admin)"
1020
- msgid "The data subject had a user account on your website."
1021
- msgstr "Die betroffene Person hatte einen Benutzer-Account auf Deiner Website."
1022
-
1023
- #: views/email/identify-data-subject.php:2
1024
- msgid "Someone has requested access to your data on"
1025
- msgstr "Jemand hat Zugriff auf Deine Daten angefordert"
1026
-
1027
- #: views/email/identify-data-subject.php:3
1028
- msgid "If this was a mistake, just ignore this email and nothing will happen."
1029
- msgstr ""
1030
- "Falls Du diese E-Mail irrtümlich erhalten hast: Ignoriere sie bitte. Es wird "
1031
- "nichts weiter passieren."
1032
-
1033
- #: views/email/identify-data-subject.php:4
1034
- msgid "To manage your data, visit the following address:"
1035
- msgstr "Um Deine Daten zu verwalten, besuche die folgende Adresse:"
1036
-
1037
- #: views/email/identify-data-subject.php:10
1038
- msgid "This link is valid for 15 minutes."
1039
- msgstr "Dieser Link ist 15 Minuten gültig."
1040
-
1041
- #: views/email/no-data.php:2
1042
- msgid "Someone has requested information about your personal data on"
1043
- msgstr "Jemand hat Auskunft über Deine personenbezogenen Daten erbeten auf"
1044
-
1045
- #: views/email/no-data.php:3
1046
- msgid "None of your personal data is stored on"
1047
- msgstr "Keine Deiner persönlichen Daten wurden gespeichert auf"
1048
-
1049
- #: views/email/no-data.php:5
1050
- msgid ""
1051
- "If this was a mistake or you did not request this email, just ignore it and "
1052
- "nothing will happen."
1053
- msgstr ""
1054
- "Falls Du diese E-Mail irrtümlich erhalten hast: Ignorieren sie bitte. Es "
1055
- "wird nichts weiter passieren."
1056
-
1057
- #: views/email/request-export.php:13 views/email/request-forget.php:13
1058
- msgctxt "(Admin)"
1059
- msgid "As a reminder: according to GDPR, you have 30 days to comply."
1060
- msgstr "Zur Erinnerung: Gemäß der DSGVO musst Du 30 Tage einhalten."
1061
-
1062
- #: views/global/delete-action.php:2
1063
- msgctxt "(Admin)"
1064
- msgid "Automatically anonymize data"
1065
- msgstr "Daten automatisch anonymisieren"
1066
-
1067
- #: views/global/delete-action.php:5
1068
- msgctxt "(Admin)"
1069
- msgid "Automatically delete data"
1070
- msgstr "Daten automatisch löschen"
1071
-
1072
- #: views/global/delete-action.php:9
1073
- msgctxt "(Admin)"
1074
- msgid "Automatically anonymize data and notify me via email"
1075
- msgstr "Daten automatisch anonymisieren und mich über E-Mail benachrichtigen"
1076
-
1077
- #: views/global/delete-action.php:13
1078
- msgctxt "(Admin)"
1079
- msgid "Automatically delete data and notify me via email"
1080
- msgstr "Daten automatisch löschen und mich über E-Mail benachrichtigen"
1081
-
1082
- #: views/global/delete-action.php:16 views/global/export-action.php:10
1083
- msgctxt "(Admin)"
1084
- msgid "Only notify me via email"
1085
- msgstr "Mich lediglich über E-Mail benachrichtigen"
1086
-
1087
- #: views/global/export-action.php:2
1088
- msgctxt "(Admin)"
1089
- msgid "Automatically download data"
1090
- msgstr "Daten automatisch herunterladen"
1091
-
1092
- #: views/global/export-action.php:6
1093
- msgctxt "(Admin)"
1094
- msgid "Automatically download data and notify me via email"
1095
- msgstr "Daten automatisch herunterladen und mich über E-Mail benachrichtigen"
1096
-
1097
- #: views/installer/continue-notice.php:2
1098
- msgctxt "(Admin)"
1099
- msgid "The The GDPR Framework setup has not been finalized yet."
1100
- msgstr "Die Einrichtung des GDPR Frameworks ist noch nicht abgeschlossen."
1101
-
1102
- #: views/installer/continue-notice.php:3
1103
- msgctxt "(Admin)"
1104
- msgid "You can continue the setup at any time."
1105
- msgstr "Du kannst die Einrichtung jederzeit fortsetzen."
1106
-
1107
- #: views/installer/continue-notice.php:6
1108
- msgctxt "(Admin)"
1109
- msgid "Continue the setup wizard"
1110
- msgstr "Setze den Einrichtungsassistenten fort"
1111
-
1112
- #: views/installer/continue-notice.php:9
1113
- msgctxt "(Admin)"
1114
- msgid "Hide this message"
1115
- msgstr "Diese Nachricht ausblenden"
1116
-
1117
- #: views/installer/footer.php:7
1118
- msgid "Back"
1119
- msgstr "Zurück"
1120
-
1121
- #: views/installer/header.php:26
1122
- msgctxt "(Admin)"
1123
- msgid "I need help"
1124
- msgstr "Ich benötige Unterstützung"
1125
-
1126
- #: views/installer/header.php:29
1127
- msgctxt "(Admin)"
1128
- msgid "Developer Docs"
1129
- msgstr "Entwickler-Dokumentation"
1130
-
1131
- #: views/installer/header.php:36
1132
- msgctxt "(Admin)"
1133
- msgid "Configuration"
1134
- msgstr "Konfiguration"
1135
-
1136
- #: views/installer/header.php:46
1137
- msgctxt "(Admin)"
1138
- msgid "Forms & Consent"
1139
- msgstr "Formulare & Zustimmung"
1140
-
1141
- #: views/installer/header.php:51
1142
- msgctxt "(Admin)"
1143
- msgid "Integrations"
1144
- msgstr "Integrationen"
1145
-
1146
- #: views/installer/steps/configuration-settings.php:23
1147
- #: views/installer/steps/configuration-settings.php:73
1148
- msgctxt "(Admin)"
1149
- msgid "Enter the email address to notify"
1150
- msgstr "Gib die zu benachrichtigende E-Mail-Adresse ein"
1151
-
1152
- #: views/installer/steps/disclaimer.php:21
1153
- msgctxt "(Admin)"
1154
- msgid "I accept"
1155
- msgstr "Ich akzeptiere"
1156
-
1157
- #: views/installer/welcome-notice.php:7
1158
- msgctxt "(Admin)"
1159
- msgid "Run the setup wizard"
1160
- msgstr "Einrichtungsassistent jetzt starten"
1161
-
1162
- #: views/installer/welcome-notice.php:11
1163
- msgctxt "(Admin)"
1164
- msgid "Auto-install pages"
1165
- msgstr "Seiten automatisch einrichten"
1166
-
1167
- #: views/installer/welcome-notice.php:15
1168
- msgctxt "(Admin)"
1169
- msgid "Skip and install manually"
1170
- msgstr "Überspringen und manuell einrichten"
1171
-
1172
- #: views/modules/contact-form-7/generator-privacy.php:6
1173
- msgctxt "(Admin)"
1174
- msgid ""
1175
- "This tag generates the default text for Terms & Conditions and/or Privacy "
1176
- "Policy checkbox."
1177
- msgstr ""
1178
- "Dieser Tag generiert den Standardtext für die Checkbox der "
1179
- "Geschäftsbedingungen und/oder Datenschutzerklärung."
1180
-
1181
- #: views/modules/contact-form-7/generator-privacy.php:15
1182
- msgid "Insert"
1183
- msgstr "Einfügen"
1184
-
1185
- #: views/modules/wordpress-comments/terms-checkbox.php:6
1186
- #: views/modules/wordpress-user/registration-terms-checkbox.php:7
1187
- #, php-format
1188
- msgid "I accept the %sTerms and Conditions%s and the %sPrivacy Policy%s"
1189
- msgstr ""
1190
- "Ich akzeptiere die %sAllgemeinen Geschäftsbedingungen%s und die "
1191
- "%sDatenschutzerklärung%s"
1192
-
1193
- #: views/modules/wordpress-user/dashboard/data-page/form-consent.php:3
1194
- msgid "Manage consents"
1195
- msgstr "Zustimmungen verwalten"
1196
-
1197
- #: views/modules/wordpress-user/dashboard/data-page/form-consent.php:6
1198
- #: views/privacy-tools/form-consent.php:6
1199
- msgid "Here you can withdraw any consents you have given."
1200
- msgstr "Hier kannst Du Deine gegebenen Einwilligungen widerrufen."
1201
-
1202
- #: views/modules/wordpress-user/dashboard/data-page/form-consent.php:8
1203
- #: views/privacy-tools/form-consent.php:9
1204
- msgid "Consent types"
1205
- msgstr "Arten der Zustimmung"
1206
-
1207
- #: views/modules/wordpress-user/dashboard/data-page/form-consent.php:23
1208
- #: views/privacy-tools/form-consent.php:24
1209
- msgid "Withdraw"
1210
- msgstr "Widerrufen"
1211
-
1212
- #: views/modules/wordpress-user/dashboard/data-page/form-delete.php:5
1213
- #: views/modules/wordpress-user/dashboard/profile-page/form-delete.php:5
1214
- msgctxt "(Admin)"
1215
- msgid "Delete this user and all data"
1216
- msgstr "Diesen Benutzer und alle Daten löschen"
1217
-
1218
- #: views/modules/wordpress-user/dashboard/data-page/form-delete.php:11
1219
- msgctxt "(Admin)"
1220
- msgid "Delete my data"
1221
- msgstr "Lösche meine Daten"
1222
-
1223
- #: views/modules/wordpress-user/dashboard/data-page/form-delete.php:15
1224
- #: views/privacy-tools/form-delete.php:13
1225
- msgid "Delete all data we have gathered about you."
1226
- msgstr "Lösche alle Daten, die auf dieser Seite über Dich gesammelt wurden."
1227
-
1228
- #: views/modules/wordpress-user/dashboard/data-page/form-delete.php:16
1229
- #: views/privacy-tools/form-delete.php:14
1230
- msgid "If you have a user account on our site, it will also be deleted."
1231
- msgstr ""
1232
- "Falls Du auf unserer Website ein Benutzerkonto hast, wird dieses ebenfalls "
1233
- "gelöscht."
1234
-
1235
- #: views/modules/wordpress-user/dashboard/data-page/form-delete.php:17
1236
- #: views/privacy-tools/form-delete.php:15
1237
- msgid "Be careful - this action is permanent and CANNOT be undone."
1238
- msgstr ""
1239
- "Sei vorsichtig - diese Aktion ist dauerhaft und kann NICHT rückgängig "
1240
- "gemacht werden."
1241
-
1242
- #: views/modules/wordpress-user/dashboard/data-page/form-delete.php:22
1243
- #: views/modules/wordpress-user/dashboard/profile-page/form-delete.php:23
1244
- msgctxt "(Admin)"
1245
- msgid ""
1246
- "You seem to have an administrator or equivalent role, so deleting/"
1247
- "anonymizing via this page is disabled."
1248
- msgstr ""
1249
- "Du scheinst die Rolle eines Administrators oder eine gleichwertige Rolle zu "
1250
- "haben, so dass löschen/anonymisieren über diese Seite deaktiviert ist."
1251
-
1252
- #: views/modules/wordpress-user/dashboard/form-export.php:7
1253
- #: views/privacy-tools/form-export.php:1
1254
- msgid "Download your data"
1255
- msgstr "Lade Deine Ihre Daten herunter"
1256
-
1257
- #: views/modules/wordpress-user/dashboard/form-export.php:12
1258
- #: views/privacy-tools/form-export.php:13
1259
- msgid "Download as table"
1260
- msgstr "Als Tabelle herunterladen"
1261
-
1262
- #: views/modules/wordpress-user/dashboard/form-export.php:15
1263
- #: views/privacy-tools/form-export.php:22
1264
- msgid "Export as JSON"
1265
- msgstr "Export als JSON"
1266
-
1267
- #: views/modules/wordpress-user/dashboard/form-export.php:19
1268
- #: views/privacy-tools/form-export.php:4
1269
- msgid "You can download all your data formatted as a table for viewing."
1270
- msgstr ""
1271
- "Für eine einfachere Betrachtung kannst Du all Deine Daten in Form einer "
1272
- "Tabelle herunterladen."
1273
-
1274
- #: views/modules/wordpress-user/dashboard/form-export.php:20
1275
- #: views/privacy-tools/form-export.php:5
1276
- msgid "Alternatively, you can export it in machine-readable JSON format."
1277
- msgstr "Alternativ kannst Du sie im maschinenlesbaren JSON-Format exportieren."
1278
-
1279
- #: views/modules/wordpress-user/dashboard/profile-page/form-delete.php:11
1280
- msgctxt "(Admin)"
1281
- msgid "Delete user and all data"
1282
- msgstr "Diesen Benutzer und alle Daten löschen"
1283
-
1284
- #: views/modules/wordpress-user/dashboard/profile-page/form-delete.php:14
1285
- msgctxt "(Admin)"
1286
- msgid "Anonymize user and all data"
1287
- msgstr "Diesen Benutzer und alle Daten anonymisieren"
1288
-
1289
- #: views/modules/wordpress-user/dashboard/profile-page/header.php:2
1290
- msgctxt "(Admin)"
1291
- msgid "GDPR Data"
1292
- msgstr "DSGVO Daten"
1293
-
1294
- #: views/modules/wordpress-user/dashboard/profile-page/header.php:6
1295
- msgctxt "(Admin)"
1296
- msgid "This user has been anonymized."
1297
- msgstr "Dieser Benutzer wurde anonymisiert."
1298
-
1299
- #: views/modules/wordpress-user/dashboard/profile-page/table-consent.php:4
1300
- msgctxt "(Admin)"
1301
- msgid "Consents given"
1302
- msgstr "Gegebene Zustimmungen"
1303
-
1304
- #: views/modules/wordpress-user/dashboard/profile-page/table-consent.php:17
1305
- msgctxt "(Admin)"
1306
- msgid "No consents given"
1307
- msgstr "Keine Zustimmungen gegeben"
1308
-
1309
- #: views/privacy-tools/form-consent.php:2
1310
- msgid "Consent"
1311
- msgstr "Zustimmung"
1312
-
1313
- #: views/privacy-tools/form-delete.php:1
1314
- #: views/privacy-tools/notice-admin-role.php:1
1315
- msgid "Delete my user and data"
1316
- msgstr "Mein Benutzerkonto und meine Daten löschen"
1317
-
1318
- #: views/privacy-tools/form-delete.php:7
1319
- msgid "Delete my data"
1320
- msgstr "Meine Daten löschen"
1321
-
1322
- #: views/privacy-tools/form-identify.php:8
1323
- msgid "Back to Privacy Tools"
1324
- msgstr "Zurück zu den Datenschutz-Tools"
1325
-
1326
- #: views/privacy-tools/form-identify.php:14
1327
- msgid "Identify yourself!"
1328
- msgstr "Bitte identifiziere Dich!"
1329
-
1330
- #: views/privacy-tools/form-identify.php:17
1331
- #: views/privacy-tools/form-identify.php:20
1332
- msgid "Enter your email address"
1333
- msgstr "Gib Deine E-Mail-Adresse ein"
1334
-
1335
- #: views/privacy-tools/form-identify.php:23
1336
- msgid "Send email"
1337
- msgstr "E-Mail senden"
1338
-
1339
- #: views/privacy-tools/notice-admin-role.php:4
1340
- msgctxt "(Admin)"
1341
- msgid "Data deletion is disabled for administrative accounts."
1342
- msgstr ""
1343
- "Die Löschung der Daten ist für administrative Benutzerkonten deaktiviert."
1344
-
1345
- #: views/privacy-tools/notices.php:3
1346
- msgid ""
1347
- "We will send you an email with the link to access your data. Please check "
1348
- "your spam folder as well!"
1349
- msgstr ""
1350
- "Wir senden Dir eine E-Mail mit einem Link, um auf Deine Daten zuzugreifen. "
1351
- "Bitte überprüfe auch Deinen Spam-Ordner!"
1352
-
1353
- #: views/privacy-tools/notices.php:7
1354
- msgid "The email you entered does not appear to be a valid email."
1355
- msgstr "Die eingegebene E-Mail-Adresse scheint ungültig zu sein."
1356
-
1357
- #: views/privacy-tools/notices.php:11
1358
- msgid "Sorry - the link seems to have expired. Please try again!"
1359
- msgstr ""
1360
- "Entschuldigung - der Link scheint abgelaufen zu sein. Bitte versuche es "
1361
- "erneut!"
1362
-
1363
- #: views/privacy-tools/notices.php:23
1364
- msgid "Your personal data has been removed!"
1365
- msgstr "Deine personenbezogenen Daten wurden gelöscht!"
1366
-
1367
- #: views/privacy-tools/privacy-tools.php:5
1368
- msgid "You are identified as"
1369
- msgstr "Du bist indentifiziert als"
1370
-
1371
- #: views\admin\general\enable-tac.php:9
1372
- msgctxt "(Admin)"
1373
- msgid "Enable the term and condition page."
1374
- msgstr "Aktiviere Begriffs- und Bedingungsseite."
1375
-
1376
- #: src\Admin\AdminTabGeneral.php:51
1377
- msgctxt "(Admin)"
1378
- msgid "Enable Term and Conditions"
1379
- msgstr "Aktiviere Bedingungen und Konditionen"
1380
-
1381
- #: gdpr-framework.php:121
1382
- msgid ""
1383
- "This website uses cookies to ensure you get the best experience on our "
1384
- "website."
1385
- msgstr ""
1386
- "Diese Website verwendet Cookies, um sicherzustellen, dass unsere Webseite "
1387
- "ideal nutzbar ist."
1388
-
1389
- #: gdpr-framework.php:121
1390
- msgid "Decline"
1391
- msgstr "Ablehnen"
1392
-
1393
- #: gdpr-framework.php:121
1394
- msgid "Accept"
1395
- msgstr "Akzeptieren"
1396
-
1397
- #: gdpr-framework.php:133
1398
- msgid "Learn more"
1399
- msgstr "Mehr erfahren"
1400
-
1401
- #: AdminTabGeneral.php:94
1402
- msgctxt "(Admin)"
1403
- msgid "From Email"
1404
- msgstr "Von E-Mail"
1405
-
1406
- #: AdminTabGeneral.php:87
1407
- msgctxt "(Admin)"
1408
- msgid "From Name"
1409
- msgstr "Von Name"
1410
-
1411
- #: AdminTabGeneral.php:82
1412
- msgctxt "(Admin)"
1413
- msgid "Email Setting"
1414
- msgstr "E-Mail-Einstellung"
1415
-
1416
- #: AdminTabGeneral.php:104
1417
- msgctxt "(Admin)"
1418
- msgid "Acceptance Popup Setting"
1419
- msgstr "Akzeptanz-Popup-Einstellung"
1420
-
1421
- #: AdminTabGeneral.php:109
1422
- msgctxt "(Admin)"
1423
- msgid "Popup Position"
1424
- msgstr "Popup-Position"
1425
-
1426
- #: AdminTabGeneral.php:116
1427
- msgctxt "(Admin)"
1428
- msgid "Popup theme"
1429
- msgstr "Popup-Thema"
1430
-
1431
- #: AdminTabGeneral.php:123
1432
- msgctxt "(Admin)"
1433
- msgid "Cookie Acceptance Background Color"
1434
- msgstr "Cookie-Akzeptanz-Hintergrundfarbe"
1435
-
1436
- #: AdminTabGeneral.php:130
1437
- msgctxt "(Admin)"
1438
- msgid "Cookie Acceptance Text Color"
1439
- msgstr "Cookie Akzeptanz Textfarbe"
1440
-
1441
- #: AdminTabGeneral.php:137
1442
- msgctxt "(Admin)"
1443
- msgid "Cookie Acceptance Button Backgroung Color"
1444
- msgstr "Cookie Akzeptanz Button Backgroung Farbe"
1445
-
1446
- #: AdminTabGeneral.php:144
1447
- msgctxt "(Admin)"
1448
- msgid "Cookie Acceptance Button Color"
1449
- msgstr "Cookie-Akzeptanz-Schaltfläche Farbe"
1450
-
1451
- #: AdminTabGeneral.php:151
1452
- msgctxt "(Admin)"
1453
- msgid "Cookie Acceptance Border Color"
1454
- msgstr "Akzeptanzgrenze für Cookies"
1455
-
1456
- #: AdminTabGeneral.php:67
1457
- msgctxt "(Admin)"
1458
- msgid "Enable Cookie Acceptance Popup"
1459
- msgstr "Aktiviere das Cookie-Akzeptanz-Popup"
1460
-
1461
- #: AdminTabGeneral.php:73
1462
- msgctxt "(Admin)"
1463
- msgid "Cookie Acceptance Popup Content"
1464
- msgstr "Cookie-Akzeptanz-Popup-Inhalt"
1465
-
1466
- #: description-position-action.php
1467
- msgctxt "(Admin)"
1468
- msgid "Select position of the Popup"
1469
- msgstr "Wähle die Position des Popups"
1470
-
1471
- #: description-theme-action.php
1472
- msgctxt "(Admin)"
1473
- msgid "Select theme of the Popup"
1474
- msgstr "Wähle das Thema des Popups"
1475
-
1476
- #: description-theme-action.php:69
1477
- msgctxt "(Admin)"
1478
- msgid "Disable Comment Checkbox"
1479
- msgstr "Kommentar deaktivieren Kontrollkästchen"
1480
-
1481
- #: description-theme-action.php:76
1482
- msgctxt "(Admin)"
1483
- msgid "Disable Register Form Checkbox"
1484
- msgstr "Deaktivieren Sie die Registrierungsformular-Checkbox"
1485
-
1486
- #: description-theme-action.php:312
1487
- msgctxt "(Admin)"
1488
- msgid "Disable Checkbox For Comments"
1489
- msgstr "Deaktiviere Kontrollkästchen für Kommentare"
1490
-
1491
- #: AdminTabGeneral.php:319
1492
- msgctxt "(Admin)"
1493
- msgid "Disable Checkbox For Register Form"
1494
- msgstr "Kontrollkästchen für Registrierungsformular deaktivieren"
1495
-
1496
- #: views/privacy-tools/form-identify.php:15
1497
- msgid "Please identify yourself via e-mail"
1498
- msgstr "Bitte identifiziere Dich per E-Mail"
1499
-
1500
- #: advanced-integration\header.php:2
1501
- msgctxt "(Admin)"
1502
- msgid "This page allows you to advance integration with ClassiDocs™"
1503
- msgstr ""
1504
- "Auf dieser Seite kannst Du die Integration mit ClassiDocs ™ vorantreiben"
1505
-
1506
- #: AdminTabAdvancedIntegration.php:97
1507
- msgctxt "(Admin)"
1508
- msgid "ClassiDocs Password"
1509
- msgstr "ClassiDocs Passwort"
1510
-
1511
- #: AdminTabAdvancedIntegration.php:88
1512
- msgctxt "(Admin)"
1513
- msgid "ClassiDocs Username"
1514
- msgstr "ClassiDocs Benutzername"
1515
-
1516
- #: AdminTabAdvancedIntegration.php:79
1517
- msgctxt "(Admin)"
1518
- msgid "ClassiDocs URL"
1519
- msgstr "ClassiDocs URL"
1520
-
1521
- #: AdminTabAdvancedIntegration.php:69
1522
- msgctxt "(Admin)"
1523
- msgid "Enable Response with related queries?"
1524
- msgstr "Antwort mit verwandten Anfragen aktivieren?"
1525
-
1526
- #: AdminTabAdvancedIntegration.php:60
1527
- msgctxt "(Admin)"
1528
- msgid "Submit SAR request details?"
1529
- msgstr "SAR-Anfragedetails einreichen?"
1530
-
1531
- #: AdminTabAdvancedIntegration.php:51
1532
- msgctxt "(Admin)"
1533
- msgid "Integrate with ClassiDocs?"
1534
- msgstr "Mit ClassiDocs integrieren?"
1535
-
1536
- #: AdminTabAdvancedIntegration.php:43
1537
- msgctxt "(Admin)"
1538
- msgid "Integration Settings"
1539
- msgstr "Integrationseinstellungen"
1540
-
1541
- #: AdminTabAdvancedIntegration.php:35
1542
- msgctxt "(Admin)"
1543
- msgid "Advanced Integration"
1544
- msgstr "Erweiterte Integration"
1545
-
1546
- #: checkbox-field.php:10
1547
- msgctxt "(Admin)"
1548
- msgid "Sign up for free here"
1549
- msgstr "Melde Dich hier kostenlos an"
1550
-
1551
- #: checkbox-field.php:10
1552
- msgctxt "(Admin)"
1553
- msgid "Click Here"
1554
- msgstr "Klick hier"
1555
-
1556
- #: ClassiDocs-results.php:12
1557
- msgid "Previous Results"
1558
- msgstr "Vorherige Ergebnisse"
1559
-
1560
- #: ClassiDocs-results.php:13
1561
- msgid "Current Results"
1562
- msgstr "Aktuelle Ergebnisse"
1563
-
1564
- #: ClassiDocs-results.php:19
1565
- msgid "Name"
1566
- msgstr "Name"
1567
-
1568
- #: ClassiDocs-results.php:22
1569
- msgid "Path"
1570
- msgstr "Pfad"
1571
-
1572
- #: ClassiDocs-results.php:34
1573
- msgid "Workstation"
1574
- msgstr "Arbeitsplatz"
1575
-
1576
- #: ClassiDocs-results.php:37
1577
- msgid "Last Scan"
1578
- msgstr "Letzter Scan"
1579
-
1580
- #: ClassiDocs-results.php:62
1581
- msgid "No ClassiDocs data found!"
1582
- msgstr "Keine ClassiDocs Daten gefunden!"
1583
-
1584
- #: enable_popup_header.php:5
1585
- msgid "Cookies used on the website!"
1586
- msgstr "Auf der Website verwendete Cookies!"
1587
-
1588
- #: enable_popup_header.php:9
1589
- msgid "Leave blank if don't want header to get display."
1590
- msgstr "Lassen Sie das Feld leer, wenn der Header nicht angezeigt werden soll."
1591
-
1592
- #: AdminTabCookiePopup.php:39
1593
- msgctxt "(Admin)"
1594
- msgid "Cookie Popup Settings"
1595
- msgstr "Cookie-Popup-Einstellungen"
1596
-
1597
- #: AdminTabCookiePopup.php:17
1598
- msgctxt "(Admin)"
1599
- msgid "Cookie Popup"
1600
- msgstr "Cookie-Popup"
1601
-
1602
- #: AdminTabCookiePopup.php:49
1603
- msgctxt "(Admin)"
1604
- msgid "Enable One Time Cookie Acceptance Popup"
1605
- msgstr "Einmalige Cookie-Akzeptanz-Popup-Funktion aktivieren"
1606
-
1607
- #: consent.php:79
1608
- msgctxt "(Admin)"
1609
- msgid "Show Consent types"
1610
- msgstr "Zustimmungstypen anzeigen"
1611
-
1612
- msgctxt "(Admin)"
1613
- msgid "Hide consent types"
1614
- msgstr "Zustimmungstypen ausblenden"
1615
-
1616
- msgctxt "(Admin)"
1617
- msgid "Do you want form to be GDPR compliance."
1618
- msgstr "Möchten Sie, dass das Formular der DSGVO entspricht?"
1619
-
1620
- msgctxt "(Admin)"
1621
- msgid ""
1622
- "You have installed flamingo, To make this GDPR compliance in individual "
1623
- "contact form's privacy tab check the checkbox for include data to be search "
1624
- "on Privacy tool."
1625
- msgstr ""
1626
- "Sie haben flamingo installiert. Aktivieren Sie das Kontrollkästchen \"Daten "
1627
- "einschließen\", um die Datenschutzbestimmungen für die DSDPR auf der "
1628
- "Registerkarte \"Datenschutz\" des einzelnen Kontaktformulars zu aktivieren."
1629
-
1630
- msgctxt "(Admin)"
1631
- msgid "Enable Policy Link On Popup"
1632
- msgstr "Aktivieren Sie die Richtlinienverknüpfung im Popup"
1633
-
1634
- msgctxt "(Admin)"
1635
- msgid "Enable Privacy policy on Popup"
1636
- msgstr "Aktivieren Sie die Datenschutzbestimmungen für Popup"
1637
-
1638
- #: AdminTabCookiePopup.php
1639
- msgctxt "(Admin)"
1640
- msgid "Cookie Acceptance Popup header"
1641
- msgstr "Cookie-Akzeptanz-Popup-Header"
1642
-
1643
- #: views\admin\privacy-manager\header.php:2
1644
- msgctxt "(Admin)"
1645
- msgid "Data443™ Privacy Manager"
1646
- msgstr "Data443™ Privacy Manager"
1647
-
1648
- #: views\admin\privacy-manager\header.php:3
1649
- msgctxt "(Admin)"
1650
- msgid ""
1651
- "ensures privacy regulation compliance, such as GDPR, CCPA, LGPD, etc, at the "
1652
- "next level."
1653
- msgstr ""
1654
- "sorgt für die Einhaltung der Datenschutzbestimmungen wie GDPR, CCPA, LGPD "
1655
- "usw. auf der nächsten Ebene."
1656
-
1657
- #: views\admin\privacy-manager\header.php:4
1658
- msgctxt "(Admin)"
1659
- msgid ""
1660
- "In addition to DSAR tracking and management, Privacy Manager adds the "
1661
- "following features to your data protection compliance resources:"
1662
- msgstr ""
1663
- "Zusätzlich zu DSAR-Nachverfolgung und -Verwaltung fügt Privacy Manager Ihren "
1664
- "Ressourcen zur Einhaltung des Datenschutzes die folgenden Funktionen hinzu:"
1665
-
1666
- #: views\admin\privacy-manager\header.php:6
1667
- msgctxt "(Admin)"
1668
- msgid "Log and store ICO breach notifications"
1669
- msgstr "ICO-Verstoßbenachrichtigungen protokollieren und speichern"
1670
-
1671
- #: views\admin\privacy-manager\header.php:7
1672
- msgctxt "(Admin)"
1673
- msgid "Keeps full record of all requests, ticketed and timeline"
1674
- msgstr "Zeichnet alle Anfragen auf, Ticket und Timeline"
1675
-
1676
- #: views\admin\privacy-manager\header.php:8
1677
- msgctxt "(Admin)"
1678
- msgid "Gap analysis and breach notifications"
1679
- msgstr "Lückenanalyse und Verstoßbenachrichtigungen"
1680
-
1681
- #: views\admin\privacy-manager\header.php:9
1682
- msgctxt "(Admin)"
1683
- msgid "In depth activity log with all GDPR, CCPA, etc actions evidenced"
1684
- msgstr "In depth activity log with all GDPR, CCPA, etc actions evidenced"
1685
-
1686
- #: views\admin\privacy-manager\header.php:10
1687
- msgctxt "(Admin)"
1688
- msgid "Highlights areas of concern and where you need to focus"
1689
- msgstr "Hebt die Problembereiche hervor, auf die Sie sich konzentrieren müssen"
1690
-
1691
- #: views\admin\privacy-manager\header.php:11
1692
- msgctxt "(Admin)"
1693
- msgid ""
1694
- "eLearning platform with access for all staff to ensure privacy regulation "
1695
- "compliance and obligations"
1696
- msgstr ""
1697
- "E-Learning-Plattform mit Zugang für alle Mitarbeiter, um die Einhaltung der "
1698
- "Datenschutzbestimmungen und -pflichten sicherzustellen"
1699
-
1700
- #: views\admin\privacy-manager\header.php:12
1701
- msgctxt "(Admin)"
1702
- msgid "Tracks who accesses the system, when and why"
1703
- msgstr "Erfasst, wer wann und warum auf das System zugreift"
1704
-
1705
- #: views\admin\privacy-manager\header.php:15
1706
- msgctxt "(Admin)"
1707
- msgid ""
1708
- "Our system enables your business to demonstrate its obligations in "
1709
- "protecting your customer data, show understanding of your business "
1710
- "activities and deliver eLearning and online tests to employees, ensuring "
1711
- "everyone in your company understands your privacy compliance rules and best "
1712
- "practices to operate."
1713
- msgstr ""
1714
- "Unser System ermöglicht es Ihrem Unternehmen, seine Verpflichtungen "
1715
- "hinsichtlich des Schutzes Ihrer Kundendaten zu demonstrieren, Verständnis "
1716
- "für Ihre Geschäftsaktivitäten zu vermitteln und Mitarbeitern e-Learning und "
1717
- "Online-Tests zur Verfügung zu stellen. So stellen Sie sicher, dass jeder in "
1718
- "Ihrem Unternehmen die Regeln zum Schutz Ihrer Privatsphäre und die bewährten "
1719
- "Vorgehensweisen kennt."
1720
-
1721
- #: views\admin\privacy-manager\header.php:16
1722
- msgctxt "(Admin)"
1723
- msgid ""
1724
- "No matter where you are on your data privacy journey, the ultimate goal is "
1725
- "compliance."
1726
- msgstr ""
1727
- "Unabhängig davon, wo Sie sich auf Ihrer Datenschutzreise befinden, ist das "
1728
- "ultimative Ziel Compliance."
1729
-
1730
- #: views\admin\privacy-manager\header.php:16
1731
- msgctxt "(Admin)"
1732
- msgid "enables your organization to comply with all privacy regulations."
1733
- msgstr ""
1734
- "ermöglicht Ihrem Unternehmen die Einhaltung aller Datenschutzbestimmungen."
1735
-
1736
- #: views\admin\support\contents.php:49
1737
- msgctxt "(Admin)"
1738
- msgid ""
1739
- "Found a bug or have a question about the plugin? Submit a support request "
1740
- "and we’ll get right on it!"
1741
- msgstr ""
1742
- "Fehler gefunden oder Fragen zum Plugin? Senden Sie eine Support-Anfrage und "
1743
- "wir werden sofort darauf reagieren!"
1744
-
1745
- #: views\admin\support\contents.php:58
1746
- msgctxt "(Admin)"
1747
- msgid "Need assistance in making your site compliant? We can help!"
1748
- msgstr ""
1749
- "Benötigen Sie Hilfe, um Ihre Website kompatibel zu machen? Wir können helfen!"
1750
-
1751
- #: views\admin\general\woo-compatibility.php:9
1752
- msgctxt "(Admin)"
1753
- msgid "Enable WooCommerce data on GDPR tool"
1754
- msgstr "Aktivieren Sie WooCommerce-Daten für das DSDPR-Tool"
1755
-
1756
- #: src\Admin\AdminTabGeneral.php:241
1757
- msgctxt "(Admin)"
1758
- msgid "Enable WooCommerce Compatibility"
1759
- msgstr "Aktivieren Sie die WooCommerce-Kompatibilität"
1760
-
1761
- #: views\modules\wordpress-user\dashboard\data-page\form-delete.php:19
1762
- msgid "Note Regarding Order:"
1763
- msgstr "Hinweis zur Bestellung:"
1764
-
1765
- #: views\modules\wordpress-user\dashboard\data-page\form-delete.php:20
1766
- msgid ""
1767
- "Your order with status Processing will not get deleted until status change."
1768
- msgstr ""
1769
- "Ihre Bestellung mit Statusverarbeitung wird erst gelöscht, wenn sich der "
1770
- "Status ändert."
1771
-
1772
- #: views\modules\wordpress-user\dashboard\data-page\form-delete.php:21
1773
- msgid "Your order with status Completed will get anonymize."
1774
- msgstr "Ihre Bestellung mit dem Status Abgeschlossen wird anonymisiert."
1775
-
1776
- #: views\modules\wordpress-user\dashboard\data-page\form-delete.php:22
1777
- msgid "If you delete Completed order you can't apply for refund."
1778
- msgstr ""
1779
- "Wenn Sie die abgeschlossene Bestellung löschen, können Sie keine Erstattung "
1780
- "beantragen."
1781
-
1782
- #: views\admin\general\woo-compatibility.php:12
1783
- msgctxt "(Admin)"
1784
- msgid "Will work for WooCommerce Version 3.4.0 or later."
1785
- msgstr "Funktioniert für WooCommerce Version 3.4.0 oder höher."
1786
-
1787
- #: views\admin\general\edd-compatibility.php:9
1788
- msgctxt "(Admin)"
1789
- msgid "Enable EDD data on GDPR tool."
1790
- msgstr "Aktivieren Sie EDD-Daten für das DSGVO-Tool."
1791
-
1792
- #: views\admin\general\edd-compatibility.php:12
1793
- msgctxt "(Admin)"
1794
- msgid "Will work for EDD Version 2.0.0 or later."
1795
- msgstr "Funktioniert für EDD Version 2.0.0 oder höher."
1796
-
1797
- #: src\Admin\AdminTabGeneral.php:262
1798
- msgctxt "(Admin)"
1799
- msgid "Enable EDD Compatibility"
1800
- msgstr "Aktivieren Sie die EDD-Kompatibilität"
1801
-
1802
- #: gdpr-framework.php:298
1803
- msgid "Cookie Policy"
1804
- msgstr "Cookie-Richtlinie"
1805
-
1806
- #: ConsentManager.php:96
1807
- msgctxt "(Admin)"
1808
- msgid ""
1809
- "This consent is visible by default on woocommerce checkout page. If someone "
1810
- "wishes to withdraw it, they should simply request to delete all their data."
1811
- msgstr ""
1812
- "Diese Einwilligung wird standardmäßig auf der Checkout-Seite von woocommerce "
1813
- "angezeigt. Wenn jemand es widerrufen möchte, sollte er einfach die Löschung "
1814
- "aller seiner Daten anfordern."
1815
-
1816
- #: ConsentManager.php:96
1817
- msgctxt "(Admin)"
1818
- msgid "Woocommerce Policy Consent"
1819
- msgstr "Zustimmung zur Woocommerce-Richtlinie"
1820
-
1821
- #: WoocommerceGdpr.php:150
1822
- msgid "Please acknowledge the Privacy Policy"
1823
- msgstr "Bitte bestätigen Sie die Datenschutzerklärung"
1824
-
1825
- #: woo-compatibility.php:9
1826
- msgctxt "(Admin)"
1827
- msgid "Enable WooCommerce data on GDPR tool."
1828
- msgstr "Aktivieren Sie WooCommerce-Daten im GDPR-Tool."
1829
-
1830
- #: views\admin\general\enable-popup.php:12
1831
- msgctxt "(Admin)"
1832
- msgid ""
1833
- "<b>Note:</b> Need to add custom content <b>gdpr_cookie_consent</b> its "
1834
- "accepted on popup accept button."
1835
- msgstr ""
1836
- "<b> Hinweis: </ b> Sie müssen benutzerdefinierten Inhalt hinzufügen. <b> "
1837
- "gdpr_cookie_consent </ b> Wird über die Schaltfläche zum Akzeptieren des "
1838
- "Popups akzeptiert."
1839
-
1840
- #: AdminTabCookiePopup.php:105
1841
- msgctxt "(Admin)"
1842
- msgid "Popup Dismiss Text"
1843
- msgstr "Popup Text schließen"
1844
-
1845
- #: AdminTabCookiePopup.php:98
1846
- msgctxt "(Admin)"
1847
- msgid "Popup Allow Text"
1848
- msgstr "Popup Text zulassen"
1849
-
1850
- #: AdminTabGeneral.php:241
1851
- msgctxt "(Admin)"
1852
- msgid "Woocommerce Integration"
1853
- msgstr "Woocommerce-Integration"
1854
-
1855
- #: AdminTabGeneral.php:259
1856
- msgctxt "(Admin)"
1857
- msgid "Easy Digital Download Integration"
1858
- msgstr "Einfache Integration digitaler Downloads"
1859
-
1860
- #: has-dpo.php:11
1861
- msgctxt "(Admin)"
1862
- msgid "I have appointed a Data Protection Officer (DPO)"
1863
- msgstr "Ich habe einen Datenschutzbeauftragten ernannt"
1864
-
1865
- #: views/admin/general/stylesheet.php:9
1866
- msgctxt "(Admin)"
1867
- msgid "Enable basic styling for Privacy Tools page."
1868
- msgstr ""
1869
- "Aktivieren Sie das grundlegende Styling für die Seite \"Datenschutz-Tools\"."
1870
-
1871
- #: AdminTabPrivacyPolicy.php:204
1872
- msgctxt "(Admin)"
1873
- msgid "Delete Text"
1874
- msgstr "Text löschen"
1875
-
1876
- #: consent.php:80
1877
- msgctxt "(Admin)"
1878
- msgid "Add consent type"
1879
- msgstr "Zustimmungstyp hinzufügen"
1880
-
1881
- #: AdminTabGeneral.php:127
1882
- msgctxt "(Admin)"
1883
- msgid "Privacy Policy Custom URL"
1884
- msgstr "Datenschutzrichtlinie Benutzerdefinierte URL"
1885
-
1886
- #: custom-policy-url.php:6
1887
- msgctxt "(Admin)"
1888
- msgid "Leave blank if privacy policy page already selected"
1889
- msgstr ""
1890
- "Lassen Sie dieses Feld leer, wenn die Datenschutzrichtlinie bereits "
1891
- "ausgewählt ist"
1892
-
1893
- #: views/admin/general/description-delete-action.php:2
1894
- msgctxt "(Admin)"
1895
- msgid "What should happen if a data subject requests deleting their data."
1896
- msgstr ""
1897
- "Was soll passieren, wenn eine betroffene Person das Löschen ihrer Daten "
1898
- "anfordert?"
1899
-
1900
- #: views/admin/general/description-export-action.php:2
1901
- msgctxt "(Admin)"
1902
- msgid "Optional. Select the page which contains your Terms & Conditions"
1903
- msgstr ""
1904
- "Wahlweise. Wählen Sie die Seite aus, die Ihre Allgemeinen "
1905
- "Geschäftsbedingungen enthält"
1906
-
1907
- #: views/admin/general/description-terms-page.php:2
1908
- msgctxt "(Admin)"
1909
- msgid ""
1910
- "What should happen if a data subject requests viewing or exporting their "
1911
- "data."
1912
- msgstr ""
1913
- "Was soll passieren, wenn eine betroffene Person das Anzeigen oder "
1914
- "Exportieren ihrer Daten anfordert?"
1915
-
1916
- #: woo-disable_checkbox.php:9
1917
- msgctxt "(Admin)"
1918
- msgid "Disable WooCommerce Privacy Checkbox"
1919
- msgstr "Deaktivieren Sie das Kontrollkästchen für den WooCommerce-Datenschutz"
1920
-
1921
- #: AdminTabCookiePopup.php:133
1922
- msgctxt "(Admin)"
1923
- msgid "Popup Learn More Text"
1924
- msgstr "Popup Weitere Informationen Text"
1925
-
1926
- #: AdminTabGeneral.php:262
1927
- msgctxt "(Admin)"
1928
- msgid "Disable WooCommerce Register Privacy Checkbox"
1929
- msgstr "Deaktivieren Sie das Kontrollkästchen WooCommerce Register Privacy"
1930
-
1931
- #: AdminTabCookiePopup.php:121
1932
- msgctxt "(Admin)"
1933
- msgid "Cookie Acceptance link target"
1934
- msgstr "Cookie Akzeptanz Link Ziel"
1935
-
1936
- #: popup_link_target.php:3
1937
- msgctxt "(Admin)"
1938
- msgid "Next Tab"
1939
- msgstr "Nächstes Tab"
1940
-
1941
- #: popup_link_target.php:5
1942
- msgctxt "(Admin)"
1943
- msgid "Self"
1944
- msgstr "selbst"
1
+ # SOME DESCRIPTIVE TITLE.
2
+ # Copyright (C) YEAR Codelight
3
+ # This file is distributed under the same license as the The GDPR Framework package.
4
+ # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5
+ #
6
+ msgid ""
7
+ msgstr ""
8
+ "Project-Id-Version: The GDPR Framework 1.0\n"
9
+ "Report-Msgid-Bugs-To: gdpr@codelight.eu\n"
10
+ "POT-Creation-Date: 2018-04-16 10:50+0000\n"
11
+ "PO-Revision-Date: 2019-09-19 12:38+0530\n"
12
+ "Last-Translator: Stefan Butz <webmaster@die-blaue-eisdiele.de>\n"
13
+ "MIME-Version: 1.0\n"
14
+ "Content-Type: text/plain; charset=UTF-8\n"
15
+ "Content-Transfer-Encoding: 8bit\n"
16
+ "X-Generator: Poedit 1.5.7\n"
17
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
+ "Language: de-DE\n"
19
+ "Language-Team: Deutsch\n"
20
+
21
+ #: gdpr-framework.php:26
22
+ msgctxt "(Admin)"
23
+ msgid "WordPress GDPR &rsaquo; Error"
24
+ msgstr "WordPress GDPR &rsaquo; Fehler"
25
+
26
+ #: gdpr-framework.php:35
27
+ msgctxt "(Admin)"
28
+ msgid "Invalid PHP version"
29
+ msgstr "Ungültige PHP-Version"
30
+
31
+ #: gdpr-framework.php:35
32
+ msgctxt "(Admin)"
33
+ msgid "You must be using PHP 5.6.33 or greater."
34
+ msgstr "Du musst PHP 5.6.33 oder höher verwenden."
35
+
36
+ #: gdpr-framework.php:42
37
+ msgctxt "(Admin)"
38
+ msgid "Invalid WordPress version"
39
+ msgstr "Ungültige WordPress-Version"
40
+
41
+ #: gdpr-framework.php:42
42
+ msgctxt "(Admin)"
43
+ msgid "You must be using WordPress 4.3.0 or greater."
44
+ msgstr "Du musst WordPress 4.3.0 oder höher verwenden."
45
+
46
+ #: gdpr-framework.php:52
47
+ msgctxt "(Admin)"
48
+ msgid ""
49
+ "You appear to be running a development version of GDPR. You must run "
50
+ "<code>composer install</code> from the plugin directory."
51
+ msgstr ""
52
+ "Es scheint, dass Du eine Entwicklungsversion des GDPR Framework Plugins "
53
+ "verwendest. Du musst im Pluginverzeichnis <code>composer install</code> "
54
+ "laufen lassen."
55
+
56
+ #: gdpr-framework.php:53
57
+ msgctxt "(Admin)"
58
+ msgid "Autoloader not found."
59
+ msgstr "Autoloader nicht gefunden."
60
+
61
+ #: gdpr-framework.php:115
62
+ msgctxt "(Admin)"
63
+ msgid "Anonymous"
64
+ msgstr "Anonym"
65
+
66
+ #: src/Admin/AdminTab.php:115
67
+ msgctxt "(Admin)"
68
+ msgid "Save"
69
+ msgstr "Speichern"
70
+
71
+ #: src/Admin/AdminTab.php:151
72
+ msgctxt "(Admin)"
73
+ msgid "Policy generated!"
74
+ msgstr "Richtlinie erstellt!"
75
+
76
+ #: src/Admin/AdminTabGeneral.php:11
77
+ msgctxt "(Admin)"
78
+ msgid "General"
79
+ msgstr "Allgemein"
80
+
81
+ #: src/Admin/AdminTabGeneral.php:38
82
+ msgctxt "(Admin)"
83
+ msgid "General Settings"
84
+ msgstr "Allgemeine Einstellungen"
85
+
86
+ #: src/Admin/AdminTabGeneral.php:43
87
+ msgctxt "(Admin)"
88
+ msgid "Enable Privacy Tools"
89
+ msgstr "Datenschutz-Tools aktivieren"
90
+
91
+ #: src/Admin/AdminTabGeneral.php:53
92
+ msgctxt "(Admin)"
93
+ msgid "Pages"
94
+ msgstr "Seiten"
95
+
96
+ #: src/Admin/AdminTabGeneral.php:58 src/Admin/WordpressAdmin.php:151
97
+ msgctxt "(Admin)"
98
+ msgid "Privacy Tools Page"
99
+ msgstr "Seite der Datenschutz-Tools"
100
+
101
+ #: src/Admin/AdminTabGeneral.php:65 src/Admin/WordpressAdmin.php:147
102
+ msgctxt "(Admin)"
103
+ msgid "Privacy Policy Page"
104
+ msgstr "Seite der Datenschutzerklärung"
105
+
106
+ #: src/Admin/AdminTabGeneral.php:72
107
+ msgctxt "(Admin)"
108
+ msgid "Terms & Conditions Page"
109
+ msgstr "Seite der Allgemeinen Geschäftsbedingungen"
110
+
111
+ #: src/Admin/AdminTabGeneral.php:82
112
+ msgctxt "(Admin)"
113
+ msgid "View & Export Data"
114
+ msgstr "Daten ansehen & exportieren"
115
+
116
+ #: src/Admin/AdminTabGeneral.php:87
117
+ msgctxt "(Admin)"
118
+ msgid "Export action"
119
+ msgstr "Export-Aktion"
120
+
121
+ #: src/Admin/AdminTabGeneral.php:94 src/Admin/AdminTabGeneral.php:133
122
+ msgctxt "(Admin)"
123
+ msgid "Email to notify"
124
+ msgstr "E-Mail für die Benachrichtigung"
125
+
126
+ #: src/Admin/AdminTabGeneral.php:105
127
+ msgctxt "(Admin)"
128
+ msgid "Delete & Anonymize Data"
129
+ msgstr "Daten löschen & anonymisieren"
130
+
131
+ #: src/Admin/AdminTabGeneral.php:110
132
+ msgctxt "(Admin)"
133
+ msgid "Delete action"
134
+ msgstr "Lösch-Aktion"
135
+
136
+ #: src/Admin/AdminTabGeneral.php:117
137
+ msgctxt "(Admin)"
138
+ msgid "Delete or reassign content?"
139
+ msgstr "Inhalt löschen oder neu zuordnen?"
140
+
141
+ #: src/Admin/AdminTabGeneral.php:125
142
+ msgctxt "(Admin)"
143
+ msgid "Reassign content to"
144
+ msgstr "Inhalt zuordnen an"
145
+
146
+ #: src/Admin/AdminTabGeneral.php:145
147
+ msgctxt "(Admin)"
148
+ msgid "Styling"
149
+ msgstr "Gestaltung"
150
+
151
+ #: src/Admin/AdminTabGeneral.php:150
152
+ msgctxt "(Admin)"
153
+ msgid "Enable basic styling on Privacy Tools page"
154
+ msgstr "Grundlegende Gestaltung auf der Seite der Datenschutz-Tools aktivieren"
155
+
156
+ #: src/Admin/AdminTabGeneral.php:162
157
+ msgctxt "(Admin)"
158
+ msgid "Compatibility"
159
+ msgstr "Kompatibilität"
160
+
161
+ #: src/Admin/AdminTabGeneral.php:167
162
+ msgctxt "(Admin)"
163
+ msgid "Enable automatic theme compatibility"
164
+ msgstr "Aktiviere die automatische Theme-Kompatibilität"
165
+
166
+ #: src/Admin/AdminTabGeneral.php:184 src/Admin/AdminTabGeneral.php:200
167
+ #: src/Admin/AdminTabGeneral.php:213 src/Admin/AdminTabGeneral.php:252
168
+ #: views/installer/steps/configuration-settings.php:62
169
+ msgctxt "(Admin)"
170
+ msgid "&mdash; Select &mdash;"
171
+ msgstr "&mdash; Auswählen &mdash;"
172
+
173
+ #: src/Admin/WordpressAdmin.php:65
174
+ msgctxt "(Admin)"
175
+ msgid "Privacy & GDPR Settings"
176
+ msgstr "Datenschutz & DSGVO Einstellungen"
177
+
178
+ #: src/Admin/WordpressAdmin.php:66
179
+ msgctxt "(Admin)"
180
+ msgid "Privacy"
181
+ msgstr "Datenschutz"
182
+
183
+ #: src/Components/Consent/AdminTabConsent.php:30
184
+ #: src/Components/Consent/AdminTabConsent.php:49
185
+ msgctxt "(Admin)"
186
+ msgid "Consent"
187
+ msgstr "Zustimmung"
188
+
189
+ #: src/Components/Consent/AdminTabConsent.php:157
190
+ msgctxt "(Admin)"
191
+ msgid "Consent slug is a required field!"
192
+ msgstr "Der Pfad zur Zustimming ist ein Pflichtfeld!"
193
+
194
+ #: src/Components/Consent/AdminTabConsent.php:162
195
+ msgctxt "(Admin)"
196
+ msgid ""
197
+ "You may only use alphanumeric characters, dash and underscore in the consent "
198
+ "slug field."
199
+ msgstr ""
200
+ "Du darfst nur alphanumerische Zeichen, Bindestriche und Unterstriche im Feld "
201
+ "für den Zustimmungs-Pfad verwenden."
202
+
203
+ #: src/Components/Consent/AdminTabConsent.php:167
204
+ msgctxt "(Admin)"
205
+ msgid "Consent title is a required field!"
206
+ msgstr "Titel der Zustimmungsseite wird benötigt!"
207
+
208
+ #: src/Components/Consent/ConsentManager.php:46
209
+ #: views/modules/contact-form-7/content-privacy.php:2
210
+ #: views/modules/wordpress-comments/terms-checkbox.php:14
211
+ #: views/modules/wordpress-user/registration-terms-checkbox.php:15
212
+ #, php-format
213
+ msgid "I accept the %sPrivacy Policy%s"
214
+ msgstr "Ich stimme der %sDatenschutzerklärung%s zu"
215
+
216
+ #: src/Components/Consent/ConsentManager.php:50
217
+ #: src/Components/Consent/ConsentManager.php:69
218
+ msgctxt "(Admin)"
219
+ msgid ""
220
+ "This consent is not visible by default. If someone wishes to withdraw it, "
221
+ "they should simply request to delete all their data."
222
+ msgstr ""
223
+ "Diese Zustimmung ist per Voreinstellung nicht sichtbar. Wenn jemand sie "
224
+ "widerrufen möchte, sollte er einfach die Löschung aller seiner Daten "
225
+ "verlangen."
226
+
227
+ #: src/Components/Consent/ConsentManager.php:65
228
+ #, php-format
229
+ msgid "I accept the %sTerms & Conditions%s"
230
+ msgstr "Ich akzeptiere die %sAllgemeinen Geschäftsbedingungen%s"
231
+
232
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:19
233
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:61
234
+ #: views/admin/privacy-policy/generated.php:1 views/installer/header.php:41
235
+ msgctxt "(Admin)"
236
+ msgid "Privacy Policy"
237
+ msgstr "Datenschutzerklärung"
238
+
239
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:70
240
+ msgctxt "(Admin)"
241
+ msgid "Company information"
242
+ msgstr "Firmen-Informationen"
243
+
244
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:75
245
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:209
246
+ msgctxt "(Admin)"
247
+ msgid "Company Name"
248
+ msgstr "Name der Firma"
249
+
250
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:82
251
+ msgctxt "(Admin)"
252
+ msgid "Company Email"
253
+ msgstr "E-Mail-Adresse der Firma"
254
+
255
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:89
256
+ msgctxt "(Admin)"
257
+ msgid "Company Location"
258
+ msgstr "Standort der Firma"
259
+
260
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:105
261
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:245
262
+ msgctxt "(Admin)"
263
+ msgid "Representative Contact Name"
264
+ msgstr "Name des Ansprechpartners"
265
+
266
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:112
267
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:252
268
+ msgctxt "(Admin)"
269
+ msgid "Representative Contact Email"
270
+ msgstr "E-Mail-Adresse des Ansprechpartners"
271
+
272
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:119
273
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:259
274
+ msgctxt "(Admin)"
275
+ msgid "Representative Contact Phone"
276
+ msgstr "Telefonnummer des Ansprechpartners"
277
+
278
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:135
279
+ msgctxt "(Admin)"
280
+ msgid "Data Protection Authority"
281
+ msgstr "Datenschutzbehörde"
282
+
283
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:141
284
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:286
285
+ msgctxt "(Admin)"
286
+ msgid "Data Protection Authority Website"
287
+ msgstr "Website der Datenschutzbehörde"
288
+
289
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:148
290
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:293
291
+ msgctxt "(Admin)"
292
+ msgid "Data Protection Authority Email"
293
+ msgstr "E-Mail-Adresse der Datenschutzbehörde"
294
+
295
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:155
296
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:300
297
+ msgctxt "(Admin)"
298
+ msgid "Data Protection Authority Phone"
299
+ msgstr "Telefonnummer der Datenschutzbehörde"
300
+
301
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:165
302
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:175
303
+ msgctxt "(Admin)"
304
+ msgid "Data Protection Officer"
305
+ msgstr "Datenschutzbeauftragter"
306
+
307
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:168
308
+ msgctxt "(Admin)"
309
+ msgid "Knowledge base: Do I need to appoint a Data Protection Officer?"
310
+ msgstr "Wissensdatenbank: Muss ich einen Datenschutzbeauftragten ernennen?"
311
+
312
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:182
313
+ msgctxt "(Admin)"
314
+ msgid "Data Protection Officer Name"
315
+ msgstr "Name des Datenschutzbeauftragten"
316
+
317
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:190
318
+ msgctxt "(Admin)"
319
+ msgid "Data Protection Officer Email"
320
+ msgstr "E-Mail-Adresse des Datenschutzbeauftragten"
321
+
322
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:216
323
+ msgctxt "(Admin)"
324
+ msgid "Contact Email"
325
+ msgstr "Kontakt-E-Mail-Adresse"
326
+
327
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:235
328
+ msgctxt "(Admin)"
329
+ msgid "Representative Contact"
330
+ msgstr "Vertretungsberechtigter Kontakt"
331
+
332
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:238
333
+ msgctxt "(Admin)"
334
+ msgid "Knowledge base: Do I need to appoint an EU-based representative?"
335
+ msgstr ""
336
+ "Wissensdatenbank: Muss ich einen Ansprechpartner bennen, der innerhalb der "
337
+ "EU sitzt?"
338
+
339
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:317
340
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:324
341
+ msgctxt "(Admin)"
342
+ msgid "DPO Name"
343
+ msgstr "Behördliche Datenschutzbeauftragte"
344
+
345
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:420
346
+ msgctxt "(Admin)"
347
+ msgid "Save & Generate Policy"
348
+ msgstr "Speichern & Richtlinie erstellen"
349
+
350
+ #: src/Components/PrivacyPolicy/PrivacyPolicy.php:82
351
+ #: src/Installer/Installer.php:271 src/Installer/Steps/PolicySettings.php:199
352
+ #: views/themes/storefront/footer.php:3
353
+ #: views/themes/twentyseventeen/footer.php:3
354
+ #: views/themes/twentysixteen/footer.php:4
355
+ msgid "Privacy Policy"
356
+ msgstr "Datenschutzerklärung"
357
+
358
+ #: src/Components/PrivacyToolsPage/PrivacyToolsPageShortcode.php:19
359
+ msgid "This page is currently disabled."
360
+ msgstr "Diese Seite ist derzeit deaktiviert."
361
+
362
+ #: src/Components/PrivacyToolsPage/PrivacyToolsPageShortcode.php:35
363
+ #: src/Installer/Installer.php:279
364
+ #: src/Installer/Steps/ConfigurationPages.php:55
365
+ #: views/themes/storefront/footer.php:7
366
+ #: views/themes/twentyseventeen/footer.php:7
367
+ #: views/themes/twentysixteen/footer.php:9
368
+ msgid "Privacy Tools"
369
+ msgstr "Datenschutz-Tools"
370
+
371
+ #: src/Components/Support/AdminTabSupport.php:13
372
+ #: src/Components/Support/AdminTabSupport.php:20
373
+ msgctxt "(Admin)"
374
+ msgid "Support"
375
+ msgstr "Support"
376
+
377
+ #: src/Components/WordpressComments/WordpressComments.php:90
378
+ #, php-format
379
+ msgid "%sERROR:%s You need to accept the privacy policy to post a comment."
380
+ msgstr ""
381
+ "%sFEHLER:%s Sie müssen die Datenschutzbestimmungen akzeptieren, um einen "
382
+ "Kommentar posten zu können."
383
+
384
+ #: src/Components/WordpressUser/Controllers/DashboardDataPageController.php:54
385
+ #: views/privacy-tools/notices.php:19
386
+ msgid "We have received your request and will reply within 30 days."
387
+ msgstr ""
388
+ "Wir haben Deine Anfrage erhalten und werden Ihnen innerhalb von 30 Tagen "
389
+ "antworten."
390
+
391
+ #: src/Components/WordpressUser/Controllers/DashboardDataPageController.php:59
392
+ #: views/privacy-tools/notices.php:15
393
+ msgid "Consent withdrawn."
394
+ msgstr "Zustimmung zurückgezogen."
395
+
396
+ #: src/Components/WordpressUser/RegistrationForm.php:42
397
+ msgid "<strong>ERROR</strong>: You must accept the terms and conditions."
398
+ msgstr ""
399
+ "<strong>FEHLER</strong>: Du musst die Allgemeinen Geschäftsbedingungen "
400
+ "akzeptieren."
401
+
402
+ #: src/Components/WordpressUser/WordpressUser.php:63
403
+ #: src/Components/WordpressUser/WordpressUser.php:64
404
+ #: views/modules/wordpress-user/dashboard/data-page/header.php:2
405
+ msgctxt "(Admin)"
406
+ msgid "Privacy Tools"
407
+ msgstr "Datenschutz-Tools"
408
+
409
+ #: src/DataSubject/AdminTabDataSubject.php:27
410
+ #: src/DataSubject/AdminTabDataSubject.php:41
411
+ msgctxt "(Admin)"
412
+ msgid "Data Subjects"
413
+ msgstr "Betroffene Personen"
414
+
415
+ #: src/DataSubject/DataRepository.php:143
416
+ msgid "Data exported"
417
+ msgstr "Daten exportiert"
418
+
419
+ #: src/DataSubject/DataRepository.php:158
420
+ msgid "Data export request"
421
+ msgstr "Anfrage eines Daten-Exports"
422
+
423
+ #: src/DataSubject/DataRepository.php:171
424
+ msgid "Data removed"
425
+ msgstr "Daten gelöscht"
426
+
427
+ #: src/DataSubject/DataRepository.php:186
428
+ msgid "Data removal request"
429
+ msgstr "Anfrage einer Datenlöschung"
430
+
431
+ #: src/DataSubject/DataSubjectIdentificator.php:65
432
+ #: src/DataSubject/DataSubjectIdentificator.php:82
433
+ msgid "Your personal data on"
434
+ msgstr "Deine personenbezogenen Daten auf"
435
+
436
+ #: src/Helpers.php:27
437
+ msgctxt "(Admin)"
438
+ msgid "Austria"
439
+ msgstr "Österreich"
440
+
441
+ #: src/Helpers.php:28
442
+ msgctxt "(Admin)"
443
+ msgid "Belgium"
444
+ msgstr "Belgien"
445
+
446
+ #: src/Helpers.php:29
447
+ msgctxt "(Admin)"
448
+ msgid "Bulgaria"
449
+ msgstr "Bulgarien"
450
+
451
+ #: src/Helpers.php:30
452
+ msgctxt "(Admin)"
453
+ msgid "Croatia"
454
+ msgstr "Kroatien"
455
+
456
+ #: src/Helpers.php:31
457
+ msgctxt "(Admin)"
458
+ msgid "Cyprus"
459
+ msgstr "Zypern"
460
+
461
+ #: src/Helpers.php:32
462
+ msgctxt "(Admin)"
463
+ msgid "Czech Republic"
464
+ msgstr "Tschechische Republik"
465
+
466
+ #: src/Helpers.php:33
467
+ msgctxt "(Admin)"
468
+ msgid "Denmark"
469
+ msgstr "Dänemark"
470
+
471
+ #: src/Helpers.php:34
472
+ msgctxt "(Admin)"
473
+ msgid "Estonia"
474
+ msgstr "Estland"
475
+
476
+ #: src/Helpers.php:35
477
+ msgctxt "(Admin)"
478
+ msgid "Finland"
479
+ msgstr "Finnland"
480
+
481
+ #: src/Helpers.php:36
482
+ msgctxt "(Admin)"
483
+ msgid "France"
484
+ msgstr "Frankreich"
485
+
486
+ #: src/Helpers.php:37
487
+ msgctxt "(Admin)"
488
+ msgid "Germany"
489
+ msgstr "Deutschland"
490
+
491
+ #: src/Helpers.php:38
492
+ msgctxt "(Admin)"
493
+ msgid "Greece"
494
+ msgstr "Griechenland"
495
+
496
+ #: src/Helpers.php:39
497
+ msgctxt "(Admin)"
498
+ msgid "Hungary"
499
+ msgstr "Ungarn"
500
+
501
+ #: src/Helpers.php:40
502
+ msgctxt "(Admin)"
503
+ msgid "Ireland"
504
+ msgstr "Irland"
505
+
506
+ #: src/Helpers.php:41
507
+ msgctxt "(Admin)"
508
+ msgid "Italy"
509
+ msgstr "Italien"
510
+
511
+ #: src/Helpers.php:42
512
+ msgctxt "(Admin)"
513
+ msgid "Latvia"
514
+ msgstr "Lettland"
515
+
516
+ #: src/Helpers.php:43
517
+ msgctxt "(Admin)"
518
+ msgid "Lithuania"
519
+ msgstr "Litauen"
520
+
521
+ #: src/Helpers.php:44
522
+ msgctxt "(Admin)"
523
+ msgid "Luxembourg"
524
+ msgstr "Luxemburg"
525
+
526
+ #: src/Helpers.php:45
527
+ msgctxt "(Admin)"
528
+ msgid "Malta"
529
+ msgstr "Malta"
530
+
531
+ #: src/Helpers.php:46
532
+ msgctxt "(Admin)"
533
+ msgid "Netherlands"
534
+ msgstr "Niederlande"
535
+
536
+ #: src/Helpers.php:47
537
+ msgctxt "(Admin)"
538
+ msgid "Poland"
539
+ msgstr "Polen"
540
+
541
+ #: src/Helpers.php:48
542
+ msgctxt "(Admin)"
543
+ msgid "Portugal"
544
+ msgstr "Portugal"
545
+
546
+ #: src/Helpers.php:49
547
+ msgctxt "(Admin)"
548
+ msgid "Romania"
549
+ msgstr "Rumänien"
550
+
551
+ #: src/Helpers.php:50
552
+ msgctxt "(Admin)"
553
+ msgid "Slovakia"
554
+ msgstr "Slowakei"
555
+
556
+ #: src/Helpers.php:51
557
+ msgctxt "(Admin)"
558
+ msgid "Slovenia"
559
+ msgstr "Slowenien"
560
+
561
+ #: src/Helpers.php:52
562
+ msgctxt "(Admin)"
563
+ msgid "Spain"
564
+ msgstr "Spanien"
565
+
566
+ #: src/Helpers.php:53
567
+ msgctxt "(Admin)"
568
+ msgid "Sweden"
569
+ msgstr "Schweden"
570
+
571
+ #: src/Helpers.php:54
572
+ msgctxt "(Admin)"
573
+ msgid "United Kingdom"
574
+ msgstr "Großbritannien"
575
+
576
+ #: src/Helpers.php:69
577
+ msgctxt "(Admin)"
578
+ msgid "Iceland"
579
+ msgstr "Island"
580
+
581
+ #: src/Helpers.php:70
582
+ msgctxt "(Admin)"
583
+ msgid "Norway"
584
+ msgstr "Norwegen"
585
+
586
+ #: src/Helpers.php:71
587
+ msgctxt "(Admin)"
588
+ msgid "Liechtenstein"
589
+ msgstr "Liechtenstein"
590
+
591
+ #: src/Helpers.php:72
592
+ msgctxt "(Admin)"
593
+ msgid "Switzerland"
594
+ msgstr "Schweiz"
595
+
596
+ #: src/Helpers.php:73
597
+ msgctxt "(Admin)"
598
+ msgid "United States"
599
+ msgstr "USA"
600
+
601
+ #: src/Helpers.php:74
602
+ msgctxt "(Admin)"
603
+ msgid "Rest of the world"
604
+ msgstr "Übrige Welt"
605
+
606
+ #: src/Helpers.php:145
607
+ msgid "An error has occurred. Please contact the site administrator."
608
+ msgstr ""
609
+ "Es ist ein Fehler aufgetreten. Bitte kontaktiere den Webseiten-Administrator."
610
+
611
+ #: src/Installer/Installer.php:135
612
+ msgctxt "(Admin)"
613
+ msgid "Setup Wizard"
614
+ msgstr "Einrichtungsassistent"
615
+
616
+ #: src/Installer/Steps/ConfigurationPages.php:23
617
+ #: src/Installer/Steps/PolicySettings.php:23
618
+ #: src/Installer/Steps/PolicySettings.php:48
619
+ msgctxt "(Admin)"
620
+ msgid "&mdash; Create a new page &mdash;"
621
+ msgstr "&mdash; Neue Seite erstellen &mdash;"
622
+
623
+ #: src/Installer/Steps/PolicySettings.php:38
624
+ msgctxt "(Admin)"
625
+ msgid ""
626
+ "We have automatically selected your WooCommerce Terms & Conditions page."
627
+ msgstr ""
628
+ "Wir haben automatisch Deine Seite mit den Allgemeinen Geschäftsbedingungen "
629
+ "von WooCommerce ausgewählt."
630
+
631
+ #: src/Modules/ContactForm7/ContactForm7.php:35
632
+ msgctxt "(Admin)"
633
+ msgid "gdpr terms txt"
634
+ msgstr "DSGVO Bestimmungen txt"
635
+
636
+ #: src/Router.php:80 src/Router.php:92 src/Router.php:125 src/Router.php:141
637
+ #, php-format
638
+ msgid "Nonce error for action \"%s\". Please go back and try again!"
639
+ msgstr ""
640
+ "Ein Fehler für die Aktion %s ist aufgetreten. Bitte gehe zurück und versuche "
641
+ "es erneut!"
642
+
643
+ #: src/Router.php:149
644
+ msgctxt "(Admin)"
645
+ msgid "You do not have the required permissions to perform this action!"
646
+ msgstr ""
647
+ "Du verfügst nicht über die erforderlichen Berechtigungen zum Ausführen "
648
+ "dieser Aktion!"
649
+
650
+ #: views/admin/consent.php:3
651
+ msgctxt "(Admin)"
652
+ msgid "Default consent types"
653
+ msgstr "Voreingestellte Arten der Zustimmung"
654
+
655
+ #: views/admin/consent.php:4
656
+ msgctxt "(Admin)"
657
+ msgid ""
658
+ "These are the consent types that have been automatically registered by the "
659
+ "framework or a plugin."
660
+ msgstr ""
661
+ "Dies sind die Zustimmungsarten, die automatisch durch das GDPR Framework "
662
+ "oder ein anderes Plugin registriert wurden."
663
+
664
+ #: views/admin/consent.php:7 views/admin/consent.php:52
665
+ msgctxt "(Admin)"
666
+ msgid "Slug"
667
+ msgstr "Pfad"
668
+
669
+ #: views/admin/consent.php:8 views/admin/consent.php:38
670
+ #: views/admin/consent.php:60
671
+ msgctxt "(Admin)"
672
+ msgid "Title"
673
+ msgstr "Titel"
674
+
675
+ #: views/admin/consent.php:9 views/admin/consent.php:41
676
+ #: views/admin/consent.php:63
677
+ msgctxt "(Admin)"
678
+ msgid "Description"
679
+ msgstr "Beschreibung"
680
+
681
+ #: views/admin/consent.php:10
682
+ msgctxt "(Admin)"
683
+ msgid "Visibility"
684
+ msgstr "Sichtbarkeit"
685
+
686
+ #: views/admin/consent.php:18
687
+ msgctxt "(Admin)"
688
+ msgid "Visible"
689
+ msgstr "Sichtbar"
690
+
691
+ #: views/admin/consent.php:20
692
+ msgctxt "(Admin)"
693
+ msgid "Hidden"
694
+ msgstr "Ausgeblendet"
695
+
696
+ #: views/admin/consent.php:29
697
+ msgctxt "(Admin)"
698
+ msgid "Custom consent types"
699
+ msgstr "Benutzerdefinierte Arten der Zustimmung"
700
+
701
+ #: views/admin/consent.php:30
702
+ msgctxt "(Admin)"
703
+ msgid ""
704
+ "Here you can add custom consent types to track. They will not be used "
705
+ "anywhere by default - you will need to build an integration for each of them."
706
+ msgstr ""
707
+ "Hier kannst Du benutzerdefinierte Arten der Zustimmung hinzufügen, um sie zu "
708
+ "verfolgen. Sie werden nigends per Voreinstellung verwendet. Du musst dafür "
709
+ "jeweils eine Integration erstellen."
710
+
711
+ #: views/admin/consent.php:35
712
+ msgctxt "(Admin)"
713
+ msgid "Machine-readable slug"
714
+ msgstr "Maschinenlesbarer Pfad"
715
+
716
+ #: views/admin/consent.php:44 views/admin/consent.php:68
717
+ msgctxt "(Admin)"
718
+ msgid "Visible?"
719
+ msgstr "Sichtbar?"
720
+
721
+ #: views/admin/consent.php:72
722
+ msgctxt "(Admin)"
723
+ msgid "Remove"
724
+ msgstr "Entfernen"
725
+
726
+ #: views/admin/consent.php:93
727
+ msgctxt "(Admin)"
728
+ msgid "Additional info"
729
+ msgstr "Zusätzliche Informationen"
730
+
731
+ #: views/admin/consent.php:95
732
+ msgctxt "(Admin)"
733
+ msgid ""
734
+ "This text will be displayed to your data subjects on the Privacy Tools page."
735
+ msgstr ""
736
+ "Dieser Text wird den betroffenen Personen auf der Seite der Datenschutz-"
737
+ "Tools angezeigt."
738
+
739
+ #: views/admin/data-subjects/search-form.php:2
740
+ msgctxt "(Admin)"
741
+ msgid ""
742
+ "On this page, you can find which data subjects personal data you are storing "
743
+ "and download, export or delete it."
744
+ msgstr ""
745
+ "Auf dieser Seite kannst Du nachlesen, welche personenbezogenen Daten Du von "
746
+ "betroffenen Personen speicherst und diese herunterladen, exportieren oder "
747
+ "löschen."
748
+
749
+ #: views/admin/data-subjects/search-form.php:10
750
+ msgctxt "(Admin)"
751
+ msgid "Find data subject by email"
752
+ msgstr "Betroffene Personen über die E-Mail-Adresse finden"
753
+
754
+ #: views/admin/data-subjects/search-form.php:11
755
+ msgctxt "(Admin)"
756
+ msgid "Email address"
757
+ msgstr "E-Mail-Adresse"
758
+
759
+ #: views/admin/data-subjects/search-form.php:16
760
+ msgctxt "(Admin)"
761
+ msgid "Search"
762
+ msgstr "Suchen"
763
+
764
+ #: views/admin/data-subjects/search-results.php:7
765
+ msgctxt "(Admin)"
766
+ msgid "Username"
767
+ msgstr "Benutzername"
768
+
769
+ #: views/admin/data-subjects/search-results.php:12
770
+ msgctxt "(Admin)"
771
+ msgid "is not a registered user."
772
+ msgstr "ist nicht registriert."
773
+
774
+ #: views/admin/data-subjects/search-results.php:16
775
+ msgctxt "(Admin)"
776
+ msgid "Download data (html)"
777
+ msgstr "Download der Daten (html)"
778
+
779
+ #: views/admin/data-subjects/search-results.php:17
780
+ msgctxt "(Admin)"
781
+ msgid "Export data (json)"
782
+ msgstr "Datenexport (json)"
783
+
784
+ #: views/admin/data-subjects/search-results.php:21
785
+ msgctxt "(Admin)"
786
+ msgid ""
787
+ "This user has admin capabilities. Deleting data via this interface is "
788
+ "disabled."
789
+ msgstr ""
790
+ "Dieser Benutzer hat die Berechtigungsstufe eines Admins. Das Löschen der "
791
+ "Daten über diese Bedienoberfläche ist daher deaktiviert."
792
+
793
+ #: views/admin/data-subjects/search-results.php:24
794
+ msgctxt "(Admin)"
795
+ msgid "Anonymize data"
796
+ msgstr "Daten anonymisieren"
797
+
798
+ #: views/admin/data-subjects/search-results.php:25
799
+ msgctxt "(Admin)"
800
+ msgid "Delete data"
801
+ msgstr "Daten löschen"
802
+
803
+ #: views/admin/data-subjects/search-results.php:29
804
+ msgctxt "(Admin)"
805
+ msgid "No data found!"
806
+ msgstr "Keine Daten gefunden!"
807
+
808
+ #: views/admin/general/delete-action-email.php:5
809
+ #: views/admin/general/export-action-email.php:5
810
+ #: views/installer/steps/configuration-settings.php:29
811
+ #: views/installer/steps/configuration-settings.php:79
812
+ msgid "Email address"
813
+ msgstr "E-Mail-Adresse"
814
+
815
+ #: views/admin/general/delete-action-reassign.php:3
816
+ #: views/installer/steps/configuration-settings.php:50
817
+ msgctxt "(Admin)"
818
+ msgid "Delete content"
819
+ msgstr "Inhalt(e) löschen"
820
+
821
+ #: views/admin/general/delete-action-reassign.php:6
822
+ #: views/installer/steps/configuration-settings.php:53
823
+ msgctxt "(Admin)"
824
+ msgid "Reassign content to a user"
825
+ msgstr "Inhalt(e) einem anderen Benutzer zuweisen"
826
+
827
+ #: views/admin/general/delete-action-reassign.php:10
828
+ msgctxt "(Admin)"
829
+ msgid ""
830
+ "If the user has submitted any content on your site, should it be deleted or "
831
+ "reassigned to another user?"
832
+ msgstr ""
833
+ "Falls der Benutzer Inhalte an Deine Website übermittelt hat: Sollen diese "
834
+ "gelöscht oder einem anderen Benutzer zugewiesen werden?"
835
+
836
+ #: views/admin/general/description-data-page.php:2
837
+ msgctxt "(Admin)"
838
+ msgid ""
839
+ "Select the page where users can go to control their data. This page must "
840
+ "contain the [gdpr_privacy_tools] shortcode."
841
+ msgstr ""
842
+ "Wähle die Seite aus, auf der Benutzer ihre Daten überprüfen können. Diese "
843
+ "Seite muss den folgenden Shortcode enthalten: [gdpr_privacy_tools]"
844
+
845
+ #: views/admin/general/enable.php:9
846
+ msgctxt "(Admin)"
847
+ msgid "Enable the view, export and forget functionality for users and visitors"
848
+ msgstr ""
849
+ "Aktiviere die Ansichts-, Export- und Vergessens-Funktionalität für Benutzer "
850
+ "und Besucher"
851
+
852
+ #: views/admin/general/enable.php:12
853
+ msgctxt "(Admin)"
854
+ msgid ""
855
+ "Enable the Privacy Tools page on front-end and dashboard. This allows "
856
+ "visitors to request viewing and deleting their personal data and withdraw "
857
+ "consents."
858
+ msgstr ""
859
+ "Aktiviere die Seite der Datenschutz-Tools im Frontend und Dashboard. Dies "
860
+ "ermöglicht es den Besuchern, Einsicht in Deine persönlichen Daten zu "
861
+ "verlangen, sie zu löschen und ihre Zustimmung zur Speicherung zu widerrufen."
862
+
863
+ #: views/admin/general/theme-compatibility.php:9
864
+ #: views/installer/steps/integrations.php:21
865
+ msgctxt "(Admin)"
866
+ msgid ""
867
+ "Automatically add Privacy Policy and Privacy Tools links to your site footer."
868
+ msgstr ""
869
+ "Automatisch die Links zur Datenschutzerklärung und zu den Datenschutz-Tools "
870
+ "im Footer Deiner Website hinzufügen."
871
+
872
+ #: views/admin/notices/header.php:4 views/admin/settings-page.php:3
873
+ #: views/installer/header.php:23
874
+ msgctxt "(Admin)"
875
+ msgid "The GDPR Framework"
876
+ msgstr "The GDPR Framework"
877
+
878
+ #: views/admin/notices/helper-autoinstall.php:2
879
+ msgctxt "(Admin)"
880
+ msgid ""
881
+ "A Privacy Policy page has been created, but it is empty. You can generate a "
882
+ "policy template on this page."
883
+ msgstr ""
884
+ "Eine Seite für die Datenschutzerklärung wurde erstellt, aber sie ist leer. "
885
+ "Du kannst auf dieser Seite eine Vorlage für die Datenschutzerklärung "
886
+ "generieren."
887
+
888
+ #: views/admin/notices/helper-policy.php:2
889
+ msgctxt "(Admin)"
890
+ msgid ""
891
+ "Heads up - your Privacy Policy still requires some attention. Find the "
892
+ "places marked with [TODO] and replace them with real content!"
893
+ msgstr ""
894
+ "Aufgepasst - Deine Datenschutzerklärung erfordert noch einige "
895
+ "Aufmerksamkeit. Finde die mit [TODO] markierten Orte und ersetzen sie durch "
896
+ "echten Inhalt!"
897
+
898
+ #: views/admin/notices/helper-tools.php:2
899
+ msgctxt "(Admin)"
900
+ msgid ""
901
+ "The contents of this page should contain the [gdpr_privacy_tools] shortcode."
902
+ msgstr ""
903
+ "Der Inhalt dieser Seite sollte den Shortcode [gdpr_privacy_tools] enthalten."
904
+
905
+ #: views/admin/privacy-policy/description-policy-page.php:2
906
+ msgctxt "(Admin)"
907
+ msgid "Select the page which will contain your Privacy Policy"
908
+ msgstr "Wähle die Seite aus, die Deine Datenschutzerklärung enthalten wird"
909
+
910
+ #: views/admin/privacy-policy/generated.php:3
911
+ msgctxt "(Admin)"
912
+ msgid "Your Privacy Policy has been generated."
913
+ msgstr "Deine Datenschutzerklärung wurde erstellt."
914
+
915
+ #: views/admin/privacy-policy/generated.php:20
916
+ msgctxt "(Admin)"
917
+ msgid "&laquo; Back"
918
+ msgstr "&laquo; Zurück"
919
+
920
+ #: views/admin/privacy-policy/header.php:2
921
+ msgctxt "(Admin)"
922
+ msgid ""
923
+ "This page allows you to generate a Privacy Policy based on the information "
924
+ "you entered below."
925
+ msgstr ""
926
+ "Auf dieser Seite kannst Du eine Datenschutzerklärung erzeugen, die auf den "
927
+ "Informationen basiert, die Du unten eingegeben hast."
928
+
929
+ #: views/admin/settings-page.php:31
930
+ #, php-format
931
+ msgctxt "(Admin)"
932
+ msgid "The GDPR Framework. Built with &#9829; by %sCodelight%s."
933
+ msgstr "The GDPR Framework. Built with &#9829; by %sCodelight%s."
934
+
935
+ #: views/admin/support/contents.php:5 views/installer/steps/finish.php:10
936
+ msgctxt "(Admin)"
937
+ msgid "Need more info?"
938
+ msgstr "Benötigst Du weitere Informationen?"
939
+
940
+ #: views/admin/support/contents.php:11 views/installer/steps/finish.php:16
941
+ msgctxt "(Admin)"
942
+ msgid "Site Owner's guide to GDPR"
943
+ msgstr "DSGVO-Handbuch für Website-Besitzer"
944
+
945
+ #: views/admin/support/contents.php:14 views/installer/steps/finish.php:19
946
+ msgctxt "(Admin)"
947
+ msgid "Read the full guide on GDPR compliance."
948
+ msgstr "Lies das vollständige Handbuch zur DSGVO-Konformität."
949
+
950
+ #: views/admin/support/contents.php:20 views/installer/steps/finish.php:25
951
+ msgctxt "(Admin)"
952
+ msgid "Knowledge base"
953
+ msgstr "Wissensdatenbank"
954
+
955
+ #: views/admin/support/contents.php:23 views/installer/steps/finish.php:28
956
+ msgctxt "(Admin)"
957
+ msgid "Check out the knowledge base for common questions and answers."
958
+ msgstr ""
959
+ "Sieh Dir die Wissensdatenbank an, um häufige Fragen und Antworten zu lesen."
960
+
961
+ #: views/admin/support/contents.php:29 views/installer/steps/finish.php:34
962
+ msgctxt "(Admin)"
963
+ msgid "Developer's guide to GDPR"
964
+ msgstr "Entwicklerleitfaden zur DSGVO"
965
+
966
+ #: views/admin/support/contents.php:32 views/installer/steps/finish.php:37
967
+ msgctxt "(Admin)"
968
+ msgid "We have a thorough guide to help making custom sites compliant."
969
+ msgstr ""
970
+ "Wir haben eine umfassende Anleitung, um benutzerdefinierte Websites DSGVO-"
971
+ "konform zu machen."
972
+
973
+ #: views/admin/support/contents.php:40 views/installer/steps/finish.php:45
974
+ msgctxt "(Admin)"
975
+ msgid "Need help?"
976
+ msgstr "Brauchst Du Hilfe?"
977
+
978
+ #: views/admin/support/contents.php:46 views/installer/steps/finish.php:51
979
+ msgctxt "(Admin)"
980
+ msgid "Submit a support request"
981
+ msgstr "Supportanfrage stellen"
982
+
983
+ #: views/admin/support/contents.php:49 views/installer/steps/finish.php:54
984
+ msgctxt "(Admin)"
985
+ msgid ""
986
+ "Found a bug or problem with the plugin? Post in the wordpress.org support "
987
+ "forum."
988
+ msgstr ""
989
+ "Du hast einen Fehler gefunden oder ein Problem mit dem Plugin? Bitte "
990
+ "schreibe uns im Support-Forum von wordpress.org."
991
+
992
+ #: views/admin/support/contents.php:55 views/installer/steps/finish.php:60
993
+ msgctxt "(Admin)"
994
+ msgid "Request a consultation"
995
+ msgstr "Fordern Sie eine Beratung an"
996
+
997
+ #: views/admin/support/contents.php:58 views/installer/steps/finish.php:63
998
+ msgctxt "(Admin)"
999
+ msgid ""
1000
+ "Need development or legal assistance in making your site compliant? We can "
1001
+ "help!"
1002
+ msgstr ""
1003
+ "Benötigst Du Unterstützung bei der Web-Entwicklung oder Rechtshilfe um Deine "
1004
+ "Website DSGVO-konform einzurichten? Wir können helfen!"
1005
+
1006
+ #: views/admin/wizard-buttons.php:2
1007
+ msgctxt "(Admin)"
1008
+ msgid "Restart setup wizard"
1009
+ msgstr "Einrichtungsassistenten erneut starten"
1010
+
1011
+ #: views/email/action-export.php:8 views/email/action-forget.php:12
1012
+ msgctxt "(Admin)"
1013
+ msgid ""
1014
+ "This email is just for your information. You don't need to take any action"
1015
+ msgstr ""
1016
+ "Diese E-Mail dient nur zu Ihrer Information. Du musst nichts unternehmen."
1017
+
1018
+ #: views/email/action-forget.php:8
1019
+ msgctxt "(Admin)"
1020
+ msgid "The data subject had a user account on your website."
1021
+ msgstr "Die betroffene Person hatte einen Benutzer-Account auf Deiner Website."
1022
+
1023
+ #: views/email/identify-data-subject.php:2
1024
+ msgid "Someone has requested access to your data on"
1025
+ msgstr "Jemand hat Zugriff auf Deine Daten angefordert"
1026
+
1027
+ #: views/email/identify-data-subject.php:3
1028
+ msgid "If this was a mistake, just ignore this email and nothing will happen."
1029
+ msgstr ""
1030
+ "Falls Du diese E-Mail irrtümlich erhalten hast: Ignoriere sie bitte. Es wird "
1031
+ "nichts weiter passieren."
1032
+
1033
+ #: views/email/identify-data-subject.php:4
1034
+ msgid "To manage your data, visit the following address:"
1035
+ msgstr "Um Deine Daten zu verwalten, besuche die folgende Adresse:"
1036
+
1037
+ #: views/email/identify-data-subject.php:10
1038
+ msgid "This link is valid for 15 minutes."
1039
+ msgstr "Dieser Link ist 15 Minuten gültig."
1040
+
1041
+ #: views/email/no-data.php:2
1042
+ msgid "Someone has requested information about your personal data on"
1043
+ msgstr "Jemand hat Auskunft über Deine personenbezogenen Daten erbeten auf"
1044
+
1045
+ #: views/email/no-data.php:3
1046
+ msgid "None of your personal data is stored on"
1047
+ msgstr "Keine Deiner persönlichen Daten wurden gespeichert auf"
1048
+
1049
+ #: views/email/no-data.php:5
1050
+ msgid ""
1051
+ "If this was a mistake or you did not request this email, just ignore it and "
1052
+ "nothing will happen."
1053
+ msgstr ""
1054
+ "Falls Du diese E-Mail irrtümlich erhalten hast: Ignorieren sie bitte. Es "
1055
+ "wird nichts weiter passieren."
1056
+
1057
+ #: views/email/request-export.php:13 views/email/request-forget.php:13
1058
+ msgctxt "(Admin)"
1059
+ msgid "As a reminder: according to GDPR, you have 30 days to comply."
1060
+ msgstr "Zur Erinnerung: Gemäß der DSGVO musst Du 30 Tage einhalten."
1061
+
1062
+ #: views/global/delete-action.php:2
1063
+ msgctxt "(Admin)"
1064
+ msgid "Automatically anonymize data"
1065
+ msgstr "Daten automatisch anonymisieren"
1066
+
1067
+ #: views/global/delete-action.php:5
1068
+ msgctxt "(Admin)"
1069
+ msgid "Automatically delete data"
1070
+ msgstr "Daten automatisch löschen"
1071
+
1072
+ #: views/global/delete-action.php:9
1073
+ msgctxt "(Admin)"
1074
+ msgid "Automatically anonymize data and notify me via email"
1075
+ msgstr "Daten automatisch anonymisieren und mich über E-Mail benachrichtigen"
1076
+
1077
+ #: views/global/delete-action.php:13
1078
+ msgctxt "(Admin)"
1079
+ msgid "Automatically delete data and notify me via email"
1080
+ msgstr "Daten automatisch löschen und mich über E-Mail benachrichtigen"
1081
+
1082
+ #: views/global/delete-action.php:16 views/global/export-action.php:10
1083
+ msgctxt "(Admin)"
1084
+ msgid "Only notify me via email"
1085
+ msgstr "Mich lediglich über E-Mail benachrichtigen"
1086
+
1087
+ #: views/global/export-action.php:2
1088
+ msgctxt "(Admin)"
1089
+ msgid "Automatically download data"
1090
+ msgstr "Daten automatisch herunterladen"
1091
+
1092
+ #: views/global/export-action.php:6
1093
+ msgctxt "(Admin)"
1094
+ msgid "Automatically download data and notify me via email"
1095
+ msgstr "Daten automatisch herunterladen und mich über E-Mail benachrichtigen"
1096
+
1097
+ #: views/installer/continue-notice.php:2
1098
+ msgctxt "(Admin)"
1099
+ msgid "The The GDPR Framework setup has not been finalized yet."
1100
+ msgstr "Die Einrichtung des GDPR Frameworks ist noch nicht abgeschlossen."
1101
+
1102
+ #: views/installer/continue-notice.php:3
1103
+ msgctxt "(Admin)"
1104
+ msgid "You can continue the setup at any time."
1105
+ msgstr "Du kannst die Einrichtung jederzeit fortsetzen."
1106
+
1107
+ #: views/installer/continue-notice.php:6
1108
+ msgctxt "(Admin)"
1109
+ msgid "Continue the setup wizard"
1110
+ msgstr "Setze den Einrichtungsassistenten fort"
1111
+
1112
+ #: views/installer/continue-notice.php:9
1113
+ msgctxt "(Admin)"
1114
+ msgid "Hide this message"
1115
+ msgstr "Diese Nachricht ausblenden"
1116
+
1117
+ #: views/installer/footer.php:7
1118
+ msgid "Back"
1119
+ msgstr "Zurück"
1120
+
1121
+ #: views/installer/header.php:26
1122
+ msgctxt "(Admin)"
1123
+ msgid "I need help"
1124
+ msgstr "Ich benötige Unterstützung"
1125
+
1126
+ #: views/installer/header.php:29
1127
+ msgctxt "(Admin)"
1128
+ msgid "Developer Docs"
1129
+ msgstr "Entwickler-Dokumentation"
1130
+
1131
+ #: views/installer/header.php:36
1132
+ msgctxt "(Admin)"
1133
+ msgid "Configuration"
1134
+ msgstr "Konfiguration"
1135
+
1136
+ #: views/installer/header.php:46
1137
+ msgctxt "(Admin)"
1138
+ msgid "Forms & Consent"
1139
+ msgstr "Formulare & Zustimmung"
1140
+
1141
+ #: views/installer/header.php:51
1142
+ msgctxt "(Admin)"
1143
+ msgid "Integrations"
1144
+ msgstr "Integrationen"
1145
+
1146
+ #: views/installer/steps/configuration-settings.php:23
1147
+ #: views/installer/steps/configuration-settings.php:73
1148
+ msgctxt "(Admin)"
1149
+ msgid "Enter the email address to notify"
1150
+ msgstr "Gib die zu benachrichtigende E-Mail-Adresse ein"
1151
+
1152
+ #: views/installer/steps/disclaimer.php:21
1153
+ msgctxt "(Admin)"
1154
+ msgid "I accept"
1155
+ msgstr "Ich akzeptiere"
1156
+
1157
+ #: views/installer/welcome-notice.php:7
1158
+ msgctxt "(Admin)"
1159
+ msgid "Run the setup wizard"
1160
+ msgstr "Einrichtungsassistent jetzt starten"
1161
+
1162
+ #: views/installer/welcome-notice.php:11
1163
+ msgctxt "(Admin)"
1164
+ msgid "Auto-install pages"
1165
+ msgstr "Seiten automatisch einrichten"
1166
+
1167
+ #: views/installer/welcome-notice.php:15
1168
+ msgctxt "(Admin)"
1169
+ msgid "Skip and install manually"
1170
+ msgstr "Überspringen und manuell einrichten"
1171
+
1172
+ #: views/modules/contact-form-7/generator-privacy.php:6
1173
+ msgctxt "(Admin)"
1174
+ msgid ""
1175
+ "This tag generates the default text for Terms & Conditions and/or Privacy "
1176
+ "Policy checkbox."
1177
+ msgstr ""
1178
+ "Dieser Tag generiert den Standardtext für die Checkbox der "
1179
+ "Geschäftsbedingungen und/oder Datenschutzerklärung."
1180
+
1181
+ #: views/modules/contact-form-7/generator-privacy.php:15
1182
+ msgid "Insert"
1183
+ msgstr "Einfügen"
1184
+
1185
+ #: views/modules/wordpress-comments/terms-checkbox.php:6
1186
+ #: views/modules/wordpress-user/registration-terms-checkbox.php:7
1187
+ #, php-format
1188
+ msgid "I accept the %sTerms and Conditions%s and the %sPrivacy Policy%s"
1189
+ msgstr ""
1190
+ "Ich akzeptiere die %sAllgemeinen Geschäftsbedingungen%s und die "
1191
+ "%sDatenschutzerklärung%s"
1192
+
1193
+ #: views/modules/wordpress-user/dashboard/data-page/form-consent.php:3
1194
+ msgid "Manage consents"
1195
+ msgstr "Zustimmungen verwalten"
1196
+
1197
+ #: views/modules/wordpress-user/dashboard/data-page/form-consent.php:6
1198
+ #: views/privacy-tools/form-consent.php:6
1199
+ msgid "Here you can withdraw any consents you have given."
1200
+ msgstr "Hier kannst Du Deine gegebenen Einwilligungen widerrufen."
1201
+
1202
+ #: views/modules/wordpress-user/dashboard/data-page/form-consent.php:8
1203
+ #: views/privacy-tools/form-consent.php:9
1204
+ msgid "Consent types"
1205
+ msgstr "Arten der Zustimmung"
1206
+
1207
+ #: views/modules/wordpress-user/dashboard/data-page/form-consent.php:23
1208
+ #: views/privacy-tools/form-consent.php:24
1209
+ msgid "Withdraw"
1210
+ msgstr "Widerrufen"
1211
+
1212
+ #: views/modules/wordpress-user/dashboard/data-page/form-delete.php:5
1213
+ #: views/modules/wordpress-user/dashboard/profile-page/form-delete.php:5
1214
+ msgctxt "(Admin)"
1215
+ msgid "Delete this user and all data"
1216
+ msgstr "Diesen Benutzer und alle Daten löschen"
1217
+
1218
+ #: views/modules/wordpress-user/dashboard/data-page/form-delete.php:11
1219
+ msgctxt "(Admin)"
1220
+ msgid "Delete my data"
1221
+ msgstr "Lösche meine Daten"
1222
+
1223
+ #: views/modules/wordpress-user/dashboard/data-page/form-delete.php:15
1224
+ #: views/privacy-tools/form-delete.php:13
1225
+ msgid "Delete all data we have gathered about you."
1226
+ msgstr "Lösche alle Daten, die auf dieser Seite über Dich gesammelt wurden."
1227
+
1228
+ #: views/modules/wordpress-user/dashboard/data-page/form-delete.php:16
1229
+ #: views/privacy-tools/form-delete.php:14
1230
+ msgid "If you have a user account on our site, it will also be deleted."
1231
+ msgstr ""
1232
+ "Falls Du auf unserer Website ein Benutzerkonto hast, wird dieses ebenfalls "
1233
+ "gelöscht."
1234
+
1235
+ #: views/modules/wordpress-user/dashboard/data-page/form-delete.php:17
1236
+ #: views/privacy-tools/form-delete.php:15
1237
+ msgid "Be careful - this action is permanent and CANNOT be undone."
1238
+ msgstr ""
1239
+ "Sei vorsichtig - diese Aktion ist dauerhaft und kann NICHT rückgängig "
1240
+ "gemacht werden."
1241
+
1242
+ #: views/modules/wordpress-user/dashboard/data-page/form-delete.php:22
1243
+ #: views/modules/wordpress-user/dashboard/profile-page/form-delete.php:23
1244
+ msgctxt "(Admin)"
1245
+ msgid ""
1246
+ "You seem to have an administrator or equivalent role, so deleting/"
1247
+ "anonymizing via this page is disabled."
1248
+ msgstr ""
1249
+ "Du scheinst die Rolle eines Administrators oder eine gleichwertige Rolle zu "
1250
+ "haben, so dass löschen/anonymisieren über diese Seite deaktiviert ist."
1251
+
1252
+ #: views/modules/wordpress-user/dashboard/form-export.php:7
1253
+ #: views/privacy-tools/form-export.php:1
1254
+ msgid "Download your data"
1255
+ msgstr "Lade Deine Ihre Daten herunter"
1256
+
1257
+ #: views/modules/wordpress-user/dashboard/form-export.php:12
1258
+ #: views/privacy-tools/form-export.php:13
1259
+ msgid "Download as table"
1260
+ msgstr "Als Tabelle herunterladen"
1261
+
1262
+ #: views/modules/wordpress-user/dashboard/form-export.php:15
1263
+ #: views/privacy-tools/form-export.php:22
1264
+ msgid "Export as JSON"
1265
+ msgstr "Export als JSON"
1266
+
1267
+ #: views/modules/wordpress-user/dashboard/form-export.php:19
1268
+ #: views/privacy-tools/form-export.php:4
1269
+ msgid "You can download all your data formatted as a table for viewing."
1270
+ msgstr ""
1271
+ "Für eine einfachere Betrachtung kannst Du all Deine Daten in Form einer "
1272
+ "Tabelle herunterladen."
1273
+
1274
+ #: views/modules/wordpress-user/dashboard/form-export.php:20
1275
+ #: views/privacy-tools/form-export.php:5
1276
+ msgid "Alternatively, you can export it in machine-readable JSON format."
1277
+ msgstr "Alternativ kannst Du sie im maschinenlesbaren JSON-Format exportieren."
1278
+
1279
+ #: views/modules/wordpress-user/dashboard/profile-page/form-delete.php:11
1280
+ msgctxt "(Admin)"
1281
+ msgid "Delete user and all data"
1282
+ msgstr "Diesen Benutzer und alle Daten löschen"
1283
+
1284
+ #: views/modules/wordpress-user/dashboard/profile-page/form-delete.php:14
1285
+ msgctxt "(Admin)"
1286
+ msgid "Anonymize user and all data"
1287
+ msgstr "Diesen Benutzer und alle Daten anonymisieren"
1288
+
1289
+ #: views/modules/wordpress-user/dashboard/profile-page/header.php:2
1290
+ msgctxt "(Admin)"
1291
+ msgid "GDPR Data"
1292
+ msgstr "DSGVO Daten"
1293
+
1294
+ #: views/modules/wordpress-user/dashboard/profile-page/header.php:6
1295
+ msgctxt "(Admin)"
1296
+ msgid "This user has been anonymized."
1297
+ msgstr "Dieser Benutzer wurde anonymisiert."
1298
+
1299
+ #: views/modules/wordpress-user/dashboard/profile-page/table-consent.php:4
1300
+ msgctxt "(Admin)"
1301
+ msgid "Consents given"
1302
+ msgstr "Gegebene Zustimmungen"
1303
+
1304
+ #: views/modules/wordpress-user/dashboard/profile-page/table-consent.php:17
1305
+ msgctxt "(Admin)"
1306
+ msgid "No consents given"
1307
+ msgstr "Keine Zustimmungen gegeben"
1308
+
1309
+ #: views/privacy-tools/form-consent.php:2
1310
+ msgid "Consent"
1311
+ msgstr "Zustimmung"
1312
+
1313
+ #: views/privacy-tools/form-delete.php:1
1314
+ #: views/privacy-tools/notice-admin-role.php:1
1315
+ msgid "Delete my user and data"
1316
+ msgstr "Mein Benutzerkonto und meine Daten löschen"
1317
+
1318
+ #: views/privacy-tools/form-delete.php:7
1319
+ msgid "Delete my data"
1320
+ msgstr "Meine Daten löschen"
1321
+
1322
+ #: views/privacy-tools/form-identify.php:8
1323
+ msgid "Back to Privacy Tools"
1324
+ msgstr "Zurück zu den Datenschutz-Tools"
1325
+
1326
+ #: views/privacy-tools/form-identify.php:14
1327
+ msgid "Identify yourself!"
1328
+ msgstr "Bitte identifiziere Dich!"
1329
+
1330
+ #: views/privacy-tools/form-identify.php:17
1331
+ #: views/privacy-tools/form-identify.php:20
1332
+ msgid "Enter your email address"
1333
+ msgstr "Gib Deine E-Mail-Adresse ein"
1334
+
1335
+ #: views/privacy-tools/form-identify.php:23
1336
+ msgid "Send email"
1337
+ msgstr "E-Mail senden"
1338
+
1339
+ #: views/privacy-tools/notice-admin-role.php:4
1340
+ msgctxt "(Admin)"
1341
+ msgid "Data deletion is disabled for administrative accounts."
1342
+ msgstr ""
1343
+ "Die Löschung der Daten ist für administrative Benutzerkonten deaktiviert."
1344
+
1345
+ #: views/privacy-tools/notices.php:3
1346
+ msgid ""
1347
+ "We will send you an email with the link to access your data. Please check "
1348
+ "your spam folder as well!"
1349
+ msgstr ""
1350
+ "Wir senden Dir eine E-Mail mit einem Link, um auf Deine Daten zuzugreifen. "
1351
+ "Bitte überprüfe auch Deinen Spam-Ordner!"
1352
+
1353
+ #: views/privacy-tools/notices.php:7
1354
+ msgid "The email you entered does not appear to be a valid email."
1355
+ msgstr "Die eingegebene E-Mail-Adresse scheint ungültig zu sein."
1356
+
1357
+ #: views/privacy-tools/notices.php:11
1358
+ msgid "Sorry - the link seems to have expired. Please try again!"
1359
+ msgstr ""
1360
+ "Entschuldigung - der Link scheint abgelaufen zu sein. Bitte versuche es "
1361
+ "erneut!"
1362
+
1363
+ #: views/privacy-tools/notices.php:23
1364
+ msgid "Your personal data has been removed!"
1365
+ msgstr "Deine personenbezogenen Daten wurden gelöscht!"
1366
+
1367
+ #: views/privacy-tools/privacy-tools.php:5
1368
+ msgid "You are identified as"
1369
+ msgstr "Du bist indentifiziert als"
1370
+
1371
+ #: views\admin\general\enable-tac.php:9
1372
+ msgctxt "(Admin)"
1373
+ msgid "Enable the term and condition page."
1374
+ msgstr "Aktiviere Begriffs- und Bedingungsseite."
1375
+
1376
+ #: src\Admin\AdminTabGeneral.php:51
1377
+ msgctxt "(Admin)"
1378
+ msgid "Enable Term and Conditions"
1379
+ msgstr "Aktiviere Bedingungen und Konditionen"
1380
+
1381
+ #: gdpr-framework.php:121
1382
+ msgid ""
1383
+ "This website uses cookies to ensure you get the best experience on our "
1384
+ "website."
1385
+ msgstr ""
1386
+ "Diese Website verwendet Cookies, um sicherzustellen, dass unsere Webseite "
1387
+ "ideal nutzbar ist."
1388
+
1389
+ #: gdpr-framework.php:121
1390
+ msgid "Decline"
1391
+ msgstr "Ablehnen"
1392
+
1393
+ #: gdpr-framework.php:121
1394
+ msgid "Accept"
1395
+ msgstr "Akzeptieren"
1396
+
1397
+ #: gdpr-framework.php:133
1398
+ msgid "Learn more"
1399
+ msgstr "Mehr erfahren"
1400
+
1401
+ #: AdminTabGeneral.php:94
1402
+ msgctxt "(Admin)"
1403
+ msgid "From Email"
1404
+ msgstr "Von E-Mail"
1405
+
1406
+ #: AdminTabGeneral.php:87
1407
+ msgctxt "(Admin)"
1408
+ msgid "From Name"
1409
+ msgstr "Von Name"
1410
+
1411
+ #: AdminTabGeneral.php:82
1412
+ msgctxt "(Admin)"
1413
+ msgid "Email Setting"
1414
+ msgstr "E-Mail-Einstellung"
1415
+
1416
+ #: AdminTabGeneral.php:104
1417
+ msgctxt "(Admin)"
1418
+ msgid "Acceptance Popup Setting"
1419
+ msgstr "Akzeptanz-Popup-Einstellung"
1420
+
1421
+ #: AdminTabGeneral.php:109
1422
+ msgctxt "(Admin)"
1423
+ msgid "Popup Position"
1424
+ msgstr "Popup-Position"
1425
+
1426
+ #: AdminTabGeneral.php:116
1427
+ msgctxt "(Admin)"
1428
+ msgid "Popup theme"
1429
+ msgstr "Popup-Thema"
1430
+
1431
+ #: AdminTabGeneral.php:123
1432
+ msgctxt "(Admin)"
1433
+ msgid "Cookie Acceptance Background Color"
1434
+ msgstr "Cookie-Akzeptanz-Hintergrundfarbe"
1435
+
1436
+ #: AdminTabGeneral.php:130
1437
+ msgctxt "(Admin)"
1438
+ msgid "Cookie Acceptance Text Color"
1439
+ msgstr "Cookie Akzeptanz Textfarbe"
1440
+
1441
+ #: AdminTabGeneral.php:137
1442
+ msgctxt "(Admin)"
1443
+ msgid "Cookie Acceptance Button Backgroung Color"
1444
+ msgstr "Cookie Akzeptanz Button Backgroung Farbe"
1445
+
1446
+ #: AdminTabGeneral.php:144
1447
+ msgctxt "(Admin)"
1448
+ msgid "Cookie Acceptance Button Color"
1449
+ msgstr "Cookie-Akzeptanz-Schaltfläche Farbe"
1450
+
1451
+ #: AdminTabGeneral.php:151
1452
+ msgctxt "(Admin)"
1453
+ msgid "Cookie Acceptance Border Color"
1454
+ msgstr "Akzeptanzgrenze für Cookies"
1455
+
1456
+ #: AdminTabGeneral.php:67
1457
+ msgctxt "(Admin)"
1458
+ msgid "Enable Cookie Acceptance Popup"
1459
+ msgstr "Aktiviere das Cookie-Akzeptanz-Popup"
1460
+
1461
+ #: AdminTabGeneral.php:73
1462
+ msgctxt "(Admin)"
1463
+ msgid "Cookie Acceptance Popup Content"
1464
+ msgstr "Cookie-Akzeptanz-Popup-Inhalt"
1465
+
1466
+ #: description-position-action.php
1467
+ msgctxt "(Admin)"
1468
+ msgid "Select position of the Popup"
1469
+ msgstr "Wähle die Position des Popups"
1470
+
1471
+ #: description-theme-action.php
1472
+ msgctxt "(Admin)"
1473
+ msgid "Select theme of the Popup"
1474
+ msgstr "Wähle das Thema des Popups"
1475
+
1476
+ #: description-theme-action.php:69
1477
+ msgctxt "(Admin)"
1478
+ msgid "Disable Comment Checkbox"
1479
+ msgstr "Kommentar deaktivieren Kontrollkästchen"
1480
+
1481
+ #: description-theme-action.php:76
1482
+ msgctxt "(Admin)"
1483
+ msgid "Disable Register Form Checkbox"
1484
+ msgstr "Deaktivieren Sie die Registrierungsformular-Checkbox"
1485
+
1486
+ #: description-theme-action.php:312
1487
+ msgctxt "(Admin)"
1488
+ msgid "Disable Checkbox For Comments"
1489
+ msgstr "Deaktiviere Kontrollkästchen für Kommentare"
1490
+
1491
+ #: AdminTabGeneral.php:319
1492
+ msgctxt "(Admin)"
1493
+ msgid "Disable Checkbox For Register Form"
1494
+ msgstr "Kontrollkästchen für Registrierungsformular deaktivieren"
1495
+
1496
+ #: views/privacy-tools/form-identify.php:15
1497
+ msgid "Please identify yourself via e-mail"
1498
+ msgstr "Bitte identifiziere Dich per E-Mail"
1499
+
1500
+ #: advanced-integration\header.php:2
1501
+ msgctxt "(Admin)"
1502
+ msgid "This page allows you to advance integration with ClassiDocs™"
1503
+ msgstr ""
1504
+ "Auf dieser Seite kannst Du die Integration mit ClassiDocs ™ vorantreiben"
1505
+
1506
+ #: AdminTabAdvancedIntegration.php:97
1507
+ msgctxt "(Admin)"
1508
+ msgid "ClassiDocs Password"
1509
+ msgstr "ClassiDocs Passwort"
1510
+
1511
+ #: AdminTabAdvancedIntegration.php:88
1512
+ msgctxt "(Admin)"
1513
+ msgid "ClassiDocs Username"
1514
+ msgstr "ClassiDocs Benutzername"
1515
+
1516
+ #: AdminTabAdvancedIntegration.php:79
1517
+ msgctxt "(Admin)"
1518
+ msgid "ClassiDocs URL"
1519
+ msgstr "ClassiDocs URL"
1520
+
1521
+ #: AdminTabAdvancedIntegration.php:69
1522
+ msgctxt "(Admin)"
1523
+ msgid "Enable Response with related queries?"
1524
+ msgstr "Antwort mit verwandten Anfragen aktivieren?"
1525
+
1526
+ #: AdminTabAdvancedIntegration.php:60
1527
+ msgctxt "(Admin)"
1528
+ msgid "Submit SAR request details?"
1529
+ msgstr "SAR-Anfragedetails einreichen?"
1530
+
1531
+ #: AdminTabAdvancedIntegration.php:51
1532
+ msgctxt "(Admin)"
1533
+ msgid "Integrate with ClassiDocs?"
1534
+ msgstr "Mit ClassiDocs integrieren?"
1535
+
1536
+ #: AdminTabAdvancedIntegration.php:43
1537
+ msgctxt "(Admin)"
1538
+ msgid "Integration Settings"
1539
+ msgstr "Integrationseinstellungen"
1540
+
1541
+ #: AdminTabAdvancedIntegration.php:35
1542
+ msgctxt "(Admin)"
1543
+ msgid "Advanced Integration"
1544
+ msgstr "Erweiterte Integration"
1545
+
1546
+ #: checkbox-field.php:10
1547
+ msgctxt "(Admin)"
1548
+ msgid "Sign up for free here"
1549
+ msgstr "Melde Dich hier kostenlos an"
1550
+
1551
+ #: checkbox-field.php:10
1552
+ msgctxt "(Admin)"
1553
+ msgid "Click Here"
1554
+ msgstr "Klick hier"
1555
+
1556
+ #: ClassiDocs-results.php:12
1557
+ msgid "Previous Results"
1558
+ msgstr "Vorherige Ergebnisse"
1559
+
1560
+ #: ClassiDocs-results.php:13
1561
+ msgid "Current Results"
1562
+ msgstr "Aktuelle Ergebnisse"
1563
+
1564
+ #: ClassiDocs-results.php:19
1565
+ msgid "Name"
1566
+ msgstr "Name"
1567
+
1568
+ #: ClassiDocs-results.php:22
1569
+ msgid "Path"
1570
+ msgstr "Pfad"
1571
+
1572
+ #: ClassiDocs-results.php:34
1573
+ msgid "Workstation"
1574
+ msgstr "Arbeitsplatz"
1575
+
1576
+ #: ClassiDocs-results.php:37
1577
+ msgid "Last Scan"
1578
+ msgstr "Letzter Scan"
1579
+
1580
+ #: ClassiDocs-results.php:62
1581
+ msgid "No ClassiDocs data found!"
1582
+ msgstr "Keine ClassiDocs Daten gefunden!"
1583
+
1584
+ #: enable_popup_header.php:5
1585
+ msgid "Cookies used on the website!"
1586
+ msgstr "Auf der Website verwendete Cookies!"
1587
+
1588
+ #: enable_popup_header.php:9
1589
+ msgid "Leave blank if don't want header to get display."
1590
+ msgstr "Lassen Sie das Feld leer, wenn der Header nicht angezeigt werden soll."
1591
+
1592
+ #: AdminTabCookiePopup.php:39
1593
+ msgctxt "(Admin)"
1594
+ msgid "Cookie Popup Settings"
1595
+ msgstr "Cookie-Popup-Einstellungen"
1596
+
1597
+ #: AdminTabCookiePopup.php:17
1598
+ msgctxt "(Admin)"
1599
+ msgid "Cookie Popup"
1600
+ msgstr "Cookie-Popup"
1601
+
1602
+ #: AdminTabCookiePopup.php:49
1603
+ msgctxt "(Admin)"
1604
+ msgid "Enable One Time Cookie Acceptance Popup"
1605
+ msgstr "Einmalige Cookie-Akzeptanz-Popup-Funktion aktivieren"
1606
+
1607
+ #: consent.php:79
1608
+ msgctxt "(Admin)"
1609
+ msgid "Show Consent types"
1610
+ msgstr "Zustimmungstypen anzeigen"
1611
+
1612
+ msgctxt "(Admin)"
1613
+ msgid "Hide consent types"
1614
+ msgstr "Zustimmungstypen ausblenden"
1615
+
1616
+ msgctxt "(Admin)"
1617
+ msgid "Do you want form to be GDPR compliance."
1618
+ msgstr "Möchten Sie, dass das Formular der DSGVO entspricht?"
1619
+
1620
+ msgctxt "(Admin)"
1621
+ msgid ""
1622
+ "You have installed flamingo, To make this GDPR compliance in individual "
1623
+ "contact form's privacy tab check the checkbox for include data to be search "
1624
+ "on Privacy tool."
1625
+ msgstr ""
1626
+ "Sie haben flamingo installiert. Aktivieren Sie das Kontrollkästchen \"Daten "
1627
+ "einschließen\", um die Datenschutzbestimmungen für die DSDPR auf der "
1628
+ "Registerkarte \"Datenschutz\" des einzelnen Kontaktformulars zu aktivieren."
1629
+
1630
+ msgctxt "(Admin)"
1631
+ msgid "Enable Policy Link On Popup"
1632
+ msgstr "Aktivieren Sie die Richtlinienverknüpfung im Popup"
1633
+
1634
+ msgctxt "(Admin)"
1635
+ msgid "Enable Privacy policy on Popup"
1636
+ msgstr "Aktivieren Sie die Datenschutzbestimmungen für Popup"
1637
+
1638
+ #: AdminTabCookiePopup.php
1639
+ msgctxt "(Admin)"
1640
+ msgid "Cookie Acceptance Popup header"
1641
+ msgstr "Cookie-Akzeptanz-Popup-Header"
1642
+
1643
+ #: views\admin\privacy-manager\header.php:2
1644
+ msgctxt "(Admin)"
1645
+ msgid "Data443™ Privacy Manager"
1646
+ msgstr "Data443™ Privacy Manager"
1647
+
1648
+ #: views\admin\privacy-manager\header.php:3
1649
+ msgctxt "(Admin)"
1650
+ msgid ""
1651
+ "ensures privacy regulation compliance, such as GDPR, CCPA, LGPD, etc, at the "
1652
+ "next level."
1653
+ msgstr ""
1654
+ "sorgt für die Einhaltung der Datenschutzbestimmungen wie GDPR, CCPA, LGPD "
1655
+ "usw. auf der nächsten Ebene."
1656
+
1657
+ #: views\admin\privacy-manager\header.php:4
1658
+ msgctxt "(Admin)"
1659
+ msgid ""
1660
+ "In addition to DSAR tracking and management, Privacy Manager adds the "
1661
+ "following features to your data protection compliance resources:"
1662
+ msgstr ""
1663
+ "Zusätzlich zu DSAR-Nachverfolgung und -Verwaltung fügt Privacy Manager Ihren "
1664
+ "Ressourcen zur Einhaltung des Datenschutzes die folgenden Funktionen hinzu:"
1665
+
1666
+ #: views\admin\privacy-manager\header.php:6
1667
+ msgctxt "(Admin)"
1668
+ msgid "Log and store ICO breach notifications"
1669
+ msgstr "ICO-Verstoßbenachrichtigungen protokollieren und speichern"
1670
+
1671
+ #: views\admin\privacy-manager\header.php:7
1672
+ msgctxt "(Admin)"
1673
+ msgid "Keeps full record of all requests, ticketed and timeline"
1674
+ msgstr "Zeichnet alle Anfragen auf, Ticket und Timeline"
1675
+
1676
+ #: views\admin\privacy-manager\header.php:8
1677
+ msgctxt "(Admin)"
1678
+ msgid "Gap analysis and breach notifications"
1679
+ msgstr "Lückenanalyse und Verstoßbenachrichtigungen"
1680
+
1681
+ #: views\admin\privacy-manager\header.php:9
1682
+ msgctxt "(Admin)"
1683
+ msgid "In depth activity log with all GDPR, CCPA, etc actions evidenced"
1684
+ msgstr "In depth activity log with all GDPR, CCPA, etc actions evidenced"
1685
+
1686
+ #: views\admin\privacy-manager\header.php:10
1687
+ msgctxt "(Admin)"
1688
+ msgid "Highlights areas of concern and where you need to focus"
1689
+ msgstr "Hebt die Problembereiche hervor, auf die Sie sich konzentrieren müssen"
1690
+
1691
+ #: views\admin\privacy-manager\header.php:11
1692
+ msgctxt "(Admin)"
1693
+ msgid ""
1694
+ "eLearning platform with access for all staff to ensure privacy regulation "
1695
+ "compliance and obligations"
1696
+ msgstr ""
1697
+ "E-Learning-Plattform mit Zugang für alle Mitarbeiter, um die Einhaltung der "
1698
+ "Datenschutzbestimmungen und -pflichten sicherzustellen"
1699
+
1700
+ #: views\admin\privacy-manager\header.php:12
1701
+ msgctxt "(Admin)"
1702
+ msgid "Tracks who accesses the system, when and why"
1703
+ msgstr "Erfasst, wer wann und warum auf das System zugreift"
1704
+
1705
+ #: views\admin\privacy-manager\header.php:15
1706
+ msgctxt "(Admin)"
1707
+ msgid ""
1708
+ "Our system enables your business to demonstrate its obligations in "
1709
+ "protecting your customer data, show understanding of your business "
1710
+ "activities and deliver eLearning and online tests to employees, ensuring "
1711
+ "everyone in your company understands your privacy compliance rules and best "
1712
+ "practices to operate."
1713
+ msgstr ""
1714
+ "Unser System ermöglicht es Ihrem Unternehmen, seine Verpflichtungen "
1715
+ "hinsichtlich des Schutzes Ihrer Kundendaten zu demonstrieren, Verständnis "
1716
+ "für Ihre Geschäftsaktivitäten zu vermitteln und Mitarbeitern e-Learning und "
1717
+ "Online-Tests zur Verfügung zu stellen. So stellen Sie sicher, dass jeder in "
1718
+ "Ihrem Unternehmen die Regeln zum Schutz Ihrer Privatsphäre und die bewährten "
1719
+ "Vorgehensweisen kennt."
1720
+
1721
+ #: views\admin\privacy-manager\header.php:16
1722
+ msgctxt "(Admin)"
1723
+ msgid ""
1724
+ "No matter where you are on your data privacy journey, the ultimate goal is "
1725
+ "compliance."
1726
+ msgstr ""
1727
+ "Unabhängig davon, wo Sie sich auf Ihrer Datenschutzreise befinden, ist das "
1728
+ "ultimative Ziel Compliance."
1729
+
1730
+ #: views\admin\privacy-manager\header.php:16
1731
+ msgctxt "(Admin)"
1732
+ msgid "enables your organization to comply with all privacy regulations."
1733
+ msgstr ""
1734
+ "ermöglicht Ihrem Unternehmen die Einhaltung aller Datenschutzbestimmungen."
1735
+
1736
+ #: views\admin\support\contents.php:49
1737
+ msgctxt "(Admin)"
1738
+ msgid ""
1739
+ "Found a bug or have a question about the plugin? Submit a support request "
1740
+ "and we’ll get right on it!"
1741
+ msgstr ""
1742
+ "Fehler gefunden oder Fragen zum Plugin? Senden Sie eine Support-Anfrage und "
1743
+ "wir werden sofort darauf reagieren!"
1744
+
1745
+ #: views\admin\support\contents.php:58
1746
+ msgctxt "(Admin)"
1747
+ msgid "Need assistance in making your site compliant? We can help!"
1748
+ msgstr ""
1749
+ "Benötigen Sie Hilfe, um Ihre Website kompatibel zu machen? Wir können helfen!"
1750
+
1751
+ #: views\admin\general\woo-compatibility.php:9
1752
+ msgctxt "(Admin)"
1753
+ msgid "Enable WooCommerce data on GDPR tool"
1754
+ msgstr "Aktivieren Sie WooCommerce-Daten für das DSDPR-Tool"
1755
+
1756
+ #: src\Admin\AdminTabGeneral.php:241
1757
+ msgctxt "(Admin)"
1758
+ msgid "Enable WooCommerce Compatibility"
1759
+ msgstr "Aktivieren Sie die WooCommerce-Kompatibilität"
1760
+
1761
+ #: views\modules\wordpress-user\dashboard\data-page\form-delete.php:19
1762
+ msgid "Note Regarding Order:"
1763
+ msgstr "Hinweis zur Bestellung:"
1764
+
1765
+ #: views\modules\wordpress-user\dashboard\data-page\form-delete.php:20
1766
+ msgid ""
1767
+ "Your order with status Processing will not get deleted until status change."
1768
+ msgstr ""
1769
+ "Ihre Bestellung mit Statusverarbeitung wird erst gelöscht, wenn sich der "
1770
+ "Status ändert."
1771
+
1772
+ #: views\modules\wordpress-user\dashboard\data-page\form-delete.php:21
1773
+ msgid "Your order with status Completed will get anonymize."
1774
+ msgstr "Ihre Bestellung mit dem Status Abgeschlossen wird anonymisiert."
1775
+
1776
+ #: views\modules\wordpress-user\dashboard\data-page\form-delete.php:22
1777
+ msgid "If you delete Completed order you can't apply for refund."
1778
+ msgstr ""
1779
+ "Wenn Sie die abgeschlossene Bestellung löschen, können Sie keine Erstattung "
1780
+ "beantragen."
1781
+
1782
+ #: views\admin\general\woo-compatibility.php:12
1783
+ msgctxt "(Admin)"
1784
+ msgid "Will work for WooCommerce Version 3.4.0 or later."
1785
+ msgstr "Funktioniert für WooCommerce Version 3.4.0 oder höher."
1786
+
1787
+ #: views\admin\general\edd-compatibility.php:9
1788
+ msgctxt "(Admin)"
1789
+ msgid "Enable EDD data on GDPR tool."
1790
+ msgstr "Aktivieren Sie EDD-Daten für das DSGVO-Tool."
1791
+
1792
+ #: views\admin\general\edd-compatibility.php:12
1793
+ msgctxt "(Admin)"
1794
+ msgid "Will work for EDD Version 2.0.0 or later."
1795
+ msgstr "Funktioniert für EDD Version 2.0.0 oder höher."
1796
+
1797
+ #: src\Admin\AdminTabGeneral.php:262
1798
+ msgctxt "(Admin)"
1799
+ msgid "Enable EDD Compatibility"
1800
+ msgstr "Aktivieren Sie die EDD-Kompatibilität"
1801
+
1802
+ #: gdpr-framework.php:298
1803
+ msgid "Cookie Policy"
1804
+ msgstr "Cookie-Richtlinie"
1805
+
1806
+ #: ConsentManager.php:96
1807
+ msgctxt "(Admin)"
1808
+ msgid ""
1809
+ "This consent is visible by default on woocommerce checkout page. If someone "
1810
+ "wishes to withdraw it, they should simply request to delete all their data."
1811
+ msgstr ""
1812
+ "Diese Einwilligung wird standardmäßig auf der Checkout-Seite von woocommerce "
1813
+ "angezeigt. Wenn jemand es widerrufen möchte, sollte er einfach die Löschung "
1814
+ "aller seiner Daten anfordern."
1815
+
1816
+ #: ConsentManager.php:96
1817
+ msgctxt "(Admin)"
1818
+ msgid "Woocommerce Policy Consent"
1819
+ msgstr "Zustimmung zur Woocommerce-Richtlinie"
1820
+
1821
+ #: WoocommerceGdpr.php:150
1822
+ msgid "Please acknowledge the Privacy Policy"
1823
+ msgstr "Bitte bestätigen Sie die Datenschutzerklärung"
1824
+
1825
+ #: woo-compatibility.php:9
1826
+ msgctxt "(Admin)"
1827
+ msgid "Enable WooCommerce data on GDPR tool."
1828
+ msgstr "Aktivieren Sie WooCommerce-Daten im GDPR-Tool."
1829
+
1830
+ #: views\admin\general\enable-popup.php:12
1831
+ msgctxt "(Admin)"
1832
+ msgid ""
1833
+ "<b>Note:</b> Need to add custom content <b>gdpr_cookie_consent</b> its "
1834
+ "accepted on popup accept button."
1835
+ msgstr ""
1836
+ "<b> Hinweis: </ b> Sie müssen benutzerdefinierten Inhalt hinzufügen. <b> "
1837
+ "gdpr_cookie_consent </ b> Wird über die Schaltfläche zum Akzeptieren des "
1838
+ "Popups akzeptiert."
1839
+
1840
+ #: AdminTabCookiePopup.php:105
1841
+ msgctxt "(Admin)"
1842
+ msgid "Popup Dismiss Text"
1843
+ msgstr "Popup Text schließen"
1844
+
1845
+ #: AdminTabCookiePopup.php:98
1846
+ msgctxt "(Admin)"
1847
+ msgid "Popup Allow Text"
1848
+ msgstr "Popup Text zulassen"
1849
+
1850
+ #: AdminTabGeneral.php:241
1851
+ msgctxt "(Admin)"
1852
+ msgid "Woocommerce Integration"
1853
+ msgstr "Woocommerce-Integration"
1854
+
1855
+ #: AdminTabGeneral.php:259
1856
+ msgctxt "(Admin)"
1857
+ msgid "Easy Digital Download Integration"
1858
+ msgstr "Einfache Integration digitaler Downloads"
1859
+
1860
+ #: has-dpo.php:11
1861
+ msgctxt "(Admin)"
1862
+ msgid "I have appointed a Data Protection Officer (DPO)"
1863
+ msgstr "Ich habe einen Datenschutzbeauftragten ernannt"
1864
+
1865
+ #: views/admin/general/stylesheet.php:9
1866
+ msgctxt "(Admin)"
1867
+ msgid "Enable basic styling for Privacy Tools page."
1868
+ msgstr ""
1869
+ "Aktivieren Sie das grundlegende Styling für die Seite \"Datenschutz-Tools\"."
1870
+
1871
+ #: AdminTabPrivacyPolicy.php:204
1872
+ msgctxt "(Admin)"
1873
+ msgid "Delete Text"
1874
+ msgstr "Text löschen"
1875
+
1876
+ #: consent.php:80
1877
+ msgctxt "(Admin)"
1878
+ msgid "Add consent type"
1879
+ msgstr "Zustimmungstyp hinzufügen"
1880
+
1881
+ #: AdminTabGeneral.php:127
1882
+ msgctxt "(Admin)"
1883
+ msgid "Privacy Policy Custom URL"
1884
+ msgstr "Datenschutzrichtlinie Benutzerdefinierte URL"
1885
+
1886
+ #: custom-policy-url.php:6
1887
+ msgctxt "(Admin)"
1888
+ msgid "Leave blank if privacy policy page already selected"
1889
+ msgstr ""
1890
+ "Lassen Sie dieses Feld leer, wenn die Datenschutzrichtlinie bereits "
1891
+ "ausgewählt ist"
1892
+
1893
+ #: views/admin/general/description-delete-action.php:2
1894
+ msgctxt "(Admin)"
1895
+ msgid "What should happen if a data subject requests deleting their data."
1896
+ msgstr ""
1897
+ "Was soll passieren, wenn eine betroffene Person das Löschen ihrer Daten "
1898
+ "anfordert?"
1899
+
1900
+ #: views/admin/general/description-export-action.php:2
1901
+ msgctxt "(Admin)"
1902
+ msgid "Optional. Select the page which contains your Terms & Conditions"
1903
+ msgstr ""
1904
+ "Wahlweise. Wählen Sie die Seite aus, die Ihre Allgemeinen "
1905
+ "Geschäftsbedingungen enthält"
1906
+
1907
+ #: views/admin/general/description-terms-page.php:2
1908
+ msgctxt "(Admin)"
1909
+ msgid ""
1910
+ "What should happen if a data subject requests viewing or exporting their "
1911
+ "data."
1912
+ msgstr ""
1913
+ "Was soll passieren, wenn eine betroffene Person das Anzeigen oder "
1914
+ "Exportieren ihrer Daten anfordert?"
1915
+
1916
+ #: woo-disable_checkbox.php:9
1917
+ msgctxt "(Admin)"
1918
+ msgid "Disable WooCommerce Privacy Checkbox"
1919
+ msgstr "Deaktivieren Sie das Kontrollkästchen für den WooCommerce-Datenschutz"
1920
+
1921
+ #: AdminTabCookiePopup.php:133
1922
+ msgctxt "(Admin)"
1923
+ msgid "Popup Learn More Text"
1924
+ msgstr "Popup Weitere Informationen Text"
1925
+
1926
+ #: AdminTabGeneral.php:262
1927
+ msgctxt "(Admin)"
1928
+ msgid "Disable WooCommerce Register Privacy Checkbox"
1929
+ msgstr "Deaktivieren Sie das Kontrollkästchen WooCommerce Register Privacy"
1930
+
1931
+ #: AdminTabCookiePopup.php:121
1932
+ msgctxt "(Admin)"
1933
+ msgid "Cookie Acceptance link target"
1934
+ msgstr "Cookie Akzeptanz Link Ziel"
1935
+
1936
+ #: popup_link_target.php:3
1937
+ msgctxt "(Admin)"
1938
+ msgid "Next Tab"
1939
+ msgstr "Nächstes Tab"
1940
+
1941
+ #: popup_link_target.php:5
1942
+ msgctxt "(Admin)"
1943
+ msgid "Self"
1944
+ msgstr "selbst"
languages/gdpr-framework-el.po CHANGED
@@ -1,1940 +1,1940 @@
1
- # SOME DESCRIPTIVE TITLE.
2
- # Copyright (C) YEAR Codelight
3
- # This file is distributed under the same license as the The GDPR Framework package.
4
- # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5
- #
6
- msgid ""
7
- msgstr ""
8
- "Project-Id-Version: The GDPR Framework 1.0\n"
9
- "Report-Msgid-Bugs-To: gdpr@codelight.eu\n"
10
- "POT-Creation-Date: 2018-04-16 10:50+0000\n"
11
- "PO-Revision-Date: 2019-09-19 12:39+0530\n"
12
- "Last-Translator: john maniatopoulos <webace.wp@gmail.com>\n"
13
- "Language-Team: Greek\n"
14
- "Language: el\n"
15
- "MIME-Version: 1.0\n"
16
- "Content-Type: text/plain; charset=UTF-8\n"
17
- "Content-Transfer-Encoding: 8bit\n"
18
- "Plural-Forms: nplurals=2; plural=n != 1;\n"
19
- "X-Generator: Poedit 1.5.7\n"
20
-
21
- #: gdpr-framework.php:26
22
- msgctxt "(Admin)"
23
- msgid "WordPress GDPR &rsaquo; Error"
24
- msgstr "WordPress GDPR & rsaquo; Λάθος"
25
-
26
- #: gdpr-framework.php:35
27
- msgctxt "(Admin)"
28
- msgid "Invalid PHP version"
29
- msgstr "Μη έγκυρη έκδοση PHP"
30
-
31
- #: gdpr-framework.php:35
32
- msgctxt "(Admin)"
33
- msgid "You must be using PHP 5.6.33 or greater."
34
- msgstr "Πρέπει να χρησιμοποιείτε την PHP 5.6.33 ή μεγαλύτερη."
35
-
36
- #: gdpr-framework.php:42
37
- msgctxt "(Admin)"
38
- msgid "Invalid WordPress version"
39
- msgstr "Μη έγκυρη έκδοση WordPress"
40
-
41
- #: gdpr-framework.php:42
42
- msgctxt "(Admin)"
43
- msgid "You must be using WordPress 4.3.0 or greater."
44
- msgstr "Πρέπει να χρησιμοποιείτε WordPress 4.3.0 ή μεγαλύτερη."
45
-
46
- #: gdpr-framework.php:52
47
- msgctxt "(Admin)"
48
- msgid ""
49
- "You appear to be running a development version of GDPR. You must run "
50
- "<code>composer install</code> from the plugin directory."
51
- msgstr ""
52
- "Σας φαίνεται να λειτουργεί μια έκδοση ανάπτυξης του GDPR πρέπει να "
53
- "εκτελέσετε το <code>composer install</code> από τον κατάλογο του plugin."
54
-
55
- #: gdpr-framework.php:53
56
- msgctxt "(Admin)"
57
- msgid "Autoloader not found."
58
- msgstr "Autoloader δεν βρέθηκε."
59
-
60
- #: gdpr-framework.php:115
61
- msgctxt "(Admin)"
62
- msgid "Anonymous"
63
- msgstr "Ανώνυμος"
64
-
65
- #: src/Admin/AdminTab.php:115
66
- msgctxt "(Admin)"
67
- msgid "Save"
68
- msgstr "Αποθήκευση"
69
-
70
- #: src/Admin/AdminTab.php:151
71
- msgctxt "(Admin)"
72
- msgid "Policy generated!"
73
- msgstr "Πολιτική που δημιουργήθηκε!"
74
-
75
- #: src/Admin/AdminTabGeneral.php:11
76
- msgctxt "(Admin)"
77
- msgid "General"
78
- msgstr "Γενικά"
79
-
80
- #: src/Admin/AdminTabGeneral.php:38
81
- msgctxt "(Admin)"
82
- msgid "General Settings"
83
- msgstr "General Settings"
84
-
85
- #: src/Admin/AdminTabGeneral.php:43
86
- msgctxt "(Admin)"
87
- msgid "Enable Privacy Tools"
88
- msgstr "Ενεργοποίηση εργαλείων προστασίας προσωπικών δεδομένων"
89
-
90
- #: src/Admin/AdminTabGeneral.php:53
91
- msgctxt "(Admin)"
92
- msgid "Pages"
93
- msgstr "Σελίδες"
94
-
95
- #: src/Admin/AdminTabGeneral.php:58 src/Admin/WordpressAdmin.php:151
96
- msgctxt "(Admin)"
97
- msgid "Privacy Tools Page"
98
- msgstr "Εργαλεία σελίδας απορρήτου"
99
-
100
- #: src/Admin/AdminTabGeneral.php:65 src/Admin/WordpressAdmin.php:147
101
- msgctxt "(Admin)"
102
- msgid "Privacy Policy Page"
103
- msgstr "Σελίδα Πολιτικής Απορρήτου"
104
-
105
- #: src/Admin/AdminTabGeneral.php:72
106
- msgctxt "(Admin)"
107
- msgid "Terms & Conditions Page"
108
- msgstr "Σελίδα Όρων & Προϋποθέσεων"
109
-
110
- #: src/Admin/AdminTabGeneral.php:82
111
- msgctxt "(Admin)"
112
- msgid "View & Export Data"
113
- msgstr "Προβολή & εξαγωγή δεδομένων"
114
-
115
- #: src/Admin/AdminTabGeneral.php:87
116
- msgctxt "(Admin)"
117
- msgid "Export action"
118
- msgstr "Εξαγωγή"
119
-
120
- #: src/Admin/AdminTabGeneral.php:94 src/Admin/AdminTabGeneral.php:133
121
- msgctxt "(Admin)"
122
- msgid "Email to notify"
123
- msgstr "Διεύθυνση ηλεκτρονικού ταχυδρομείου για κοινοποίηση"
124
-
125
- #: src/Admin/AdminTabGeneral.php:105
126
- msgctxt "(Admin)"
127
- msgid "Delete & Anonymize Data"
128
- msgstr "Διαγραφή του & ανωνυμία δεδομένων"
129
-
130
- #: src/Admin/AdminTabGeneral.php:110
131
- msgctxt "(Admin)"
132
- msgid "Delete action"
133
- msgstr "Διαγραφή ενέργειας"
134
-
135
- #: src/Admin/AdminTabGeneral.php:117
136
- msgctxt "(Admin)"
137
- msgid "Delete or reassign content?"
138
- msgstr "Διαγράψετε ή να εκχωρήσετε εκ νέου περιεχομένου;"
139
-
140
- #: src/Admin/AdminTabGeneral.php:125
141
- msgctxt "(Admin)"
142
- msgid "Reassign content to"
143
- msgstr "Επανατοποθετήστε περιεχόμενο σε"
144
-
145
- #: src/Admin/AdminTabGeneral.php:145
146
- msgctxt "(Admin)"
147
- msgid "Styling"
148
- msgstr "Μορφοποίηση"
149
-
150
- #: src/Admin/AdminTabGeneral.php:150
151
- msgctxt "(Admin)"
152
- msgid "Enable basic styling on Privacy Tools page"
153
- msgstr "Ενεργοποίηση βασικού στυλ στη σελίδα εργαλεία απορρήτου"
154
-
155
- #: src/Admin/AdminTabGeneral.php:162
156
- msgctxt "(Admin)"
157
- msgid "Compatibility"
158
- msgstr "Συμβατότητα"
159
-
160
- #: src/Admin/AdminTabGeneral.php:167
161
- msgctxt "(Admin)"
162
- msgid "Enable automatic theme compatibility"
163
- msgstr "Ενεργοποίηση αυτόματης συμβατότητας θέματος"
164
-
165
- #: src/Admin/AdminTabGeneral.php:184 src/Admin/AdminTabGeneral.php:200
166
- #: src/Admin/AdminTabGeneral.php:213 src/Admin/AdminTabGeneral.php:252
167
- #: views/installer/steps/configuration-settings.php:62
168
- msgctxt "(Admin)"
169
- msgid "&mdash; Select &mdash;"
170
- msgstr "&mdash; επιλέγω &mdash;"
171
-
172
- #: src/Admin/WordpressAdmin.php:65
173
- msgctxt "(Admin)"
174
- msgid "Privacy & GDPR Settings"
175
- msgstr "Απορρήτου & GDPR ρυθμίσεις"
176
-
177
- #: src/Admin/WordpressAdmin.php:66
178
- msgctxt "(Admin)"
179
- msgid "Privacy"
180
- msgstr "Προστασία Απορρήτου"
181
-
182
- #: src/Components/Consent/AdminTabConsent.php:30
183
- #: src/Components/Consent/AdminTabConsent.php:49
184
- msgctxt "(Admin)"
185
- msgid "Consent"
186
- msgstr "Συγκατάθεση"
187
-
188
- #: src/Components/Consent/AdminTabConsent.php:157
189
- msgctxt "(Admin)"
190
- msgid "Consent slug is a required field!"
191
- msgstr "Συγκατάθεση slug είναι ένα απαιτούμενο πεδίο!"
192
-
193
- #: src/Components/Consent/AdminTabConsent.php:162
194
- msgctxt "(Admin)"
195
- msgid ""
196
- "You may only use alphanumeric characters, dash and underscore in the consent "
197
- "slug field."
198
- msgstr ""
199
- "Μπορείτε να χρησιμοποιήσετε μόνο αλφαριθμητικούς χαρακτήρες, παύλα και "
200
- "υπογράμμιση στο πεδίο συγκατάθεσης."
201
-
202
- #: src/Components/Consent/AdminTabConsent.php:167
203
- msgctxt "(Admin)"
204
- msgid "Consent title is a required field!"
205
- msgstr "Συγκατάθεση τίτλος το πεδίο είναι υποχρεωτικό!"
206
-
207
- #: src/Components/Consent/ConsentManager.php:46
208
- #: views/modules/contact-form-7/content-privacy.php:2
209
- #: views/modules/wordpress-comments/terms-checkbox.php:14
210
- #: views/modules/wordpress-user/registration-terms-checkbox.php:15
211
- #, php-format
212
- msgid "I accept the %sPrivacy Policy%s"
213
- msgstr "Αποδέχομαι την %sΠολιτική Προστασίας Προσωπικών Δεδομένων%s"
214
-
215
- #: src/Components/Consent/ConsentManager.php:50
216
- #: src/Components/Consent/ConsentManager.php:69
217
- msgctxt "(Admin)"
218
- msgid ""
219
- "This consent is not visible by default. If someone wishes to withdraw it, "
220
- "they should simply request to delete all their data."
221
- msgstr ""
222
- "Αυτή η συγκατάθεση δεν είναι ορατή από προεπιλογή. Αν κάποιος επιθυμεί να "
223
- "την αποσύρει, θα πρέπει απλώς να ζητήσει τη διαγραφή όλων των δεδομένων."
224
-
225
- #: src/Components/Consent/ConsentManager.php:65
226
- #, php-format
227
- msgid "I accept the %sTerms & Conditions%s"
228
- msgstr "Αποδέχομαι τους %sΌρους & Προϋποθέσεις%s"
229
-
230
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:19
231
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:61
232
- #: views/admin/privacy-policy/generated.php:1 views/installer/header.php:41
233
- msgctxt "(Admin)"
234
- msgid "Privacy Policy"
235
- msgstr "Πολιτική Απορρήτου"
236
-
237
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:70
238
- msgctxt "(Admin)"
239
- msgid "Company information"
240
- msgstr "ΠΛΗΡΟΦΟΡΙΕΣ ΓΙΑ ΤΗΝ ΕΤΑΙΡΙΑ"
241
-
242
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:75
243
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:209
244
- msgctxt "(Admin)"
245
- msgid "Company Name"
246
- msgstr "Όνομα Εταιρίας"
247
-
248
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:82
249
- msgctxt "(Admin)"
250
- msgid "Company Email"
251
- msgstr "Εταιρικό email"
252
-
253
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:89
254
- msgctxt "(Admin)"
255
- msgid "Company Location"
256
- msgstr "Τοποθεσία της εταιρείας"
257
-
258
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:105
259
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:245
260
- msgctxt "(Admin)"
261
- msgid "Representative Contact Name"
262
- msgstr "Αντιπροσωπευτικό όνομα επαφής"
263
-
264
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:112
265
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:252
266
- msgctxt "(Admin)"
267
- msgid "Representative Contact Email"
268
- msgstr "Εκπρόσωπος επικοινωνίας Email"
269
-
270
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:119
271
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:259
272
- msgctxt "(Admin)"
273
- msgid "Representative Contact Phone"
274
- msgstr "Τηλέφωνο επικοινωνίας του εκπροσώπου"
275
-
276
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:135
277
- msgctxt "(Admin)"
278
- msgid "Data Protection Authority"
279
- msgstr "Αρχή προστασίας δεδομένων"
280
-
281
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:141
282
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:286
283
- msgctxt "(Admin)"
284
- msgid "Data Protection Authority Website"
285
- msgstr "Δικτυακός τόπος της αρχής προστασίας δεδομένων"
286
-
287
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:148
288
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:293
289
- msgctxt "(Admin)"
290
- msgid "Data Protection Authority Email"
291
- msgstr "Ηλεκτρονικό ταχυδρομείο αρχής προστασίας δεδομένων"
292
-
293
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:155
294
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:300
295
- msgctxt "(Admin)"
296
- msgid "Data Protection Authority Phone"
297
- msgstr "Τηλέφωνο αρχής προστασίας δεδομένων"
298
-
299
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:165
300
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:175
301
- msgctxt "(Admin)"
302
- msgid "Data Protection Officer"
303
- msgstr "Υπεύθυνος προστασίας δεδομένων"
304
-
305
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:168
306
- msgctxt "(Admin)"
307
- msgid "Knowledge base: Do I need to appoint a Data Protection Officer?"
308
- msgstr ""
309
- "Γνωσιακή βάση: χρειάζεται να διορίσει έναν υπεύθυνο προστασίας δεδομένων;"
310
-
311
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:182
312
- msgctxt "(Admin)"
313
- msgid "Data Protection Officer Name"
314
- msgstr "Όνομα υπευθύνου προστασίας δεδομένων"
315
-
316
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:190
317
- msgctxt "(Admin)"
318
- msgid "Data Protection Officer Email"
319
- msgstr "Ηλεκτρονικό ταχυδρομείο υπευθύνου προστασίας δεδομένων"
320
-
321
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:216
322
- msgctxt "(Admin)"
323
- msgid "Contact Email"
324
- msgstr "Email επικοινωνίας"
325
-
326
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:235
327
- msgctxt "(Admin)"
328
- msgid "Representative Contact"
329
- msgstr "Εκπρόσωπος επικοινωνίας"
330
-
331
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:238
332
- msgctxt "(Admin)"
333
- msgid "Knowledge base: Do I need to appoint an EU-based representative?"
334
- msgstr "Γνωσιακή Βάση : πρέπει να διορίζει έναν εκπρόσωπο που εδρεύει στην ΕΕ;"
335
-
336
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:317
337
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:324
338
- msgctxt "(Admin)"
339
- msgid "DPO Name"
340
- msgstr "Όνομα DPO"
341
-
342
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:420
343
- msgctxt "(Admin)"
344
- msgid "Save & Generate Policy"
345
- msgstr "Αποθήκευση & Δημιουργία πολιτικής"
346
-
347
- #: src/Components/PrivacyPolicy/PrivacyPolicy.php:82
348
- #: src/Installer/Installer.php:271 src/Installer/Steps/PolicySettings.php:199
349
- #: views/themes/storefront/footer.php:3
350
- #: views/themes/twentyseventeen/footer.php:3
351
- #: views/themes/twentysixteen/footer.php:4
352
- msgid "Privacy Policy"
353
- msgstr "Προσωπικά δεδομένα"
354
-
355
- #: src/Components/PrivacyToolsPage/PrivacyToolsPageShortcode.php:19
356
- msgid "This page is currently disabled."
357
- msgstr "Αυτήν τη στιγμή αυτή η σελίδα είναι απενεργοποιημένη."
358
-
359
- #: src/Components/PrivacyToolsPage/PrivacyToolsPageShortcode.php:35
360
- #: src/Installer/Installer.php:279
361
- #: src/Installer/Steps/ConfigurationPages.php:55
362
- #: views/themes/storefront/footer.php:7
363
- #: views/themes/twentyseventeen/footer.php:7
364
- #: views/themes/twentysixteen/footer.php:9
365
- msgid "Privacy Tools"
366
- msgstr "Επεξεργασία προσωπικών δεδομένων"
367
-
368
- #: src/Components/Support/AdminTabSupport.php:13
369
- #: src/Components/Support/AdminTabSupport.php:20
370
- msgctxt "(Admin)"
371
- msgid "Support"
372
- msgstr "Υποστήριξη"
373
-
374
- #: src/Components/WordpressComments/WordpressComments.php:90
375
- #, php-format
376
- msgid "%sERROR:%s You need to accept the privacy policy to post a comment."
377
- msgstr ""
378
- "%sERROR:%s Πρέπει να αποδεχτείτε την πολιτική απορρήτου για να δημοσιεύσετε "
379
- "ένα σχόλιο."
380
-
381
- #: src/Components/WordpressUser/Controllers/DashboardDataPageController.php:54
382
- #: views/privacy-tools/notices.php:19
383
- msgid "We have received your request and will reply within 30 days."
384
- msgstr "Λάβαμε το αίτημά σας και θα απαντήσουμε εντός 30 ημερών."
385
-
386
- #: src/Components/WordpressUser/Controllers/DashboardDataPageController.php:59
387
- #: views/privacy-tools/notices.php:15
388
- msgid "Consent withdrawn."
389
- msgstr "Η συγκατάθεση αποσύρεται."
390
-
391
- #: src/Components/WordpressUser/RegistrationForm.php:42
392
- msgid "<strong>ERROR</strong>: You must accept the terms and conditions."
393
- msgstr ""
394
- "<strong>ΣΦΑΛΜΑ</ strong>: Πρέπει να αποδεχτείτε τους όρους και τις "
395
- "προϋποθέσεις."
396
-
397
- #: src/Components/WordpressUser/WordpressUser.php:63
398
- #: src/Components/WordpressUser/WordpressUser.php:64
399
- #: views/modules/wordpress-user/dashboard/data-page/header.php:2
400
- msgctxt "(Admin)"
401
- msgid "Privacy Tools"
402
- msgstr "Εργαλεία απορρήτου"
403
-
404
- #: src/DataSubject/AdminTabDataSubject.php:27
405
- #: src/DataSubject/AdminTabDataSubject.php:41
406
- msgctxt "(Admin)"
407
- msgid "Data Subjects"
408
- msgstr "Υποκείμενα των δεδομένων"
409
-
410
- #: src/DataSubject/DataRepository.php:143
411
- msgid "Data exported"
412
- msgstr "Εξαγόμενα δεδομένα"
413
-
414
- #: src/DataSubject/DataRepository.php:158
415
- msgid "Data export request"
416
- msgstr "Αίτημα εξαγωγής δεδομένων"
417
-
418
- #: src/DataSubject/DataRepository.php:171
419
- msgid "Data removed"
420
- msgstr "Τα δεδομένα καταργήθηκαν"
421
-
422
- #: src/DataSubject/DataRepository.php:186
423
- msgid "Data removal request"
424
- msgstr "Αίτημα κατάργησης δεδομένων"
425
-
426
- #: src/DataSubject/DataSubjectIdentificator.php:65
427
- #: src/DataSubject/DataSubjectIdentificator.php:82
428
- msgid "Your personal data on"
429
- msgstr "Τα προσωπικά σας δεδομένα στο"
430
-
431
- #: src/Helpers.php:27
432
- msgctxt "(Admin)"
433
- msgid "Austria"
434
- msgstr "Αυστρία"
435
-
436
- #: src/Helpers.php:28
437
- msgctxt "(Admin)"
438
- msgid "Belgium"
439
- msgstr "Βέλγιο"
440
-
441
- #: src/Helpers.php:29
442
- msgctxt "(Admin)"
443
- msgid "Bulgaria"
444
- msgstr "Βουλγαρία"
445
-
446
- #: src/Helpers.php:30
447
- msgctxt "(Admin)"
448
- msgid "Croatia"
449
- msgstr "Κροατία"
450
-
451
- #: src/Helpers.php:31
452
- msgctxt "(Admin)"
453
- msgid "Cyprus"
454
- msgstr "Κύπρος"
455
-
456
- #: src/Helpers.php:32
457
- msgctxt "(Admin)"
458
- msgid "Czech Republic"
459
- msgstr "Τσεχική Δημοκρατία"
460
-
461
- #: src/Helpers.php:33
462
- msgctxt "(Admin)"
463
- msgid "Denmark"
464
- msgstr "Δανία"
465
-
466
- #: src/Helpers.php:34
467
- msgctxt "(Admin)"
468
- msgid "Estonia"
469
- msgstr "Εσθονία"
470
-
471
- #: src/Helpers.php:35
472
- msgctxt "(Admin)"
473
- msgid "Finland"
474
- msgstr "Φινλανδία"
475
-
476
- #: src/Helpers.php:36
477
- msgctxt "(Admin)"
478
- msgid "France"
479
- msgstr "Γαλλία"
480
-
481
- #: src/Helpers.php:37
482
- msgctxt "(Admin)"
483
- msgid "Germany"
484
- msgstr "Γερμανία"
485
-
486
- #: src/Helpers.php:38
487
- msgctxt "(Admin)"
488
- msgid "Greece"
489
- msgstr "Ελλάδα"
490
-
491
- #: src/Helpers.php:39
492
- msgctxt "(Admin)"
493
- msgid "Hungary"
494
- msgstr "Ουγγαρία"
495
-
496
- #: src/Helpers.php:40
497
- msgctxt "(Admin)"
498
- msgid "Ireland"
499
- msgstr "Ιρλανδία"
500
-
501
- #: src/Helpers.php:41
502
- msgctxt "(Admin)"
503
- msgid "Italy"
504
- msgstr "Ιταλία"
505
-
506
- #: src/Helpers.php:42
507
- msgctxt "(Admin)"
508
- msgid "Latvia"
509
- msgstr "Λετονία"
510
-
511
- #: src/Helpers.php:43
512
- msgctxt "(Admin)"
513
- msgid "Lithuania"
514
- msgstr "Λιθουανία"
515
-
516
- #: src/Helpers.php:44
517
- msgctxt "(Admin)"
518
- msgid "Luxembourg"
519
- msgstr "Λουξεμβούργο"
520
-
521
- #: src/Helpers.php:45
522
- msgctxt "(Admin)"
523
- msgid "Malta"
524
- msgstr "Μάλτα"
525
-
526
- #: src/Helpers.php:46
527
- msgctxt "(Admin)"
528
- msgid "Netherlands"
529
- msgstr "Ολλανδία"
530
-
531
- #: src/Helpers.php:47
532
- msgctxt "(Admin)"
533
- msgid "Poland"
534
- msgstr "Πολωνία"
535
-
536
- #: src/Helpers.php:48
537
- msgctxt "(Admin)"
538
- msgid "Portugal"
539
- msgstr "Πορτογαλία"
540
-
541
- #: src/Helpers.php:49
542
- msgctxt "(Admin)"
543
- msgid "Romania"
544
- msgstr "Ρουμανία"
545
-
546
- #: src/Helpers.php:50
547
- msgctxt "(Admin)"
548
- msgid "Slovakia"
549
- msgstr "Σλοβακία"
550
-
551
- #: src/Helpers.php:51
552
- msgctxt "(Admin)"
553
- msgid "Slovenia"
554
- msgstr "Σλοβενία"
555
-
556
- #: src/Helpers.php:52
557
- msgctxt "(Admin)"
558
- msgid "Spain"
559
- msgstr "Ισπανία"
560
-
561
- #: src/Helpers.php:53
562
- msgctxt "(Admin)"
563
- msgid "Sweden"
564
- msgstr "Σουηδία"
565
-
566
- #: src/Helpers.php:54
567
- msgctxt "(Admin)"
568
- msgid "United Kingdom"
569
- msgstr "Ηνωμένο Βασίλειο"
570
-
571
- #: src/Helpers.php:69
572
- msgctxt "(Admin)"
573
- msgid "Iceland"
574
- msgstr "Ισλανδία"
575
-
576
- #: src/Helpers.php:70
577
- msgctxt "(Admin)"
578
- msgid "Norway"
579
- msgstr "Νορβηγία"
580
-
581
- #: src/Helpers.php:71
582
- msgctxt "(Admin)"
583
- msgid "Liechtenstein"
584
- msgstr "Λιχτενστάιν"
585
-
586
- #: src/Helpers.php:72
587
- msgctxt "(Admin)"
588
- msgid "Switzerland"
589
- msgstr "Ελβετία"
590
-
591
- #: src/Helpers.php:73
592
- msgctxt "(Admin)"
593
- msgid "United States"
594
- msgstr "Ηνωμένες Πολιτείες"
595
-
596
- #: src/Helpers.php:74
597
- msgctxt "(Admin)"
598
- msgid "Rest of the world"
599
- msgstr "Υπόλοιπος κόσμος"
600
-
601
- #: src/Helpers.php:145
602
- msgid "An error has occurred. Please contact the site administrator."
603
- msgstr "Παρουσιάστηκε σφάλμα. Επικοινωνήστε με τον διαχειριστή του ιστότοπου."
604
-
605
- #: src/Installer/Installer.php:135
606
- msgctxt "(Admin)"
607
- msgid "Setup Wizard"
608
- msgstr "Οδηγός εγκατάστασης"
609
-
610
- #: src/Installer/Steps/ConfigurationPages.php:23
611
- #: src/Installer/Steps/PolicySettings.php:23
612
- #: src/Installer/Steps/PolicySettings.php:48
613
- msgctxt "(Admin)"
614
- msgid "&mdash; Create a new page &mdash;"
615
- msgstr "&mdash; Δημιουργήστε μια νέα σελίδα &mdash;"
616
-
617
- #: src/Installer/Steps/PolicySettings.php:38
618
- msgctxt "(Admin)"
619
- msgid ""
620
- "We have automatically selected your WooCommerce Terms & Conditions page."
621
- msgstr ""
622
- "Έχουμε επιλέξει αυτόματα τη σελίδα σας όρους WooCommerce & προϋποθέσεις."
623
-
624
- #: src/Modules/ContactForm7/ContactForm7.php:35
625
- msgctxt "(Admin)"
626
- msgid "gdpr terms txt"
627
- msgstr "gdpr όρους txt"
628
-
629
- #: src/Router.php:80 src/Router.php:92 src/Router.php:125 src/Router.php:141
630
- #, php-format
631
- msgid "Nonce error for action \"%s\". Please go back and try again!"
632
- msgstr "Σφάλμα nonce για ενέργεια \"%s\". Επιστρέψτε και δοκιμάστε ξανά!"
633
-
634
- #: src/Router.php:149
635
- msgctxt "(Admin)"
636
- msgid "You do not have the required permissions to perform this action!"
637
- msgstr ""
638
- "Δεν έχετε τα απαιτούμενα δικαιώματα για να εκτελέσετε αυτήν την ενέργεια!"
639
-
640
- #: views/admin/consent.php:3
641
- msgctxt "(Admin)"
642
- msgid "Default consent types"
643
- msgstr "Προεπιλεγμένοι τύποι συγκατάθεσης"
644
-
645
- #: views/admin/consent.php:4
646
- msgctxt "(Admin)"
647
- msgid ""
648
- "These are the consent types that have been automatically registered by the "
649
- "framework or a plugin."
650
- msgstr ""
651
- "Αυτοί είναι οι τύποι συγκατάθεσης που έχουν καταχωρηθεί αυτόματα από το "
652
- "πλαίσιο ή από ένα πρόσθετο."
653
-
654
- #: views/admin/consent.php:7 views/admin/consent.php:52
655
- msgctxt "(Admin)"
656
- msgid "Slug"
657
- msgstr "Γυμνοσάλιαγκας"
658
-
659
- #: views/admin/consent.php:8 views/admin/consent.php:38
660
- #: views/admin/consent.php:60
661
- msgctxt "(Admin)"
662
- msgid "Title"
663
- msgstr "Τίτλος"
664
-
665
- #: views/admin/consent.php:9 views/admin/consent.php:41
666
- #: views/admin/consent.php:63
667
- msgctxt "(Admin)"
668
- msgid "Description"
669
- msgstr "Περιγραφή"
670
-
671
- #: views/admin/consent.php:10
672
- msgctxt "(Admin)"
673
- msgid "Visibility"
674
- msgstr "Εμφάνιση"
675
-
676
- #: views/admin/consent.php:18
677
- msgctxt "(Admin)"
678
- msgid "Visible"
679
- msgstr "Ορατό"
680
-
681
- #: views/admin/consent.php:20
682
- msgctxt "(Admin)"
683
- msgid "Hidden"
684
- msgstr "Κρυφό"
685
-
686
- #: views/admin/consent.php:29
687
- msgctxt "(Admin)"
688
- msgid "Custom consent types"
689
- msgstr " Προσαρμοσμένοι τύποι συγκατάθεσης"
690
-
691
- #: views/admin/consent.php:30
692
- msgctxt "(Admin)"
693
- msgid ""
694
- "Here you can add custom consent types to track. They will not be used "
695
- "anywhere by default - you will need to build an integration for each of them."
696
- msgstr ""
697
- "Εδώ μπορείτε να προσθέσετε προσαρμοσμένους τύπους συγκατάθεσης για "
698
- "παρακολούθηση. Δεν θα χρησιμοποιηθούν οπουδήποτε από προεπιλογή - θα "
699
- "χρειαστεί να οικοδομήσετε μια ενοποίηση για καθένα από αυτά."
700
-
701
- #: views/admin/consent.php:35
702
- msgctxt "(Admin)"
703
- msgid "Machine-readable slug"
704
- msgstr "Μηχανή αναγνώσιμη γυμνοσάλιαγκας"
705
-
706
- #: views/admin/consent.php:44 views/admin/consent.php:68
707
- msgctxt "(Admin)"
708
- msgid "Visible?"
709
- msgstr "Ορατός?"
710
-
711
- #: views/admin/consent.php:72
712
- msgctxt "(Admin)"
713
- msgid "Remove"
714
- msgstr "Αφαίρεση"
715
-
716
- #: views/admin/consent.php:93
717
- msgctxt "(Admin)"
718
- msgid "Additional info"
719
- msgstr "Επιπλέον πληροφορίες"
720
-
721
- #: views/admin/consent.php:95
722
- msgctxt "(Admin)"
723
- msgid ""
724
- "This text will be displayed to your data subjects on the Privacy Tools page."
725
- msgstr ""
726
- "Αυτό το κείμενο θα εμφανιστεί στα υποκείμενα των δεδομένων σας στη σελίδα "
727
- "εργαλεία απορρήτου."
728
-
729
- #: views/admin/data-subjects/search-form.php:2
730
- msgctxt "(Admin)"
731
- msgid ""
732
- "On this page, you can find which data subjects personal data you are storing "
733
- "and download, export or delete it."
734
- msgstr ""
735
- "Σε αυτή τη σελίδα μπορείτε να βρείτε ποια δεδομένα θέματα προσωπικών "
736
- "δεδομένων, μπορείτε να αποθηκεύετε και να κατεβάσετε, εξαγωγή ή να "
737
- "διαγράψετε αυτό."
738
-
739
- #: views/admin/data-subjects/search-form.php:10
740
- msgctxt "(Admin)"
741
- msgid "Find data subject by email"
742
- msgstr "Βρείτε το υποκείμενο των δεδομένων μέσω ηλεκτρονικού ταχυδρομείου"
743
-
744
- #: views/admin/data-subjects/search-form.php:11
745
- msgctxt "(Admin)"
746
- msgid "Email address"
747
- msgstr "Διεύθυνση Email"
748
-
749
- #: views/admin/data-subjects/search-form.php:16
750
- msgctxt "(Admin)"
751
- msgid "Search"
752
- msgstr "Αναζήτηση"
753
-
754
- #: views/admin/data-subjects/search-results.php:7
755
- msgctxt "(Admin)"
756
- msgid "Username"
757
- msgstr "Όνομα χρήστη"
758
-
759
- #: views/admin/data-subjects/search-results.php:12
760
- msgctxt "(Admin)"
761
- msgid "is not a registered user."
762
- msgstr "δεν είναι εγγεγραμμένος χρήστης."
763
-
764
- #: views/admin/data-subjects/search-results.php:16
765
- msgctxt "(Admin)"
766
- msgid "Download data (html)"
767
- msgstr "Λήψη δεδομένων (html)"
768
-
769
- #: views/admin/data-subjects/search-results.php:17
770
- msgctxt "(Admin)"
771
- msgid "Export data (json)"
772
- msgstr "Εξαγωγή δεδομένων (json)"
773
-
774
- #: views/admin/data-subjects/search-results.php:21
775
- msgctxt "(Admin)"
776
- msgid ""
777
- "This user has admin capabilities. Deleting data via this interface is "
778
- "disabled."
779
- msgstr ""
780
- "Αυτός ο χρήστης έχει τις δυνατότητες διαχείρισης. Διαγραφή δεδομένων μέσω "
781
- "αυτής της διασύνδεσης είναι απενεργοποιημένη."
782
-
783
- #: views/admin/data-subjects/search-results.php:24
784
- msgctxt "(Admin)"
785
- msgid "Anonymize data"
786
- msgstr "Ανωνυμία δεδομένων"
787
-
788
- #: views/admin/data-subjects/search-results.php:25
789
- msgctxt "(Admin)"
790
- msgid "Delete data"
791
- msgstr "Διαγραφή Δεδομένων"
792
-
793
- #: views/admin/data-subjects/search-results.php:29
794
- msgctxt "(Admin)"
795
- msgid "No data found!"
796
- msgstr "Δεν βρέθηκαν δεδομένα"
797
-
798
- #: views/admin/general/delete-action-email.php:5
799
- #: views/admin/general/export-action-email.php:5
800
- #: views/installer/steps/configuration-settings.php:29
801
- #: views/installer/steps/configuration-settings.php:79
802
- msgid "Email address"
803
- msgstr "Διεύθυνση ηλεκτρονικού ταχυδρομείου"
804
-
805
- #: views/admin/general/delete-action-reassign.php:3
806
- #: views/installer/steps/configuration-settings.php:50
807
- msgctxt "(Admin)"
808
- msgid "Delete content"
809
- msgstr "Διαγραφή περιεχομένου"
810
-
811
- #: views/admin/general/delete-action-reassign.php:6
812
- #: views/installer/steps/configuration-settings.php:53
813
- msgctxt "(Admin)"
814
- msgid "Reassign content to a user"
815
- msgstr "Αντιστοιχίστε εκ νέου το περιεχόμενο σε ένα χρήστη"
816
-
817
- #: views/admin/general/delete-action-reassign.php:10
818
- msgctxt "(Admin)"
819
- msgid ""
820
- "If the user has submitted any content on your site, should it be deleted or "
821
- "reassigned to another user?"
822
- msgstr ""
823
- "Εάν ο χρήστης έχει υποβάλει οποιοδήποτε περιεχόμενο στην ιστοσελίδα σας, "
824
- "πρέπει να διαγραφεί και να εκχωρηθούν σε κάποιον άλλο χρήστη;"
825
-
826
- #: views/admin/general/description-data-page.php:2
827
- msgctxt "(Admin)"
828
- msgid ""
829
- "Select the page where users can go to control their data. This page must "
830
- "contain the [gdpr_privacy_tools] shortcode."
831
- msgstr ""
832
- "Επιλέξτε τη σελίδα όπου οι χρήστες μπορούν να πάνε για τον έλεγχο των "
833
- "δεδομένων τους. Αυτή η σελίδα πρέπει να περιέχει το shortcode "
834
- "[gdpr_privacy_tools]."
835
-
836
- #: views/admin/general/enable.php:9
837
- msgctxt "(Admin)"
838
- msgid "Enable the view, export and forget functionality for users and visitors"
839
- msgstr ""
840
- "Ενεργοποιήσετε την προβολή, να εξαγάγετε και να ξεχάσετε τη λειτουργικότητα "
841
- "για τους χρήστες και επισκέπτες."
842
-
843
- #: views/admin/general/enable.php:12
844
- msgctxt "(Admin)"
845
- msgid ""
846
- "Enable the Privacy Tools page on front-end and dashboard. This allows "
847
- "visitors to request viewing and deleting their personal data and withdraw "
848
- "consents."
849
- msgstr ""
850
- "Ενεργοποίηση της σελίδας εργαλείων προστασίας προσωπικών δεδομένων για front-"
851
- "end και ταμπλό. Αυτό επιτρέπει στους επισκέπτες να ζητήσουν προβολή και "
852
- "διαγραφή των προσωπικών τους δεδομένων και να αποσύρουν τις συναινέσεις."
853
-
854
- #: views/admin/general/theme-compatibility.php:9
855
- #: views/installer/steps/integrations.php:21
856
- msgctxt "(Admin)"
857
- msgid ""
858
- "Automatically add Privacy Policy and Privacy Tools links to your site footer."
859
- msgstr ""
860
- "Αυτόματα προσθέστε πολιτική απορρήτου και προστασίας προσωπικών δεδομένων "
861
- "εργαλεία συνδέσεις υποσέλιδο ιστοσελίδα σας."
862
-
863
- #: views/admin/notices/header.php:4 views/admin/settings-page.php:3
864
- #: views/installer/header.php:23
865
- msgctxt "(Admin)"
866
- msgid "The GDPR Framework"
867
- msgstr "Το πλαίσιο GDPR"
868
-
869
- #: views/admin/notices/helper-autoinstall.php:2
870
- msgctxt "(Admin)"
871
- msgid ""
872
- "A Privacy Policy page has been created, but it is empty. You can generate a "
873
- "policy template on this page."
874
- msgstr ""
875
- "Έχει δημιουργηθεί μια σελίδα Πολιτική προστασίας προσωπικών δεδομένων, αλλά "
876
- "είναι κενή. Μπορείτε να δημιουργήσετε ένα πρότυπο πολιτικής σε αυτήν τη "
877
- "σελίδα."
878
-
879
- #: views/admin/notices/helper-policy.php:2
880
- msgctxt "(Admin)"
881
- msgid ""
882
- "Heads up - your Privacy Policy still requires some attention. Find the "
883
- "places marked with [TODO] and replace them with real content!"
884
- msgstr ""
885
- "Heads up - πολιτική απορρήτου σας εξακολουθεί να απαιτεί κάποια προσοχή. "
886
- "Βρείτε τα σημεία που σημειώνονται με [TODO] και την αντικατάστασή τους με "
887
- "πραγματικό περιεχόμενο!"
888
-
889
- #: views/admin/notices/helper-tools.php:2
890
- msgctxt "(Admin)"
891
- msgid ""
892
- "The contents of this page should contain the [gdpr_privacy_tools] shortcode."
893
- msgstr ""
894
- "Το περιεχόμενο αυτής της σελίδας θα πρέπει να περιέχει το shortcode "
895
- "[gdpr_privacy_tools]."
896
-
897
- #: views/admin/privacy-policy/description-policy-page.php:2
898
- msgctxt "(Admin)"
899
- msgid "Select the page which will contain your Privacy Policy"
900
- msgstr "Επιλέξτε τη σελίδα που θα περιέχει την πολιτική απορρήτου σας"
901
-
902
- #: views/admin/privacy-policy/generated.php:3
903
- msgctxt "(Admin)"
904
- msgid "Your Privacy Policy has been generated."
905
- msgstr "Η Πολιτική προστασίας προσωπικών δεδομένων σας έχει δημιουργηθεί."
906
-
907
- #: views/admin/privacy-policy/generated.php:20
908
- msgctxt "(Admin)"
909
- msgid "&laquo; Back"
910
- msgstr "&laquo; Πίσω"
911
-
912
- #: views/admin/privacy-policy/header.php:2
913
- msgctxt "(Admin)"
914
- msgid ""
915
- "This page allows you to generate a Privacy Policy based on the information "
916
- "you entered below."
917
- msgstr ""
918
- "Η σελίδα αυτή σας επιτρέπει να δημιουργήσετε μια πολιτική απορρήτου που "
919
- "βασίζεται στις πληροφορίες που καθορίσατε παρακάτω."
920
-
921
- #: views/admin/settings-page.php:31
922
- #, php-format
923
- msgctxt "(Admin)"
924
- msgid "The GDPR Framework. Built with &#9829; by %sCodelight%s."
925
- msgstr "Το πλαίσιο GDPR. Χτισμένο με & # 9829; κατά% sCodelight% s."
926
-
927
- #: views/admin/support/contents.php:5 views/installer/steps/finish.php:10
928
- msgctxt "(Admin)"
929
- msgid "Need more info?"
930
- msgstr "Χρειάζεστε περισσότερες πληροφορίες;"
931
-
932
- #: views/admin/support/contents.php:11 views/installer/steps/finish.php:16
933
- msgctxt "(Admin)"
934
- msgid "Site Owner's guide to GDPR"
935
- msgstr "Οδηγός ιδιοκτήτη τοποθεσίας στο GDPR"
936
-
937
- #: views/admin/support/contents.php:14 views/installer/steps/finish.php:19
938
- msgctxt "(Admin)"
939
- msgid "Read the full guide on GDPR compliance."
940
- msgstr "Διαβάστε τον πλήρη οδηγό σχετικά με τη συμμόρφωση του GDPR."
941
-
942
- #: views/admin/support/contents.php:20 views/installer/steps/finish.php:25
943
- msgctxt "(Admin)"
944
- msgid "Knowledge base"
945
- msgstr "Γνωσιακή Βάση"
946
-
947
- #: views/admin/support/contents.php:23 views/installer/steps/finish.php:28
948
- msgctxt "(Admin)"
949
- msgid "Check out the knowledge base for common questions and answers."
950
- msgstr "Ελέγξτε την Γνωσιακή βάση για συχνές ερωτήσεις και απαντήσεις."
951
-
952
- #: views/admin/support/contents.php:29 views/installer/steps/finish.php:34
953
- msgctxt "(Admin)"
954
- msgid "Developer's guide to GDPR"
955
- msgstr "Οδηγός για προγραμματιστές να GDPR"
956
-
957
- #: views/admin/support/contents.php:32 views/installer/steps/finish.php:37
958
- msgctxt "(Admin)"
959
- msgid "We have a thorough guide to help making custom sites compliant."
960
- msgstr ""
961
- "Έχουμε έναν λεπτομερή οδηγό για να βοηθήσουμε στην προσαρμογή των "
962
- "προσαρμοσμένων ιστότοπων."
963
-
964
- #: views/admin/support/contents.php:40 views/installer/steps/finish.php:45
965
- msgctxt "(Admin)"
966
- msgid "Need help?"
967
- msgstr "Χρειάζεστε βοήθεια;"
968
-
969
- #: views/admin/support/contents.php:46 views/installer/steps/finish.php:51
970
- msgctxt "(Admin)"
971
- msgid "Submit a support request"
972
- msgstr "Υποβάλετε ένα αίτημα υποστήριξης"
973
-
974
- #: views/admin/support/contents.php:49 views/installer/steps/finish.php:54
975
- msgctxt "(Admin)"
976
- msgid ""
977
- "Found a bug or problem with the plugin? Post in the wordpress.org support "
978
- "forum."
979
- msgstr ""
980
- "Βρέθηκε ένα bug ή πρόβλημα με το plugin; Δημοσίευση στα φόρουμ υποστήριξης "
981
- "της wordpress.org."
982
-
983
- #: views/admin/support/contents.php:55 views/installer/steps/finish.php:60
984
- msgctxt "(Admin)"
985
- msgid "Request a consultation"
986
- msgstr "Αίτηση διαβούλευσης"
987
-
988
- #: views/admin/support/contents.php:58 views/installer/steps/finish.php:63
989
- msgctxt "(Admin)"
990
- msgid ""
991
- "Need development or legal assistance in making your site compliant? We can "
992
- "help!"
993
- msgstr ""
994
- "Ανάγκη ανάπτυξης ή νομική βοήθεια στο να καταστεί συμβατό με το site σας; "
995
- "Μπορούμε να σας βοηθήσουμε!"
996
-
997
- #: views/admin/wizard-buttons.php:2
998
- msgctxt "(Admin)"
999
- msgid "Restart setup wizard"
1000
- msgstr "Κάντε επανεκκίνηση του οδηγού εγκατάστασης"
1001
-
1002
- #: views/email/action-export.php:8 views/email/action-forget.php:12
1003
- msgctxt "(Admin)"
1004
- msgid ""
1005
- "This email is just for your information. You don't need to take any action"
1006
- msgstr ""
1007
- "Αυτό το email είναι μόνο για τις πληροφορίες σας. Δεν χρειάζεται να προβείτε "
1008
- "σε καμία ενέργεια"
1009
-
1010
- #: views/email/action-forget.php:8
1011
- msgctxt "(Admin)"
1012
- msgid "The data subject had a user account on your website."
1013
- msgstr ""
1014
- "Το υποκείμενο των δεδομένων είχε ένα λογαριασμό χρήστη στην ιστοσελίδα σας."
1015
-
1016
- #: views/email/identify-data-subject.php:2
1017
- msgid "Someone has requested access to your data on"
1018
- msgstr "Κάποιος έχει ζητήσει πρόσβαση στα δεδομένα σας στο"
1019
-
1020
- #: views/email/identify-data-subject.php:3
1021
- msgid "If this was a mistake, just ignore this email and nothing will happen."
1022
- msgstr ""
1023
- "Εάν αυτό ήταν λάθος, απλά αγνοήστε αυτό το μήνυμα ηλεκτρονικού ταχυδρομείου "
1024
- "και τίποτα δεν θα συμβεί."
1025
-
1026
- #: views/email/identify-data-subject.php:4
1027
- msgid "To manage your data, visit the following address:"
1028
- msgstr ""
1029
- "Για να διαχειριστείτε τα δεδομένα σας, επισκεφθείτε την ακόλουθη διεύθυνση:"
1030
-
1031
- #: views/email/identify-data-subject.php:10
1032
- msgid "This link is valid for 15 minutes."
1033
- msgstr "Αυτός ο σύνδεσμος ισχύει για 15 λεπτά."
1034
-
1035
- #: views/email/no-data.php:2
1036
- msgid "Someone has requested information about your personal data on"
1037
- msgstr ""
1038
- "Κάποιος έχει ζητήσει πληροφορίες σχετικά με τα προσωπικά σας δεδομένα στο"
1039
-
1040
- #: views/email/no-data.php:3
1041
- msgid "None of your personal data is stored on"
1042
- msgstr "Κανένα από τα προσωπικά σας δεδομένα δεν αποθηκεύεται στο"
1043
-
1044
- #: views/email/no-data.php:5
1045
- msgid ""
1046
- "If this was a mistake or you did not request this email, just ignore it and "
1047
- "nothing will happen."
1048
- msgstr ""
1049
- "Εάν αυτό ήταν λάθος ή δεν ζητήσατε αυτό το μήνυμα ηλεκτρονικού ταχυδρομείου, "
1050
- "απλώς το αγνοήστε και δεν θα συμβεί τίποτα."
1051
-
1052
- #: views/email/request-export.php:13 views/email/request-forget.php:13
1053
- msgctxt "(Admin)"
1054
- msgid "As a reminder: according to GDPR, you have 30 days to comply."
1055
- msgstr ""
1056
- "Ως μια υπενθύμιση: σύμφωνα με το GDPR, έχετε 30 ημέρες για να συμμορφωθεί."
1057
-
1058
- #: views/global/delete-action.php:2
1059
- msgctxt "(Admin)"
1060
- msgid "Automatically anonymize data"
1061
- msgstr "Αυτόματη ανώνυμη επεξεργασία δεδομένων"
1062
-
1063
- #: views/global/delete-action.php:5
1064
- msgctxt "(Admin)"
1065
- msgid "Automatically delete data"
1066
- msgstr "Αυτόματη διαγραφή δεδομένων"
1067
-
1068
- #: views/global/delete-action.php:9
1069
- msgctxt "(Admin)"
1070
- msgid "Automatically anonymize data and notify me via email"
1071
- msgstr "Ανωνυμία δεδομένων αυτόματα και να ειδοποιούμαι μέσω e-mail"
1072
-
1073
- #: views/global/delete-action.php:13
1074
- msgctxt "(Admin)"
1075
- msgid "Automatically delete data and notify me via email"
1076
- msgstr "Αυτόματη διαγραφή δεδομένων και να ειδοποιούμαι μέσω e-mail"
1077
-
1078
- #: views/global/delete-action.php:16 views/global/export-action.php:10
1079
- msgctxt "(Admin)"
1080
- msgid "Only notify me via email"
1081
- msgstr "Να ειδοποιούμαι μόνο μέσω ηλεκτρονικού ταχυδρομείου"
1082
-
1083
- #: views/global/export-action.php:2
1084
- msgctxt "(Admin)"
1085
- msgid "Automatically download data"
1086
- msgstr "Αυτόματη λήψη δεδομένων"
1087
-
1088
- #: views/global/export-action.php:6
1089
- msgctxt "(Admin)"
1090
- msgid "Automatically download data and notify me via email"
1091
- msgstr "Αυτόματη λήψη δεδομένων και να ειδοποιούμαι μέσω e-mail"
1092
-
1093
- #: views/installer/continue-notice.php:2
1094
- msgctxt "(Admin)"
1095
- msgid "The The GDPR Framework setup has not been finalized yet."
1096
- msgstr "Η ρύθμιση του πλαισίου GDPR δεν έχει οριστικοποιηθεί ακόμα."
1097
-
1098
- #: views/installer/continue-notice.php:3
1099
- msgctxt "(Admin)"
1100
- msgid "You can continue the setup at any time."
1101
- msgstr "Μπορείτε να συνεχίσετε τη ρύθμιση οποιαδήποτε στιγμή."
1102
-
1103
- #: views/installer/continue-notice.php:6
1104
- msgctxt "(Admin)"
1105
- msgid "Continue the setup wizard"
1106
- msgstr "Συνεχίστε τον οδηγό ρύθμισης"
1107
-
1108
- #: views/installer/continue-notice.php:9
1109
- msgctxt "(Admin)"
1110
- msgid "Hide this message"
1111
- msgstr "Απόκρυψη αυτού του μηνύματος"
1112
-
1113
- #: views/installer/footer.php:7
1114
- msgid "Back"
1115
- msgstr "Πίσω"
1116
-
1117
- #: views/installer/header.php:26
1118
- msgctxt "(Admin)"
1119
- msgid "I need help"
1120
- msgstr "Χρειάζομαι βοήθεια"
1121
-
1122
- #: views/installer/header.php:29
1123
- msgctxt "(Admin)"
1124
- msgid "Developer Docs"
1125
- msgstr "Έγγραφα για developers"
1126
-
1127
- #: views/installer/header.php:36
1128
- msgctxt "(Admin)"
1129
- msgid "Configuration"
1130
- msgstr "Διαμόρφωση"
1131
-
1132
- #: views/installer/header.php:46
1133
- msgctxt "(Admin)"
1134
- msgid "Forms & Consent"
1135
- msgstr "Έντυπα συγκατάθεσης"
1136
-
1137
- #: views/installer/header.php:51
1138
- msgctxt "(Admin)"
1139
- msgid "Integrations"
1140
- msgstr "Ενσωματώσεις"
1141
-
1142
- #: views/installer/steps/configuration-settings.php:23
1143
- #: views/installer/steps/configuration-settings.php:73
1144
- msgctxt "(Admin)"
1145
- msgid "Enter the email address to notify"
1146
- msgstr "Εισάγετε τη διεύθυνση email για να κοινοποίηση"
1147
-
1148
- #: views/installer/steps/disclaimer.php:21
1149
- msgctxt "(Admin)"
1150
- msgid "I accept"
1151
- msgstr "Δέχομαι"
1152
-
1153
- #: views/installer/welcome-notice.php:7
1154
- msgctxt "(Admin)"
1155
- msgid "Run the setup wizard"
1156
- msgstr "Εκτελέστε τον οδηγό εγκατάστασης"
1157
-
1158
- #: views/installer/welcome-notice.php:11
1159
- msgctxt "(Admin)"
1160
- msgid "Auto-install pages"
1161
- msgstr "Αυτόματη εγκατάσταση σελίδων"
1162
-
1163
- #: views/installer/welcome-notice.php:15
1164
- msgctxt "(Admin)"
1165
- msgid "Skip and install manually"
1166
- msgstr "Χειροκίνητη εγκατάσταση"
1167
-
1168
- #: views/modules/contact-form-7/generator-privacy.php:6
1169
- msgctxt "(Admin)"
1170
- msgid ""
1171
- "This tag generates the default text for Terms & Conditions and/or Privacy "
1172
- "Policy checkbox."
1173
- msgstr ""
1174
- "Αυτή η ετικέτα δημιουργεί το προεπιλεγμένο κείμενο για & όροι ή/και πολιτική "
1175
- "προστασίας προσωπικών δεδομένων το πλαίσιο ελέγχου."
1176
-
1177
- #: views/modules/contact-form-7/generator-privacy.php:15
1178
- msgid "Insert"
1179
- msgstr "Εισάγετε"
1180
-
1181
- #: views/modules/wordpress-comments/terms-checkbox.php:6
1182
- #: views/modules/wordpress-user/registration-terms-checkbox.php:7
1183
- #, php-format
1184
- msgid "I accept the %sTerms and Conditions%s and the %sPrivacy Policy%s"
1185
- msgstr "δέχομαι το %sΟροι και Προϋποθέσεις%s και το %sΠολιτική Απορρήτου%s"
1186
-
1187
- #: views/modules/wordpress-user/dashboard/data-page/form-consent.php:3
1188
- msgid "Manage consents"
1189
- msgstr "Διαχειριστείτε τις συγκαταθέσεις"
1190
-
1191
- #: views/modules/wordpress-user/dashboard/data-page/form-consent.php:6
1192
- #: views/privacy-tools/form-consent.php:6
1193
- msgid "Here you can withdraw any consents you have given."
1194
- msgstr "Εδώ μπορείτε να αποσύρετε τυχόν συγκαταθέσεις που έχετε δώσει."
1195
-
1196
- #: views/modules/wordpress-user/dashboard/data-page/form-consent.php:8
1197
- #: views/privacy-tools/form-consent.php:9
1198
- msgid "Consent types"
1199
- msgstr "Τύποι συγκατάθεσης"
1200
-
1201
- #: views/modules/wordpress-user/dashboard/data-page/form-consent.php:23
1202
- #: views/privacy-tools/form-consent.php:24
1203
- msgid "Withdraw"
1204
- msgstr "Αποσύρω"
1205
-
1206
- #: views/modules/wordpress-user/dashboard/data-page/form-delete.php:5
1207
- #: views/modules/wordpress-user/dashboard/profile-page/form-delete.php:5
1208
- msgctxt "(Admin)"
1209
- msgid "Delete this user and all data"
1210
- msgstr "Διαγραφή αυτού του χρήστη και όλα τα δεδομένα"
1211
-
1212
- #: views/modules/wordpress-user/dashboard/data-page/form-delete.php:11
1213
- msgctxt "(Admin)"
1214
- msgid "Delete my data"
1215
- msgstr "Διαγράψτε τα δεδομένα μου"
1216
-
1217
- #: views/modules/wordpress-user/dashboard/data-page/form-delete.php:15
1218
- #: views/privacy-tools/form-delete.php:13
1219
- msgid "Delete all data we have gathered about you."
1220
- msgstr "Διαγράψτε όλα τα δεδομένα που έχουμε συγκεντρώσει για εσάς."
1221
-
1222
- #: views/modules/wordpress-user/dashboard/data-page/form-delete.php:16
1223
- #: views/privacy-tools/form-delete.php:14
1224
- msgid "If you have a user account on our site, it will also be deleted."
1225
- msgstr ""
1226
- "Εάν διαθέτετε λογαριασμό χρήστη στον ιστότοπό μας, θα διαγραφεί επίσης."
1227
-
1228
- #: views/modules/wordpress-user/dashboard/data-page/form-delete.php:17
1229
- #: views/privacy-tools/form-delete.php:15
1230
- msgid "Be careful - this action is permanent and CANNOT be undone."
1231
- msgstr "ΠΡΟΣΟΧΗ - αυτή η ενέργεια είναι μόνιμη και ΔΕΝ μπορεί να ακυρωθεί."
1232
-
1233
- #: views/modules/wordpress-user/dashboard/data-page/form-delete.php:22
1234
- #: views/modules/wordpress-user/dashboard/profile-page/form-delete.php:23
1235
- msgctxt "(Admin)"
1236
- msgid ""
1237
- "You seem to have an administrator or equivalent role, so deleting/"
1238
- "anonymizing via this page is disabled."
1239
- msgstr ""
1240
- "Φαίνεται ότι έχετε διαχειριστή ή ισοδύναμο ρόλο, οπότε η διαγραφή / "
1241
- "ανωνύμιση μέσω αυτής της σελίδας είναι απενεργοποιημένη."
1242
-
1243
- #: views/modules/wordpress-user/dashboard/form-export.php:7
1244
- #: views/privacy-tools/form-export.php:1
1245
- msgid "Download your data"
1246
- msgstr "Κατεβάστε τα δεδομένα σας"
1247
-
1248
- #: views/modules/wordpress-user/dashboard/form-export.php:12
1249
- #: views/privacy-tools/form-export.php:13
1250
- msgid "Download as table"
1251
- msgstr "Κάντε λήψη ως πίνακας"
1252
-
1253
- #: views/modules/wordpress-user/dashboard/form-export.php:15
1254
- #: views/privacy-tools/form-export.php:22
1255
- msgid "Export as JSON"
1256
- msgstr "Εξαγωγή ως JSON αρχειο"
1257
-
1258
- #: views/modules/wordpress-user/dashboard/form-export.php:19
1259
- #: views/privacy-tools/form-export.php:4
1260
- msgid "You can download all your data formatted as a table for viewing."
1261
- msgstr ""
1262
- "Μπορείτε να κατεβάσετε όλα τα δεδομένα σας μορφοποιημένα ως πίνακα για "
1263
- "προβολή."
1264
-
1265
- #: views/modules/wordpress-user/dashboard/form-export.php:20
1266
- #: views/privacy-tools/form-export.php:5
1267
- msgid "Alternatively, you can export it in machine-readable JSON format."
1268
- msgstr ""
1269
- "Εναλλακτικά, μπορείτε να την εξαγάγετε σε μορφή JSON αναγνώσιμη από μηχανή."
1270
-
1271
- #: views/modules/wordpress-user/dashboard/profile-page/form-delete.php:11
1272
- msgctxt "(Admin)"
1273
- msgid "Delete user and all data"
1274
- msgstr "Διαγραφή χρήστη και όλα τα δεδομένα"
1275
-
1276
- #: views/modules/wordpress-user/dashboard/profile-page/form-delete.php:14
1277
- msgctxt "(Admin)"
1278
- msgid "Anonymize user and all data"
1279
- msgstr "Ανωνυμία χρήστη και όλα τα δεδομένα"
1280
-
1281
- #: views/modules/wordpress-user/dashboard/profile-page/header.php:2
1282
- msgctxt "(Admin)"
1283
- msgid "GDPR Data"
1284
- msgstr "Δεδομένα GDPR"
1285
-
1286
- #: views/modules/wordpress-user/dashboard/profile-page/header.php:6
1287
- msgctxt "(Admin)"
1288
- msgid "This user has been anonymized."
1289
- msgstr "Αυτός ο χρήστης ήταν ανώνυμος."
1290
-
1291
- #: views/modules/wordpress-user/dashboard/profile-page/table-consent.php:4
1292
- msgctxt "(Admin)"
1293
- msgid "Consents given"
1294
- msgstr "Συναινέσεις που έχουν χορηγηθεί"
1295
-
1296
- #: views/modules/wordpress-user/dashboard/profile-page/table-consent.php:17
1297
- msgctxt "(Admin)"
1298
- msgid "No consents given"
1299
- msgstr "Δεν δόθηκαν συναινέσεις"
1300
-
1301
- #: views/privacy-tools/form-consent.php:2
1302
- msgid "Consent"
1303
- msgstr "Συγκατάθεση"
1304
-
1305
- #: views/privacy-tools/form-delete.php:1
1306
- #: views/privacy-tools/notice-admin-role.php:1
1307
- msgid "Delete my user and data"
1308
- msgstr "Διαγράψτε τον χρήστη και τα δεδομένα μου"
1309
-
1310
- #: views/privacy-tools/form-delete.php:7
1311
- msgid "Delete my data"
1312
- msgstr "Διαγράψτε τα δεδομένα μου"
1313
-
1314
- #: views/privacy-tools/form-identify.php:8
1315
- msgid "Back to Privacy Tools"
1316
- msgstr "Πίσω στην επεξεργασία προσωπικών δεδομένων"
1317
-
1318
- #: views/privacy-tools/form-identify.php:14
1319
- msgid "Identify yourself!"
1320
- msgstr "Προσδιορίστε τον εαυτό σας!"
1321
-
1322
- #: views/privacy-tools/form-identify.php:17
1323
- #: views/privacy-tools/form-identify.php:20
1324
- msgid "Enter your email address"
1325
- msgstr "Εισάγετε το email σας"
1326
-
1327
- #: views/privacy-tools/form-identify.php:23
1328
- msgid "Send email"
1329
- msgstr "Αποστολή email"
1330
-
1331
- #: views/privacy-tools/notice-admin-role.php:4
1332
- msgctxt "(Admin)"
1333
- msgid "Data deletion is disabled for administrative accounts."
1334
- msgstr "Διαγραφή δεδομένων είναι απενεργοποιημένη για λογαριασμών διαχειριστή."
1335
-
1336
- #: views/privacy-tools/notices.php:3
1337
- msgid ""
1338
- "We will send you an email with the link to access your data. Please check "
1339
- "your spam folder as well!"
1340
- msgstr ""
1341
- "Θα σας στείλουμε ένα μήνυμα ηλεκτρονικού ταχυδρομείου με το σύνδεσμο για να "
1342
- "έχετε πρόσβαση στα δεδομένα σας. Ελέγξτε επίσης το φάκελο spam σας!"
1343
-
1344
- #: views/privacy-tools/notices.php:7
1345
- msgid "The email you entered does not appear to be a valid email."
1346
- msgstr "Το email που καταχωρίσατε δεν φαίνεται να είναι έγκυρο."
1347
-
1348
- #: views/privacy-tools/notices.php:11
1349
- msgid "Sorry - the link seems to have expired. Please try again!"
1350
- msgstr ""
1351
- "Λυπούμαστε - ο σύνδεσμος φαίνεται να έχει λήξει. ΠΑΡΑΚΑΛΩ προσπαθησε ξανα!"
1352
-
1353
- #: views/privacy-tools/notices.php:23
1354
- msgid "Your personal data has been removed!"
1355
- msgstr "Τα προσωπικά σας δεδομένα έχουν αφαιρεθεί!"
1356
-
1357
- #: views/privacy-tools/privacy-tools.php:5
1358
- msgid "You are identified as"
1359
- msgstr "Έχετε αναγνωριστεί ως"
1360
-
1361
- #: views\admin\general\enable-tac.php:9
1362
- msgctxt "(Admin)"
1363
- msgid "Enable the term and condition page."
1364
- msgstr "Ενεργοποιήστε τη σελίδα όρων και προϋποθέσεων."
1365
-
1366
- #: src\Admin\AdminTabGeneral.php:51
1367
- msgctxt "(Admin)"
1368
- msgid "Enable Term and Conditions"
1369
- msgstr "Ενεργοποίηση όρων και προϋποθέσεων"
1370
-
1371
- #: gdpr-framework.php:121
1372
- msgid ""
1373
- "This website uses cookies to ensure you get the best experience on our "
1374
- "website."
1375
- msgstr ""
1376
- "Αυτός ο ιστότοπος χρησιμοποιεί cookies για να εξασφαλίσει ότι θα έχετε την "
1377
- "καλύτερη εμπειρία στον ιστότοπό μας."
1378
-
1379
- #: gdpr-framework.php:121
1380
- msgid "Decline"
1381
- msgstr "πτώση"
1382
-
1383
- #: gdpr-framework.php:121
1384
- msgid "Accept"
1385
- msgstr "Αποδέχομαι"
1386
-
1387
- #: gdpr-framework.php:133
1388
- msgid "Learn more"
1389
- msgstr "Μάθε περισσότερα"
1390
-
1391
- #: AdminTabGeneral.php:94
1392
- msgctxt "(Admin)"
1393
- msgid "From Email"
1394
- msgstr "Από το μήνυμα ηλεκτρονικού ταχυδρομείου"
1395
-
1396
- #: AdminTabGeneral.php:87
1397
- msgctxt "(Admin)"
1398
- msgid "From Name"
1399
- msgstr "Από όνομα"
1400
-
1401
- #: AdminTabGeneral.php:82
1402
- msgctxt "(Admin)"
1403
- msgid "Email Setting"
1404
- msgstr "Ρύθμιση ηλεκτρονικού ταχυδρομείου"
1405
-
1406
- #: AdminTabGeneral.php:104
1407
- msgctxt "(Admin)"
1408
- msgid "Acceptance Popup Setting"
1409
- msgstr "Ρύθμιση αναδυόμενης παραλαβής"
1410
-
1411
- #: AdminTabGeneral.php:109
1412
- msgctxt "(Admin)"
1413
- msgid "Popup Position"
1414
- msgstr "Αναδυόμενη θέση"
1415
-
1416
- #: AdminTabGeneral.php:116
1417
- msgctxt "(Admin)"
1418
- msgid "Popup theme"
1419
- msgstr "Θέμα popup"
1420
-
1421
- #: AdminTabGeneral.php:123
1422
- msgctxt "(Admin)"
1423
- msgid "Cookie Acceptance Background Color"
1424
- msgstr "Υποδοχή χρώματος φόντου cookie"
1425
-
1426
- #: AdminTabGeneral.php:130
1427
- msgctxt "(Admin)"
1428
- msgid "Cookie Acceptance Text Color"
1429
- msgstr "Χρώμα κειμένου αποδοχής cookie"
1430
-
1431
- #: AdminTabGeneral.php:137
1432
- msgctxt "(Admin)"
1433
- msgid "Cookie Acceptance Button Backgroung Color"
1434
- msgstr "Κουμπί λήψης cookie Backgroung Color"
1435
-
1436
- #: AdminTabGeneral.php:144
1437
- msgctxt "(Admin)"
1438
- msgid "Cookie Acceptance Button Color"
1439
- msgstr "Χρώμα κουμπιού αποδοχής cookie"
1440
-
1441
- #: AdminTabGeneral.php:151
1442
- msgctxt "(Admin)"
1443
- msgid "Cookie Acceptance Border Color"
1444
- msgstr "Χρώμα ορίου λήψης cookie"
1445
-
1446
- #: AdminTabGeneral.php:67
1447
- msgctxt "(Admin)"
1448
- msgid "Enable Cookie Acceptance Popup"
1449
- msgstr "Ενεργοποίηση αναδυόμενου παραθύρου αποδοχής cookie"
1450
-
1451
- #: AdminTabGeneral.php:73
1452
- msgctxt "(Admin)"
1453
- msgid "Cookie Acceptance Popup Content"
1454
- msgstr "Περιεχόμενο αναδυόμενων παραληπτών cookie"
1455
-
1456
- #: description-position-action.php
1457
- msgctxt "(Admin)"
1458
- msgid "Select position of the Popup"
1459
- msgstr "Επιλέξτε τη θέση του αναδυόμενου παραθύρου"
1460
-
1461
- #: description-theme-action.php
1462
- msgctxt "(Admin)"
1463
- msgid "Select theme of the Popup"
1464
- msgstr "Επιλέξτε θέμα του αναδυόμενου παραθύρου"
1465
-
1466
- #: description-theme-action.php:69
1467
- msgctxt "(Admin)"
1468
- msgid "Disable Comment Checkbox"
1469
- msgstr "Απενεργοποιήστε το πλαίσιο ελέγχου Σχόλιο"
1470
-
1471
- #: description-theme-action.php:76
1472
- msgctxt "(Admin)"
1473
- msgid "Disable Register Form Checkbox"
1474
- msgstr "Απενεργοποίηση πλαισίου ελέγχου φόρμας εγγραφής"
1475
-
1476
- #: description-theme-action.php:312
1477
- msgctxt "(Admin)"
1478
- msgid "Disable Checkbox For Comments"
1479
- msgstr "Απενεργοποιήστε το πλαίσιο ελέγχου για σχόλια"
1480
-
1481
- #: AdminTabGeneral.php:319
1482
- msgctxt "(Admin)"
1483
- msgid "Disable Checkbox For Register Form"
1484
- msgstr "Απενεργοποίηση του πλαισίου ελέγχου για τη φόρμα εγγραφής"
1485
-
1486
- #: views/privacy-tools/form-identify.php:15
1487
- msgid "Please identify yourself via e-mail"
1488
- msgstr "Προσδιορίστε τον εαυτό σας μέσω ηλεκτρονικού ταχυδρομείου"
1489
-
1490
- #: advanced-integration\header.php:2
1491
- msgctxt "(Admin)"
1492
- msgid "This page allows you to advance integration with ClassiDocs™"
1493
- msgstr ""
1494
- "Αυτή η σελίδα σάς επιτρέπει να προχωρήσετε στην ολοκλήρωση με το ClassiDocs ™"
1495
-
1496
- #: AdminTabAdvancedIntegration.php:97
1497
- msgctxt "(Admin)"
1498
- msgid "ClassiDocs Password"
1499
- msgstr "Κωδικός πρόσβασης ClassiDocs"
1500
-
1501
- #: AdminTabAdvancedIntegration.php:88
1502
- msgctxt "(Admin)"
1503
- msgid "ClassiDocs Username"
1504
- msgstr "Όνομα χρήστη ClassiDocs"
1505
-
1506
- #: AdminTabAdvancedIntegration.php:79
1507
- msgctxt "(Admin)"
1508
- msgid "ClassiDocs URL"
1509
- msgstr "ClassiDocs URL"
1510
-
1511
- #: AdminTabAdvancedIntegration.php:69
1512
- msgctxt "(Admin)"
1513
- msgid "Enable Response with related queries?"
1514
- msgstr "Ενεργοποίηση απάντησης με σχετικά ερωτήματα;"
1515
-
1516
- #: AdminTabAdvancedIntegration.php:60
1517
- msgctxt "(Admin)"
1518
- msgid "Submit SAR request details?"
1519
- msgstr "Υποβολή στοιχείων αιτήματος SAR;"
1520
-
1521
- #: AdminTabAdvancedIntegration.php:51
1522
- msgctxt "(Admin)"
1523
- msgid "Integrate with ClassiDocs?"
1524
- msgstr "Ενσωμάτωση με το ClassiDocs;"
1525
-
1526
- #: AdminTabAdvancedIntegration.php:43
1527
- msgctxt "(Admin)"
1528
- msgid "Integration Settings"
1529
- msgstr "Ρυθμίσεις ολοκλήρωσης"
1530
-
1531
- #: AdminTabAdvancedIntegration.php:35
1532
- msgctxt "(Admin)"
1533
- msgid "Advanced Integration"
1534
- msgstr "Προηγμένη ενοποίηση"
1535
-
1536
- #: checkbox-field.php:10
1537
- msgctxt "(Admin)"
1538
- msgid "Sign up for free here"
1539
- msgstr "Εγγραφείτε δωρεάν εδώ"
1540
-
1541
- #: checkbox-field.php:10
1542
- msgctxt "(Admin)"
1543
- msgid "Click Here"
1544
- msgstr "Κάντε κλικ ΕΔΩ"
1545
-
1546
- #: ClassiDocs-results.php:12
1547
- msgid "Previous Results"
1548
- msgstr "Προηγούμενα αποτελέσματα"
1549
-
1550
- #: ClassiDocs-results.php:13
1551
- msgid "Current Results"
1552
- msgstr "Τρέχοντα αποτελέσματα"
1553
-
1554
- #: ClassiDocs-results.php:19
1555
- msgid "Name"
1556
- msgstr "Ονομα"
1557
-
1558
- #: ClassiDocs-results.php:22
1559
- msgid "Path"
1560
- msgstr "Μονοπάτι"
1561
-
1562
- #: ClassiDocs-results.php:34
1563
- msgid "Workstation"
1564
- msgstr "Σταθμός εργασίας"
1565
-
1566
- #: ClassiDocs-results.php:37
1567
- msgid "Last Scan"
1568
- msgstr "Τελευταία σάρωση"
1569
-
1570
- #: ClassiDocs-results.php:62
1571
- msgid "No ClassiDocs data found!"
1572
- msgstr "Δεν βρέθηκαν