tryton-sao 7.2.0 → 7.2.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (57) hide show
  1. package/CHANGELOG +10 -0
  2. package/dist/tryton-sao.css +2 -2
  3. package/dist/tryton-sao.js +22 -24
  4. package/locale/bg.json +1 -1
  5. package/locale/bg.po +10 -13
  6. package/locale/ca.json +1 -1
  7. package/locale/ca.po +16 -19
  8. package/locale/cs.json +1 -1
  9. package/locale/cs.po +10 -13
  10. package/locale/de.json +1 -1
  11. package/locale/de.po +15 -18
  12. package/locale/es.json +1 -1
  13. package/locale/es.po +16 -19
  14. package/locale/es_419.json +1 -1
  15. package/locale/es_419.po +11 -13
  16. package/locale/et.json +1 -1
  17. package/locale/et.po +10 -13
  18. package/locale/fa.json +1 -1
  19. package/locale/fa.po +11 -13
  20. package/locale/fi.json +1 -1
  21. package/locale/fi.po +10 -13
  22. package/locale/fr.json +1 -1
  23. package/locale/fr.po +15 -17
  24. package/locale/hu.json +1 -1
  25. package/locale/hu.po +11 -13
  26. package/locale/id.json +1 -1
  27. package/locale/id.po +10 -13
  28. package/locale/it.json +1 -1
  29. package/locale/it.po +11 -13
  30. package/locale/lo.json +1 -1
  31. package/locale/lo.po +11 -13
  32. package/locale/lt.json +1 -1
  33. package/locale/lt.po +11 -13
  34. package/locale/messages.pot +6 -0
  35. package/locale/nl.json +1 -1
  36. package/locale/nl.po +16 -19
  37. package/locale/pl.json +1 -1
  38. package/locale/pl.po +60 -81
  39. package/locale/pt.json +1 -1
  40. package/locale/pt.po +11 -13
  41. package/locale/ro.json +1 -1
  42. package/locale/ro.po +11 -13
  43. package/locale/ru.json +1 -1
  44. package/locale/ru.po +10 -13
  45. package/locale/sl.json +1 -1
  46. package/locale/sl.po +11 -13
  47. package/locale/tr.json +1 -1
  48. package/locale/tr.po +10 -13
  49. package/locale/uk.json +1 -1
  50. package/locale/uk.po +11 -13
  51. package/locale/zh_CN.json +1 -1
  52. package/locale/zh_CN.po +11 -13
  53. package/package.json +1 -1
  54. package/src/common.js +2 -10
  55. package/src/sao.js +1 -1
  56. package/src/sao.less +1 -1
  57. package/src/view/form.js +19 -13
package/CHANGELOG CHANGED
@@ -1,4 +1,14 @@
1
1
 
2
+ Version 7.2.2 - 2024-06-15
3
+ --------------------------
4
+ * Bug fixes (see mercurial logs for details)
5
+
6
+
7
+ Version 7.2.1 - 2024-05-01
8
+ --------------------------
9
+ * Bug fixes (see mercurial logs for details)
10
+
11
+
2
12
  Version 7.2.0 - 2024-04-29
3
13
  --------------------------
4
14
  * Bug fixes (see mercurial logs for details)
@@ -10066,8 +10066,8 @@ img.icon {
10066
10066
  min-height: 150px;
10067
10067
  max-height: 300px;
10068
10068
  }
10069
- .form .form-text > textarea,
10070
- .form .form-richtext > textarea,
10069
+ .form .form-text textarea,
10070
+ .form .form-richtext textarea,
10071
10071
  .form .form-text .richtext,
10072
10072
  .form .form-richtext .richtext {
10073
10073
  height: 100%;
@@ -3,7 +3,7 @@
3
3
 
4
4
  /* eslint-disable no-redeclare */
5
5
  var Sao = {
6
- __version__: '7.2.0',
6
+ __version__: '7.2.2',
7
7
  };
8
8
  /* eslint-enable no-redeclare */
9
9
 
@@ -3494,16 +3494,8 @@ var Sao = {
3494
3494
  ];
3495
3495
 
3496
3496
  Sao.common.date_format = function(format) {
3497
- if (jQuery.isEmptyObject(format)) {
3498
- format = '%x';
3499
- if (Sao.Session.current_session) {
3500
- var context = Sao.Session.current_session.context;
3501
- if (context.locale && context.locale.date) {
3502
- format = context.locale.date;
3503
- }
3504
- }
3505
- }
3506
- return Sao.common.moment_format(format);
3497
+ return Sao.common.moment_format(
3498
+ format || Sao.i18n.locale.date || '%x');
3507
3499
  };
3508
3500
 
3509
3501
  Sao.common.format_time = function(format, date) {
@@ -17122,10 +17114,13 @@ function eval_pyson(value){
17122
17114
  this.el = jQuery('<div/>', {
17123
17115
  'class': this.class_
17124
17116
  });
17117
+ this.group = jQuery('<div/>', {
17118
+ 'class': 'input-group',
17119
+ }).appendTo(this.el);
17125
17120
  this.input = this.labelled = jQuery('<textarea/>', {
17126
17121
  'class': 'form-control input-sm mousetrap',
17127
17122
  'name': attributes.name,
17128
- }).appendTo(this.el);
17123
+ }).appendTo(this.group);
17129
17124
  this.input.change(this.focus_out.bind(this));
17130
17125
  this.input.on('keydown', this.send_modified.bind(this));
17131
17126
  if (this.attributes.translate) {
@@ -17136,7 +17131,7 @@ function eval_pyson(value){
17136
17131
  'title': Sao.i18n.gettext("Translate"),
17137
17132
  }).appendTo(jQuery('<span/>', {
17138
17133
  'class': 'input-group-btn'
17139
- }).appendTo(this.el));
17134
+ }).appendTo(this.group));
17140
17135
  button.append(
17141
17136
  Sao.common.ICONFACTORY.get_icon_img('tryton-translate'));
17142
17137
  button.click(this.translate.bind(this));
@@ -17212,13 +17207,16 @@ function eval_pyson(value){
17212
17207
  'class': 'panel-heading',
17213
17208
  }).appendTo(this.el));
17214
17209
  }
17215
- this.input = this.labelled = jQuery('<div/>', {
17216
- 'class': 'richtext mousetrap',
17217
- 'contenteditable': true
17210
+ this.group = jQuery('<div/>', {
17211
+ 'class': 'input-group',
17218
17212
  }).appendTo(jQuery('<div/>', {
17219
- 'class': 'panel-body'
17213
+ 'class': 'panel-body',
17220
17214
  }).appendTo(this.el));
17221
- this.el.focusout(this.focus_out.bind(this));
17215
+ this.input = this.labelled = jQuery('<div/>', {
17216
+ 'class': 'richtext mousetrap',
17217
+ 'contenteditable': true,
17218
+ }).appendTo(this.group);
17219
+ this.group.focusout(this.focus_out.bind(this));
17222
17220
  if (this.attributes.translate) {
17223
17221
  var button = jQuery('<button/>', {
17224
17222
  'class': 'btn btn-default btn-sm form-control',
@@ -17227,7 +17225,7 @@ function eval_pyson(value){
17227
17225
  'title': Sao.i18n.gettext("Translate"),
17228
17226
  }).appendTo(jQuery('<span/>', {
17229
17227
  'class': 'input-group-btn',
17230
- }).appendTo(this.el));
17228
+ }).appendTo(this.group));
17231
17229
  button.append(
17232
17230
  Sao.common.ICONFACTORY.get_icon_img('tryton-translate'));
17233
17231
  button.click(this.translate.bind(this));
@@ -17760,7 +17758,7 @@ function eval_pyson(value){
17760
17758
  _update_completion: function(text) {
17761
17759
  var record = this.record;
17762
17760
  if (!record) {
17763
- return;
17761
+ return jQuery.when();
17764
17762
  }
17765
17763
  var field = this.field;
17766
17764
  var value = field.get(record);
@@ -18643,7 +18641,7 @@ function eval_pyson(value){
18643
18641
  },
18644
18642
  _update_completion: function(text) {
18645
18643
  if (!this.record) {
18646
- return;
18644
+ return jQuery.when();
18647
18645
  }
18648
18646
  var model = this.attributes.relation;
18649
18647
  var domain = this.field.get_domain(this.record);
@@ -19029,7 +19027,7 @@ function eval_pyson(value){
19029
19027
  },
19030
19028
  _update_completion: function(text) {
19031
19029
  if (!this.record) {
19032
- return;
19030
+ return jQuery.when();
19033
19031
  }
19034
19032
  var model = this.attributes.relation;
19035
19033
  var domain = this.field.get_domain(this.record);
@@ -19995,10 +19993,10 @@ function eval_pyson(value){
19995
19993
  },
19996
19994
  _update_completion: function(text) {
19997
19995
  if (this.wid_text.prop('disabled')) {
19998
- return;
19996
+ return jQuery.when();
19999
19997
  }
20000
19998
  if (!this.record) {
20001
- return;
19999
+ return jQuery.when();
20002
20000
  }
20003
20001
  return Sao.common.update_completion(
20004
20002
  this.wid_text, this.record, this.field, this.schema_model);
package/locale/bg.json CHANGED
@@ -1 +1 @@
1
- {"":{"content-type":"text/plain; charset=utf-8"},"Are your sure to leave?":[null,""],"Incompatible version of the server.":[null,""],"Version mismatch":[null,""],"Could not connect to the server.":[null,""],"Connection error":[null,""],"Favorites":[null,""],"Manage...":[null,""],"Logout":[null,""],"Action":[null,""],"New":[null,""],"Save":[null,""],"Switch":[null,""],"Reload/Undo":[null,""],"Duplicate":[null,""],"Delete":[null,""],"Previous":[null,""],"Next":[null,""],"Search":[null,""],"Close Tab":[null,""],"Attachment":[null,""],"Note":[null,""],"Relate":[null,""],"Print":[null,""],"E-Mail":[null,""],"Previous tab":[null,""],"Next tab":[null,""],"Global search":[null,""],"Show this help":[null,""],"Show/Hide access keys":[null,""],"Help":[null,""],"Close":[null,""],"Documentation...":[null,""],"Keyboard shortcuts":[null,""],"Global shortcuts":[null,""],"Tab shortcuts":[null,""],"Unable to reach the server.":[null,""],"Error: \"%1\". Try again later.":[null,""],"Login":[null,""],"Database":[null,""],"User name":[null,""],"Login with":[null,""],"Too many requests. Try again later.":[null,""],"Not found.":[null,""],"Send you an email to reset your password.":[null,""],"A request to reset your password has been sent.\nPlease check your mailbox.":[null,""],"Your selection:":[null,""],"Cancel":[null,""],"OK":[null,""],"Y":[null,""],"M":[null,""],"w":[null,""],"d":[null,""],"h":[null,""],"m":[null,""],"s":[null,""],"By: ":[null,""],"y":[null,""],"Yes":[null,""],"True":[null,""],"t":[null,""],"False":[null,""],"Message: ":[null,""],"Warning: ":[null,""],"Always ignore this warning.":[null,""],"Do you want to proceed?":[null,""],"No":[null,""],"Confirmation: ":[null,""],"Concurrency Exception":[null,""],"Write Concurrency Warning: ":[null,""],"This record has been modified while you were editing it.":[null,""],"Choose:":[null,""],"\"Cancel\" to cancel saving;":[null,""],"\"Compare\" to see the modified version;":[null,""],"\"Write Anyway\" to save your current version.":[null,""],"Compare":[null,""],"Compare: %1":[null,""],"Write Anyway":[null,""],"Application Error":[null,""],"Report Bug":[null,""],"Processing":[null,""],"Search...":[null,""],"Create...":[null,""],"Create \"%1\"...":[null,""],"Download":[null,""],"Bold":[null,""],"Italic":[null,""],"Underline":[null,""],"Font":[null,""],"Size":[null,""],"Justify Right":[null,""],"Justify Left":[null,""],"Justify Center":[null,""],"Justify Full":[null,""],"Switch view":[null,""],"Previous Record":[null,""],"Next Record":[null,""],"Create a new record":[null,""],"Save this record":[null,""],"Reload":[null,""],"View Logs...":[null,""],"Show revisions...":[null,""],"Add an attachment to the record":[null,""],"Add a note to the record":[null,""],"E-Mail...":[null,""],"Send an e-mail using the record":[null,""],"Export":[null,""],"Import":[null,""],"The following action requires to close all tabs.\nDo you want to continue?":[null,""],"Launch action":[null,""],"Open related records":[null,""],"Print report":[null,""],"This record has been modified\ndo you want to save it?":[null,""],"Record saved.":[null,""],"Working now on the duplicated record(s).":[null,""],"Are you sure to remove this record?":[null,""],"Are you sure to remove those records?":[null,""],"Records removed.":[null,""],"Records not removed.":[null,""],"You have to select one record.":[null,""],"Add...":[null,""],"Preview":[null,""],"Template":[null,""],"Attachment (%1)":[null,""],"Note (%1/%2)":[null,""],"Filters":[null,""],"Clear Search":[null,""],"Bookmarks":[null,""],"Remove this bookmark":[null,""],"Bookmark this filter":[null,""],"Bookmark Name:":[null,""],"Show active records":[null,""],"Show inactive records":[null,""],"Find":[null,""],"From":[null,""],"To":[null,""],"Open the calendar":[null,""],"ID":[null,""],"Created by":[null,""],"Created at":[null,""],"Modified by":[null,""],"Modified at":[null,""],"\"%1\" is required.":[null,""],"\"%1\" is not valid according to its domain.":[null,""],"The values of \"%1\" are not valid.":[null,""],"Pre-validation":[null,""],":":[null,""],"Scan":[null,""],"Translate":[null,""],"Edit":[null,""],"Fuzzy":[null,""],"You need to save the record before adding translations.":[null,""],"No other language available.":[null,""],"Show":[null,""],"Hide":[null,""],"Open the record":[null,""],"Clear the field":[null,""],"Search a record":[null,""],"Add":[null,""],"Remove":[null,""],"Open":[null,""],"Undelete":[null,""],"Save As":[null,""],"Save As...":[null,""],"Select":[null,""],"Select...":[null,""],"Clear":[null,""],"Open...":[null,""],"Choose a language":[null,""],"%1%":[null,""],"Menu":[null,""],"Copy Selected Rows":[null,""],"#ERROR":[null,""],"More":[null,""],"Today":[null,""],"Month":[null,""],"Week":[null,""],"Day":[null,""],",...":[null,""],"%1 (%2)":[null,""],"Select your action":[null,""],"No action defined.":[null,""],"Discard changes":[null,""],"Save and New":[null,""],"Add and New":[null,""],"Apply changes":[null,""],"Attachments (%1)":[null,""],"Notes (%1)":[null,""],"Logs (%1)":[null,""],"Model:":[null,""],"ID:":[null,""],"Created by:":[null,""],"Created at:":[null,""],"Last Modified by:":[null,""],"Last Modified at:":[null,""],"Search %1":[null,""],"Revision":[null,""],"All Fields":[null,""],"Fields Selected":[null,""],"CSV Parameters":[null,""],"Delimiter:":[null,""],"Quote Char:":[null,""],"CSV Import: %1":[null,""],"Auto-Detect":[null,""],"File to Import":[null,""],"Encoding:":[null,""],"Lines to Skip:":[null,""],"You must select an import file first.":[null,""],"Detection failed":[null,""],"Unknown column header \"%1\"":[null,""],"Error":[null,""],"Import failed":[null,""],"%1 record imported":["%1 records imported","",""],"CSV Export: %1":[null,""],"Save Export":[null,""],"URL Export":[null,""],"Delete Export":[null,""],"Predefined Exports":[null,""],"Selected Records":[null,""],"Listed Records":[null,""],"Export:":[null,""],"Ignore search limit":[null,""],"Use locale format":[null,""],"Add Field Names":[null,""],"%1 (string)":[null,""],"%1 (model name)":[null,""],"%1/Record Name":[null,""],"What is the name of this export?":[null,""],"Override %1 definition?":[null,""],"%1 record saved":["%1 records saved","",""],"E-mail %1":[null,""],"To:":[null,""],"Cc:":[null,""],"Bcc:":[null,""],"Subject:":[null,""],"Reports":[null,""],"Attachments":[null,""],"Files":[null,""],"Send":[null,""],"Remove File":[null,""],"Code Scanner":[null,""],"Code":[null,""],"Toggle Sound":[null,""],"Wizard":[null,""],"Translate view":[null,""]}
1
+ {"":{"content-type":"text/plain; charset=utf-8"},"Are your sure to leave?":[null,""],"Incompatible version of the server.":[null,""],"Version mismatch":[null,""],"Could not connect to the server.":[null,""],"Connection error":[null,""],"Favorites":[null,""],"Manage...":[null,""],"Logout":[null,""],"Action":[null,""],"New":[null,""],"Save":[null,""],"Switch":[null,""],"Reload/Undo":[null,""],"Duplicate":[null,""],"Delete":[null,""],"Previous":[null,""],"Next":[null,""],"Search":[null,""],"Close Tab":[null,""],"Attachment":[null,""],"Note":[null,""],"Relate":[null,""],"Print":[null,""],"E-Mail":[null,""],"Previous tab":[null,""],"Next tab":[null,""],"Global search":[null,""],"Show this help":[null,""],"Show/Hide access keys":[null,""],"Help":[null,""],"Close":[null,""],"Documentation...":[null,""],"Keyboard shortcuts":[null,""],"Global shortcuts":[null,""],"Tab shortcuts":[null,""],"Unable to reach the server.":[null,""],"Error: \"%1\". Try again later.":[null,""],"Login":[null,""],"Database":[null,""],"User name":[null,""],"Login with":[null,""],"Too many requests. Try again later.":[null,""],"Not found.":[null,""],"Send you an email to reset your password.":[null,""],"A request to reset your password has been sent.\nPlease check your mailbox.":[null,""],"Your selection:":[null,""],"Cancel":[null,""],"OK":[null,""],"Y":[null,""],"M":[null,""],"w":[null,""],"d":[null,""],"h":[null,""],"m":[null,""],"s":[null,""],"By: ":[null,""],"y":[null,""],"Yes":[null,""],"True":[null,""],"t":[null,""],"False":[null,""],"Always ignore this warning.":[null,""],"Do you want to proceed?":[null,""],"No":[null,""],"Concurrency Warning":[null,""],"This record has been modified while you were editing it.":[null,""],"Choose:":[null,""],"\"Cancel\" to cancel saving;":[null,""],"\"Compare\" to see the modified version;":[null,""],"\"Write Anyway\" to save your current version.":[null,""],"Compare":[null,""],"Compare: %1":[null,""],"Write Anyway":[null,""],"Application Error":[null,""],"Details":[null,""],"Report Bug":[null,""],"Processing":[null,""],"Search...":[null,""],"Create...":[null,""],"Create \"%1\"...":[null,""],"Download":[null,""],"Bold":[null,""],"Italic":[null,""],"Underline":[null,""],"Font":[null,""],"Size":[null,""],"Justify Right":[null,""],"Justify Left":[null,""],"Justify Center":[null,""],"Justify Full":[null,""],"Switch view":[null,""],"Previous Record":[null,""],"Next Record":[null,""],"Create a new record":[null,""],"Save this record":[null,""],"Reload":[null,""],"View Logs...":[null,""],"Show revisions...":[null,""],"Add an attachment to the record":[null,""],"Add a note to the record":[null,""],"E-Mail...":[null,""],"Send an e-mail using the record":[null,""],"Export":[null,""],"Import":[null,""],"The following action requires to close all tabs.\nDo you want to continue?":[null,""],"Launch action":[null,""],"Open related records":[null,""],"Print report":[null,""],"This record has been modified\ndo you want to save it?":[null,""],"Record saved.":[null,""],"Working now on the duplicated record(s).":[null,""],"Are you sure to remove this record?":[null,""],"Are you sure to remove those records?":[null,""],"Records removed.":[null,""],"Records not removed.":[null,""],"You have to select one record.":[null,""],"Add...":[null,""],"Preview":[null,""],"Template":[null,""],"Attachment (%1)":[null,""],"Note (%1/%2)":[null,""],"Filters":[null,""],"Clear Search":[null,""],"Bookmarks":[null,""],"Remove this bookmark":[null,""],"Bookmark this filter":[null,""],"Bookmark Name:":[null,""],"Show active records":[null,""],"Show inactive records":[null,""],"Find":[null,""],"From":[null,""],"To":[null,""],"Open the calendar":[null,""],"ID":[null,""],"Created by":[null,""],"Created at":[null,""],"Modified by":[null,""],"Modified at":[null,""],"\"%1\" is required.":[null,""],"\"%1\" is not valid according to its domain.":[null,""],"The values of \"%1\" are not valid.":[null,""],"Pre-validation":[null,""],":":[null,""],"Scan":[null,""],"Translate":[null,""],"Edit":[null,""],"Fuzzy":[null,""],"You need to save the record before adding translations.":[null,""],"No other language available.":[null,""],"Show":[null,""],"Hide":[null,""],"Open the record":[null,""],"Clear the field":[null,""],"Search a record":[null,""],"Add":[null,""],"Remove":[null,""],"Open":[null,""],"Undelete":[null,""],"Save As":[null,""],"Save As...":[null,""],"Select":[null,""],"Select...":[null,""],"Clear":[null,""],"Open...":[null,""],"Choose a language":[null,""],"%1%":[null,""],"Menu":[null,""],"Copy Selected Rows":[null,""],"#ERROR":[null,""],"More":[null,""],"Today":[null,""],"Month":[null,""],"Week":[null,""],"Day":[null,""],",...":[null,""],"%1 (%2)":[null,""],"Select your action":[null,""],"No action defined.":[null,""],"Discard changes":[null,""],"Save and New":[null,""],"Add and New":[null,""],"Apply changes":[null,""],"Attachments (%1)":[null,""],"Notes (%1)":[null,""],"Logs (%1)":[null,""],"Model:":[null,""],"ID:":[null,""],"Module:":[null,""],"XML ID:":[null,""],"Created by:":[null,""],"Created at:":[null,""],"Last Modified by:":[null,""],"Last Modified at:":[null,""],"Search %1":[null,""],"Revision":[null,""],"All Fields":[null,""],"Fields Selected":[null,""],"CSV Parameters":[null,""],"Delimiter:":[null,""],"Quote Char:":[null,""],"CSV Import: %1":[null,""],"Auto-Detect":[null,""],"File to Import":[null,""],"Encoding:":[null,""],"Lines to Skip:":[null,""],"You must select an import file first.":[null,""],"Detection failed":[null,""],"Unknown column header \"%1\"":[null,""],"Error":[null,""],"Import failed":[null,""],"%1 record imported":["%1 records imported","",""],"CSV Export: %1":[null,""],"Save Export":[null,""],"URL Export":[null,""],"Delete Export":[null,""],"Predefined Exports":[null,""],"Selected Records":[null,""],"Listed Records":[null,""],"Export:":[null,""],"Ignore search limit":[null,""],"Use locale format":[null,""],"Add Field Names":[null,""],"%1 (string)":[null,""],"%1 (model name)":[null,""],"%1/Record Name":[null,""],"What is the name of this export?":[null,""],"Override %1 definition?":[null,""],"%1 record saved":["%1 records saved","",""],"E-mail %1":[null,""],"To:":[null,""],"Cc:":[null,""],"Bcc:":[null,""],"Subject:":[null,""],"Reports":[null,""],"Attachments":[null,""],"Files":[null,""],"Send":[null,""],"Remove File":[null,""],"Code Scanner":[null,""],"Code":[null,""],"Toggle Sound":[null,""],"Wizard":[null,""],"Translate view":[null,""]}
package/locale/bg.po CHANGED
@@ -192,12 +192,6 @@ msgstr ""
192
192
  msgid "False"
193
193
  msgstr ""
194
194
 
195
- msgid "Message: "
196
- msgstr ""
197
-
198
- msgid "Warning: "
199
- msgstr ""
200
-
201
195
  msgid "Always ignore this warning."
202
196
  msgstr ""
203
197
 
@@ -207,13 +201,7 @@ msgstr ""
207
201
  msgid "No"
208
202
  msgstr ""
209
203
 
210
- msgid "Confirmation: "
211
- msgstr ""
212
-
213
- msgid "Concurrency Exception"
214
- msgstr ""
215
-
216
- msgid "Write Concurrency Warning: "
204
+ msgid "Concurrency Warning"
217
205
  msgstr ""
218
206
 
219
207
  msgid "This record has been modified while you were editing it."
@@ -243,6 +231,9 @@ msgstr ""
243
231
  msgid "Application Error"
244
232
  msgstr ""
245
233
 
234
+ msgid "Details"
235
+ msgstr ""
236
+
246
237
  msgid "Report Bug"
247
238
  msgstr ""
248
239
 
@@ -592,6 +583,12 @@ msgstr ""
592
583
  msgid "ID:"
593
584
  msgstr ""
594
585
 
586
+ msgid "Module:"
587
+ msgstr ""
588
+
589
+ msgid "XML ID:"
590
+ msgstr ""
591
+
595
592
  msgid "Created by:"
596
593
  msgstr ""
597
594
 
package/locale/ca.json CHANGED
@@ -1 +1 @@
1
- {"":{"content-type":"text/plain; charset=utf-8"},"Are your sure to leave?":[null,"Esteu segur que voleu sortir?"],"Incompatible version of the server.":[null,"El client no és compatible amb la versió del servidor."],"Version mismatch":[null,"Versió incompatible"],"Could not connect to the server.":[null,"No s'ha pogut connectar amb el servidor."],"Connection error":[null,"Error de connexió"],"Favorites":[null,"Preferits"],"Manage...":[null,"Gestiona..."],"Logout":[null,"Sortir"],"Action":[null,"Acció"],"New":[null,"Nou"],"Save":[null,"Desa"],"Switch":[null,"Canvia la vista"],"Reload/Undo":[null,"Recarrega/Desfés"],"Duplicate":[null,"Duplica"],"Delete":[null,"Elimina"],"Previous":[null,"Anterior"],"Next":[null,"Següent"],"Search":[null,"Cerca"],"Close Tab":[null,"Tanca pestanya"],"Attachment":[null,"Adjunt"],"Note":[null,"Nota"],"Relate":[null,"Relacionat"],"Print":[null,"Imprimeix"],"E-Mail":[null,"Correu electrònic"],"Previous tab":[null,"Pestanya anterior"],"Next tab":[null,"Pestanya següent"],"Global search":[null,"Cerca global"],"Show this help":[null,"Mostra aquesta ajuda"],"Show/Hide access keys":[null,"Mostra/Amaga les tecles ràpides"],"Help":[null,"Ajuda"],"Close":[null,"Tanca"],"Documentation...":[null,"Documentació..."],"Keyboard shortcuts":[null,"Dreceres de teclat"],"Global shortcuts":[null,"Dreceres globals"],"Tab shortcuts":[null,"Dreceres de la pestanya"],"Unable to reach the server.":[null,"No s'ha pogut connectar amb el servidor."],"Login":[null,"Accedeix"],"Database":[null,"Base de dades"],"User name":[null,"Nom d'usuari"],"Login with":[null,"Identificar-se amb"],"Too many requests. Try again later.":[null,"Massa peticions. Proveu-ho de nou més tard."],"Not found.":[null,"No s'han trobat."],"Send you an email to reset your password.":[null,""],"A request to reset your password has been sent.\nPlease check your mailbox.":[null,""],"Your selection:":[null,"La vostra selecció:"],"Cancel":[null,"Cancel·la"],"OK":[null,"D'acord"],"Y":[null,"A"],"M":[null,"M"],"w":[null,"S"],"d":[null,"d"],"h":[null,"h"],"m":[null,"m"],"s":[null,"s"],"By: ":[null,"Per: "],", ":[null,", "],"y":[null,"a"],"Yes":[null,"Si"],"True":[null,"Verdader"],"t":[null,"v"],"False":[null,"Fals"],"Message: ":[null,"Missatge: "],"Warning: ":[null,"Avs: "],"Always ignore this warning.":[null,"Ignora sempre aquest advertiment."],"Do you want to proceed?":[null,"Voleu continuar?"],"No":[null,"No"],"Confirmation: ":[null,"Confirmaci: "],"Concurrency Exception":[null,"Excepció de concurrència"],"Write Concurrency Warning: ":[null,"Avís de concurrència d'escriptura: "],"This record has been modified while you were editing it.":[null,"Aquest registre ha estat modificat mentre l'editàveu."],"Choose:":[null,"Trieu:"],"\"Cancel\" to cancel saving;":[null,"\"Cancel·la\" per no desar;"],"\"Compare\" to see the modified version;":[null,"\"Compara\" per veure la versi modificada;"],"\"Write Anyway\" to save your current version.":[null,"\"Desa de totes formes\" per desar els vostres canvis."],"Compare":[null,"Compara"],"Compare: %1":[null,"Compara: %1"],"Write Anyway":[null,"Desa de totes formes"],"Application Error":[null,"Error d'aplicació"],"Report Bug":[null,"Informa de l'error"],"Processing":[null,"Processant"],"Search...":[null,"Cerca..."],"Create...":[null,"Crea..."],"Create \"%1\"...":[null,"Crea \"%1\"..."],"Download":[null,"Baixa"],"...":[null,"..."],"Bold":[null,"Negreta"],"Italic":[null,"Cursiva"],"Underline":[null,"Subratllat"],"Font":[null,"Tipus de lletra"],"Size":[null,"Mida"],"Justify Right":[null,"Justificar a la dreta"],"Justify Left":[null,"Justificar a l'esquerra"],"Justify Center":[null,"Justificar al centre"],"Justify Full":[null,"Justificar per complet"],"Switch view":[null,"Canvia la vista"],"Previous Record":[null,"Registre anterior"],"Next Record":[null,"Registre següent"],"Create a new record":[null,"Crea un nou registre"],"Save this record":[null,"Desa aquest registre"],"Reload":[null,"Recarrega"],"View Logs...":[null,"Veure registres..."],"Show revisions...":[null,"Mostra revisions..."],"Add an attachment to the record":[null,"Afegeix un adjunt al registre"],"Add a note to the record":[null,"Afegeix una nota al registre"],"E-Mail...":[null,"Correu electrònic..."],"Send an e-mail using the record":[null,"Envia un correu electrònic utilitzant el registre"],"Export":[null,"Exporta"],"Import":[null,"Importa"],"The following action requires to close all tabs.\nDo you want to continue?":[null,"L'acció seleccionada requereix tancar totes les pestanyes.\nVoleu continuar?"],"Launch action":[null,"Executa acció"],"Open related records":[null,"Obre registres relacionats"],"Print report":[null,"Imprimeix informe"],"This record has been modified\ndo you want to save it?":[null,"Aquest registre ha estat modificat.\nVoleu desar-lo?"],"Record saved.":[null,"Registre desat."],"Working now on the duplicated record(s).":[null,"Està treballant amb un registre(s) duplicat."],"Are you sure to remove this record?":[null,"Esteu segur que voleu eliminar aquest registre?"],"Are you sure to remove those records?":[null,"Esteu segur que voleu eliminar aquests registres?"],"Records removed.":[null,"Registres eliminats."],"Records not removed.":[null,"Els registres no s'han eliminat."],"You have to select one record.":[null,"Ha de seleccionar un registre."],"Add...":[null,"Afegeix..."],"Preview":[null,"Previsualitza"],"Template":[null,"Plantilla"],"Attachment (%1)":[null,"Adjunts (%1)"],"Note (%1/%2)":[null,"Nota (%1/%2)"],"Filters":[null,"Filtres"],"Clear Search":[null,"Netejar la cerca"],"Bookmarks":[null,"Cerques preferides"],"Remove this bookmark":[null,"Elimina de les cerques preferides"],"Bookmark this filter":[null,"Desa com a cerca preferida"],"Bookmark Name:":[null,"Nom de la cerca preferida:"],"Show active records":[null,"Mostra registres actius"],"Show inactive records":[null,"Mostra registres inactius"],"Find":[null,"Cerca"],"From":[null,"De"],"To":[null,"A"],"Open the calendar":[null,"Obre el calendari"],"ID":[null,"ID"],"Created by":[null,"Creat per"],"Created at":[null,"Creat el"],"Modified by":[null,"Modificat per"],"Modified at":[null,"Modificat el"],"\"%1\" is required.":[null,"\"%1\" és obligatori."],"\"%1\" is not valid according to its domain.":[null,"\"%1\" no és vàlid segons el seu domini."],"The values of \"%1\" are not valid.":[null,"Els valors de \"%1\" no són vàlids."],"Pre-validation":[null,"Prevalidació"],":":[null,":"],"Scan":[null,"Escaneja"],"Translate":[null,"Tradueix"],"Edit":[null,"Edita"],"Fuzzy":[null,"Dubtosa"],"You need to save the record before adding translations.":[null,"Heu de desar el registre abans d'afegir traduccions."],"No other language available.":[null,"No hi ha cap altre idioma disponible."],"Show":[null,"Mostra"],"Hide":[null,"Amaga"],"Open the record":[null,"Obre el registre"],"Clear the field":[null,"Buida el camp"],"Search a record":[null,"Cerca un registre"],"Add":[null,"Afegeix"],"Remove":[null,"Elimina"],"Open":[null,"Obre"],"Undelete":[null,"Recupera"],"Save As":[null,"Anomena i desa"],"Save As...":[null,"Desa com..."],"Select":[null,"Selecciona"],"Select...":[null,"Selecciona..."],"Clear":[null,"Neteja"],"Open...":[null,"Obre..."],"Choose a language":[null,"Escull un idioma"],"%1%":[null,"%1%"],"Menu":[null,"Menú"],"#ERROR":[null,"#ERROR"],"More":[null,"Més"],": ":[null,": "],"Today":[null,"Avui"],"Month":[null,"Mes"],"Week":[null,"Setmana"],"Day":[null,"Dia"],",...":[null,",..."],"%1 (%2)":[null,"%1 (%2)"],"Select your action":[null,"Seleccioneu la vostra acció"],"No action defined.":[null,"No s'ha definit cap acció."],"Discard changes":[null,"Descartar els canvis"],"Save and New":[null,"Guarda i nou"],"Add and New":[null,"Afegeix i nou"],"Apply changes":[null,"Aplica canvis"],"Attachments (%1)":[null,"Adjunts (%1)"],"Notes (%1)":[null,"Notes (%1)"],"Logs (%1)":[null,"Registres (%1)"],"Model:":[null,"Model:"],"ID:":[null,"Identificador:"],"Created by:":[null,"Creat per:"],"Created at:":[null,"Creat el:"],"Last Modified by:":[null,"Última modificació per:"],"Last Modified at:":[null,"Última modificació el:"],"Search %1":[null,"Cerca %1"],"Revision":[null,"Revisió"],"All Fields":[null,"Tots els camps"],"Fields Selected":[null,"Camps seleccionats"],"CSV Parameters":[null,"Paràmetres CSV"],"Delimiter:":[null,"Separador:"],"Quote Char:":[null,"Delimitador de text:"],"CSV Import: %1":[null,"Importació CSV: %1"],"Auto-Detect":[null,"Detecta automàticament"],"File to Import":[null,"Fitxer a importar"],"Encoding:":[null,"Codificació:"],"Lines to Skip:":[null,"Línies a ometre:"],"You must select an import file first.":[null,"Primer heu de seleccionar un fitxer a importar."],"Detection failed":[null,"Ha fallat la detecció"],"Unknown column header \"%1\"":[null,"Capçalera de columna desconeguda: \"%1\""],"Error":[null,"Error"],"Import failed":[null,"Ha fallat la importació"],"%1 record imported":["%1 records imported","%1 registre importat","%1 registres importats"],"CSV Export: %1":[null,"Exportació CSV: %1"],"Save Export":[null,"Desa l'exportació"],"URL Export":[null,"URL Exportació"],"Delete Export":[null,"Elimina l'exportació"],"Predefined Exports":[null,"Exportacions predefinides"],"Selected Records":[null,"Registres seleccionats"],"Listed Records":[null,"Registres llistats"],"Export:":[null,"Exportar:"],"Ignore search limit":[null,"Ignora límit de cerca"],"Use locale format":[null,"Utilitza format local"],"Add Field Names":[null,"Afegeix noms dels camps"],"%1 (string)":[null,"%1 (cadena)"],"%1 (model name)":[null,"%1 (nom del model)"],"%1/Record Name":[null,"%1/Nom del registre"],"What is the name of this export?":[null,"Quin és el nom d'aquesta exportació?"],"Override %1 definition?":[null,"Voleu sobreescriure la definició %1?"],"%1 record saved":["%1 records saved","%1 registre desat","%1 registres desats"],"E-mail %1":[null,"Correu electrònic %1"],"To:":[null,"A:"],"Cc:":[null,"Cc:"],"Bcc:":[null,"Cco:"],"Subject:":[null,"Assumpte:"],"Reports":[null,"Informes"],"Attachments":[null,"Adjunts"],"Files":[null,"Fitxers"],"Send":[null,"Envia"],"Remove File":[null,"Elimina fitxer"],"Code Scanner":[null,"Escàner de codis"],"Code":[null,"Codi"],"Toggle Sound":[null,"Alterna so"],"Wizard":[null,"Assistent"],"Translate view":[null,"Tradueix la vista"]}
1
+ {"":{"content-type":"text/plain; charset=utf-8"},"Are your sure to leave?":[null,"Esteu segur que voleu sortir?"],"Incompatible version of the server.":[null,"El client no és compatible amb la versió del servidor."],"Version mismatch":[null,"Versió incompatible"],"Could not connect to the server.":[null,"No s'ha pogut connectar amb el servidor."],"Connection error":[null,"Error de connexió"],"Favorites":[null,"Preferits"],"Manage...":[null,"Gestiona..."],"Logout":[null,"Sortir"],"Action":[null,"Acció"],"New":[null,"Nou"],"Save":[null,"Desa"],"Switch":[null,"Canvia la vista"],"Reload/Undo":[null,"Recarrega/Desfés"],"Duplicate":[null,"Duplica"],"Delete":[null,"Elimina"],"Previous":[null,"Anterior"],"Next":[null,"Següent"],"Search":[null,"Cerca"],"Close Tab":[null,"Tanca pestanya"],"Attachment":[null,"Adjunt"],"Note":[null,"Nota"],"Relate":[null,"Relacionat"],"Print":[null,"Imprimeix"],"E-Mail":[null,"Correu electrònic"],"Previous tab":[null,"Pestanya anterior"],"Next tab":[null,"Pestanya següent"],"Global search":[null,"Cerca global"],"Show this help":[null,"Mostra aquesta ajuda"],"Show/Hide access keys":[null,"Mostra/Amaga les tecles ràpides"],"Help":[null,"Ajuda"],"Close":[null,"Tanca"],"Documentation...":[null,"Documentació..."],"Keyboard shortcuts":[null,"Dreceres de teclat"],"Global shortcuts":[null,"Dreceres globals"],"Tab shortcuts":[null,"Dreceres de la pestanya"],"Unable to reach the server.":[null,"No s'ha pogut connectar amb el servidor."],"Error: \"%1\". Try again later.":[null,"Error: \"%1\". Proveu-ho de nou més tard."],"Login":[null,"Accedeix"],"Database":[null,"Base de dades"],"User name":[null,"Nom d'usuari"],"Login with":[null,"Identificar-se amb"],"Too many requests. Try again later.":[null,"Massa peticions. Proveu-ho de nou més tard."],"Not found.":[null,"No s'han trobat."],"Send you an email to reset your password.":[null,"Reb un correu electrònic per restablir la teva contrasenya."],"A request to reset your password has been sent.\nPlease check your mailbox.":[null,"S'ha enviat una sol·licitud per restablir la contrasenya.\nSi us plau, comproveu la vostra bústia de correu."],"Your selection:":[null,"La vostra selecció:"],"Cancel":[null,"Cancel·la"],"OK":[null,"D'acord"],"Y":[null,"A"],"M":[null,"M"],"w":[null,"S"],"d":[null,"d"],"h":[null,"h"],"m":[null,"m"],"s":[null,"s"],"By: ":[null,"Per: "],", ":[null,", "],"y":[null,"a"],"Yes":[null,"Si"],"True":[null,"Verdader"],"t":[null,"v"],"False":[null,"Fals"],"Always ignore this warning.":[null,"Ignora sempre aquest advertiment."],"Do you want to proceed?":[null,"Voleu continuar?"],"No":[null,"No"],"Concurrency Warning":[null,"Avís de concurrència"],"This record has been modified while you were editing it.":[null,"Aquest registre ha estat modificat mentre l'editàveu."],"Choose:":[null,"Trieu:"],"\"Cancel\" to cancel saving;":[null,"\"Cancel·la\" per no desar;"],"\"Compare\" to see the modified version;":[null,"\"Compara\" per veure la versi modificada;"],"\"Write Anyway\" to save your current version.":[null,"\"Desa de totes formes\" per desar els vostres canvis."],"Compare":[null,"Compara"],"Compare: %1":[null,"Compara: %1"],"Write Anyway":[null,"Desa de totes formes"],"Application Error":[null,"Error d'aplicació"],"Details":[null,"Detalls"],"Report Bug":[null,"Informa de l'error"],"Processing":[null,"Processant"],"Search...":[null,"Cerca..."],"Create...":[null,"Crea..."],"Create \"%1\"...":[null,"Crea \"%1\"..."],"Download":[null,"Baixa"],"...":[null,"..."],"Bold":[null,"Negreta"],"Italic":[null,"Cursiva"],"Underline":[null,"Subratllat"],"Font":[null,"Tipus de lletra"],"Size":[null,"Mida"],"Justify Right":[null,"Justificar a la dreta"],"Justify Left":[null,"Justificar a l'esquerra"],"Justify Center":[null,"Justificar al centre"],"Justify Full":[null,"Justificar per complet"],"Switch view":[null,"Canvia la vista"],"Previous Record":[null,"Registre anterior"],"Next Record":[null,"Registre següent"],"Create a new record":[null,"Crea un nou registre"],"Save this record":[null,"Desa aquest registre"],"Reload":[null,"Recarrega"],"View Logs...":[null,"Veure registres..."],"Show revisions...":[null,"Mostra revisions..."],"Add an attachment to the record":[null,"Afegeix un adjunt al registre"],"Add a note to the record":[null,"Afegeix una nota al registre"],"E-Mail...":[null,"Correu electrònic..."],"Send an e-mail using the record":[null,"Envia un correu electrònic utilitzant el registre"],"Export":[null,"Exporta"],"Import":[null,"Importa"],"The following action requires to close all tabs.\nDo you want to continue?":[null,"L'acció seleccionada requereix tancar totes les pestanyes.\nVoleu continuar?"],"Launch action":[null,"Executa acció"],"Open related records":[null,"Obre registres relacionats"],"Print report":[null,"Imprimeix informe"],"This record has been modified\ndo you want to save it?":[null,"Aquest registre ha estat modificat.\nVoleu desar-lo?"],"Record saved.":[null,"Registre desat."],"Working now on the duplicated record(s).":[null,"Està treballant amb un registre(s) duplicat."],"Are you sure to remove this record?":[null,"Esteu segur que voleu eliminar aquest registre?"],"Are you sure to remove those records?":[null,"Esteu segur que voleu eliminar aquests registres?"],"Records removed.":[null,"Registres eliminats."],"Records not removed.":[null,"Els registres no s'han eliminat."],"You have to select one record.":[null,"Ha de seleccionar un registre."],"Add...":[null,"Afegeix..."],"Preview":[null,"Previsualitza"],"Template":[null,"Plantilla"],"Attachment (%1)":[null,"Adjunts (%1)"],"Note (%1/%2)":[null,"Nota (%1/%2)"],"Filters":[null,"Filtres"],"Clear Search":[null,"Netejar la cerca"],"Bookmarks":[null,"Cerques preferides"],"Remove this bookmark":[null,"Elimina de les cerques preferides"],"Bookmark this filter":[null,"Desa com a cerca preferida"],"Bookmark Name:":[null,"Nom de la cerca preferida:"],"Show active records":[null,"Mostra registres actius"],"Show inactive records":[null,"Mostra registres inactius"],"Find":[null,"Cerca"],"From":[null,"De"],"To":[null,"A"],"Open the calendar":[null,"Obre el calendari"],"ID":[null,"ID"],"Created by":[null,"Creat per"],"Created at":[null,"Creat el"],"Modified by":[null,"Modificat per"],"Modified at":[null,"Modificat el"],"\"%1\" is required.":[null,"\"%1\" és obligatori."],"\"%1\" is not valid according to its domain.":[null,"\"%1\" no és vàlid segons el seu domini."],"The values of \"%1\" are not valid.":[null,"Els valors de \"%1\" no són vàlids."],"Pre-validation":[null,"Prevalidació"],":":[null,":"],"Scan":[null,"Escaneja"],"Translate":[null,"Tradueix"],"Edit":[null,"Edita"],"Fuzzy":[null,"Dubtosa"],"You need to save the record before adding translations.":[null,"Heu de desar el registre abans d'afegir traduccions."],"No other language available.":[null,"No hi ha cap altre idioma disponible."],"Show":[null,"Mostra"],"Hide":[null,"Amaga"],"Open the record":[null,"Obre el registre"],"Clear the field":[null,"Buida el camp"],"Search a record":[null,"Cerca un registre"],"Add":[null,"Afegeix"],"Remove":[null,"Elimina"],"Open":[null,"Obre"],"Undelete":[null,"Recupera"],"Save As":[null,"Anomena i desa"],"Save As...":[null,"Desa com..."],"Select":[null,"Selecciona"],"Select...":[null,"Selecciona..."],"Clear":[null,"Neteja"],"Open...":[null,"Obre..."],"Choose a language":[null,"Escull un idioma"],"%1%":[null,"%1%"],"Menu":[null,"Menú"],"Copy Selected Rows":[null,"Copia files seleccionades"],"#ERROR":[null,"#ERROR"],"More":[null,"Més"],": ":[null,": "],"Today":[null,"Avui"],"Month":[null,"Mes"],"Week":[null,"Setmana"],"Day":[null,"Dia"],",...":[null,",..."],"%1 (%2)":[null,"%1 (%2)"],"Select your action":[null,"Seleccioneu la vostra acció"],"No action defined.":[null,"No s'ha definit cap acció."],"Discard changes":[null,"Descartar els canvis"],"Save and New":[null,"Guarda i nou"],"Add and New":[null,"Afegeix i nou"],"Apply changes":[null,"Aplica canvis"],"Attachments (%1)":[null,"Adjunts (%1)"],"Notes (%1)":[null,"Notes (%1)"],"Logs (%1)":[null,"Registres (%1)"],"Model:":[null,"Model:"],"ID:":[null,"Identificador:"],"Module:":[null,"Mòdul:"],"XML ID:":[null,"ID XML:"],"Created by:":[null,"Creat per:"],"Created at:":[null,"Creat el:"],"Last Modified by:":[null,"Última modificació per:"],"Last Modified at:":[null,"Última modificació el:"],"Search %1":[null,"Cerca %1"],"Revision":[null,"Revisió"],"All Fields":[null,"Tots els camps"],"Fields Selected":[null,"Camps seleccionats"],"CSV Parameters":[null,"Paràmetres CSV"],"Delimiter:":[null,"Separador:"],"Quote Char:":[null,"Delimitador de text:"],"CSV Import: %1":[null,"Importació CSV: %1"],"Auto-Detect":[null,"Detecta automàticament"],"File to Import":[null,"Fitxer a importar"],"Encoding:":[null,"Codificació:"],"Lines to Skip:":[null,"Línies a ometre:"],"You must select an import file first.":[null,"Primer heu de seleccionar un fitxer a importar."],"Detection failed":[null,"Ha fallat la detecció"],"Unknown column header \"%1\"":[null,"Capçalera de columna desconeguda: \"%1\""],"Error":[null,"Error"],"Import failed":[null,"Ha fallat la importació"],"%1 record imported":["%1 records imported","%1 registre importat","%1 registres importats"],"CSV Export: %1":[null,"Exportació CSV: %1"],"Save Export":[null,"Desa l'exportació"],"URL Export":[null,"URL Exportació"],"Delete Export":[null,"Elimina l'exportació"],"Predefined Exports":[null,"Exportacions predefinides"],"Selected Records":[null,"Registres seleccionats"],"Listed Records":[null,"Registres llistats"],"Export:":[null,"Exportar:"],"Ignore search limit":[null,"Ignora límit de cerca"],"Use locale format":[null,"Utilitza format local"],"Add Field Names":[null,"Afegeix noms dels camps"],"%1 (string)":[null,"%1 (cadena)"],"%1 (model name)":[null,"%1 (nom del model)"],"%1/Record Name":[null,"%1/Nom del registre"],"What is the name of this export?":[null,"Quin és el nom d'aquesta exportació?"],"Override %1 definition?":[null,"Voleu sobreescriure la definició %1?"],"%1 record saved":["%1 records saved","%1 registre desat","%1 registres desats"],"E-mail %1":[null,"Correu electrònic %1"],"To:":[null,"A:"],"Cc:":[null,"Cc:"],"Bcc:":[null,"Cco:"],"Subject:":[null,"Assumpte:"],"Reports":[null,"Informes"],"Attachments":[null,"Adjunts"],"Files":[null,"Fitxers"],"Send":[null,"Envia"],"Remove File":[null,"Elimina fitxer"],"Code Scanner":[null,"Escàner de codis"],"Code":[null,"Codi"],"Toggle Sound":[null,"Alterna so"],"Wizard":[null,"Assistent"],"Translate view":[null,"Tradueix la vista"]}
package/locale/ca.po CHANGED
@@ -110,9 +110,8 @@ msgstr "Dreceres de la pestanya"
110
110
  msgid "Unable to reach the server."
111
111
  msgstr "No s'ha pogut connectar amb el servidor."
112
112
 
113
- #, fuzzy
114
113
  msgid "Error: \"%1\". Try again later."
115
- msgstr "Massa peticions. Proveu-ho de nou més tard."
114
+ msgstr "Error: \"%1\". Proveu-ho de nou més tard."
116
115
 
117
116
  msgid "Login"
118
117
  msgstr "Accedeix"
@@ -133,12 +132,14 @@ msgid "Not found."
133
132
  msgstr "No s'han trobat."
134
133
 
135
134
  msgid "Send you an email to reset your password."
136
- msgstr ""
135
+ msgstr "Reb un correu electrònic per restablir la teva contrasenya."
137
136
 
138
137
  msgid ""
139
138
  "A request to reset your password has been sent.\n"
140
139
  "Please check your mailbox."
141
140
  msgstr ""
141
+ "S'ha enviat una sol·licitud per restablir la contrasenya.\n"
142
+ "Si us plau, comproveu la vostra bústia de correu."
142
143
 
143
144
  msgid "Your selection:"
144
145
  msgstr "La vostra selecció:"
@@ -191,12 +192,6 @@ msgstr "v"
191
192
  msgid "False"
192
193
  msgstr "Fals"
193
194
 
194
- msgid "Message: "
195
- msgstr "Missatge: "
196
-
197
- msgid "Warning: "
198
- msgstr "Avs: "
199
-
200
195
  msgid "Always ignore this warning."
201
196
  msgstr "Ignora sempre aquest advertiment."
202
197
 
@@ -206,14 +201,8 @@ msgstr "Voleu continuar?"
206
201
  msgid "No"
207
202
  msgstr "No"
208
203
 
209
- msgid "Confirmation: "
210
- msgstr "Confirmaci: "
211
-
212
- msgid "Concurrency Exception"
213
- msgstr "Excepció de concurrència"
214
-
215
- msgid "Write Concurrency Warning: "
216
- msgstr "Avís de concurrència d'escriptura: "
204
+ msgid "Concurrency Warning"
205
+ msgstr "Avís de concurrència"
217
206
 
218
207
  msgid "This record has been modified while you were editing it."
219
208
  msgstr "Aquest registre ha estat modificat mentre l'editàveu."
@@ -242,6 +231,9 @@ msgstr "Desa de totes formes"
242
231
  msgid "Application Error"
243
232
  msgstr "Error d'aplicació"
244
233
 
234
+ msgid "Details"
235
+ msgstr "Detalls"
236
+
245
237
  msgid "Report Bug"
246
238
  msgstr "Informa de l'error"
247
239
 
@@ -530,9 +522,8 @@ msgstr "%1%"
530
522
  msgid "Menu"
531
523
  msgstr "Menú"
532
524
 
533
- #, fuzzy
534
525
  msgid "Copy Selected Rows"
535
- msgstr "Registres seleccionats"
526
+ msgstr "Copia files seleccionades"
536
527
 
537
528
  msgid "#ERROR"
538
529
  msgstr "#ERROR"
@@ -594,6 +585,12 @@ msgstr "Model:"
594
585
  msgid "ID:"
595
586
  msgstr "Identificador:"
596
587
 
588
+ msgid "Module:"
589
+ msgstr "Mòdul:"
590
+
591
+ msgid "XML ID:"
592
+ msgstr "ID XML:"
593
+
597
594
  msgid "Created by:"
598
595
  msgstr "Creat per:"
599
596
 
package/locale/cs.json CHANGED
@@ -1 +1 @@
1
- {"":{"content-type":"text/plain; charset=utf-8"},"Are your sure to leave?":[null,""],"Incompatible version of the server.":[null,""],"Version mismatch":[null,""],"Could not connect to the server.":[null,""],"Connection error":[null,""],"Favorites":[null,""],"Manage...":[null,""],"Logout":[null,""],"Action":[null,""],"New":[null,""],"Save":[null,""],"Switch":[null,""],"Reload/Undo":[null,""],"Duplicate":[null,""],"Delete":[null,""],"Previous":[null,""],"Next":[null,""],"Search":[null,""],"Close Tab":[null,""],"Attachment":[null,""],"Note":[null,""],"Relate":[null,""],"Print":[null,""],"E-Mail":[null,""],"Previous tab":[null,""],"Next tab":[null,""],"Global search":[null,""],"Show this help":[null,""],"Show/Hide access keys":[null,""],"Help":[null,""],"Close":[null,""],"Documentation...":[null,""],"Keyboard shortcuts":[null,""],"Global shortcuts":[null,""],"Tab shortcuts":[null,""],"Unable to reach the server.":[null,""],"Error: \"%1\". Try again later.":[null,""],"Login":[null,""],"Database":[null,""],"User name":[null,""],"Login with":[null,""],"Too many requests. Try again later.":[null,""],"Not found.":[null,""],"Send you an email to reset your password.":[null,""],"A request to reset your password has been sent.\nPlease check your mailbox.":[null,""],"Your selection:":[null,""],"Cancel":[null,""],"OK":[null,""],"Y":[null,""],"M":[null,""],"w":[null,""],"d":[null,""],"h":[null,""],"m":[null,""],"s":[null,""],"By: ":[null,""],"y":[null,""],"Yes":[null,""],"True":[null,""],"t":[null,""],"False":[null,""],"Message: ":[null,""],"Warning: ":[null,""],"Always ignore this warning.":[null,""],"Do you want to proceed?":[null,""],"No":[null,""],"Confirmation: ":[null,""],"Concurrency Exception":[null,""],"Write Concurrency Warning: ":[null,""],"This record has been modified while you were editing it.":[null,""],"Choose:":[null,""],"\"Cancel\" to cancel saving;":[null,""],"\"Compare\" to see the modified version;":[null,""],"\"Write Anyway\" to save your current version.":[null,""],"Compare":[null,""],"Compare: %1":[null,""],"Write Anyway":[null,""],"Application Error":[null,""],"Report Bug":[null,""],"Processing":[null,""],"Search...":[null,""],"Create...":[null,""],"Create \"%1\"...":[null,""],"Download":[null,""],"Bold":[null,""],"Italic":[null,""],"Underline":[null,""],"Font":[null,""],"Size":[null,""],"Justify Right":[null,""],"Justify Left":[null,""],"Justify Center":[null,""],"Justify Full":[null,""],"Switch view":[null,""],"Previous Record":[null,""],"Next Record":[null,""],"Create a new record":[null,""],"Save this record":[null,""],"Reload":[null,""],"View Logs...":[null,""],"Show revisions...":[null,""],"Add an attachment to the record":[null,""],"Add a note to the record":[null,""],"E-Mail...":[null,""],"Send an e-mail using the record":[null,""],"Export":[null,""],"Import":[null,""],"The following action requires to close all tabs.\nDo you want to continue?":[null,""],"Launch action":[null,""],"Open related records":[null,""],"Print report":[null,""],"This record has been modified\ndo you want to save it?":[null,""],"Record saved.":[null,""],"Working now on the duplicated record(s).":[null,""],"Are you sure to remove this record?":[null,""],"Are you sure to remove those records?":[null,""],"Records removed.":[null,""],"Records not removed.":[null,""],"You have to select one record.":[null,""],"Add...":[null,""],"Preview":[null,""],"Template":[null,""],"Attachment (%1)":[null,""],"Note (%1/%2)":[null,""],"Filters":[null,""],"Clear Search":[null,""],"Bookmarks":[null,""],"Remove this bookmark":[null,""],"Bookmark this filter":[null,""],"Bookmark Name:":[null,""],"Show active records":[null,""],"Show inactive records":[null,""],"Find":[null,""],"From":[null,""],"To":[null,""],"Open the calendar":[null,""],"ID":[null,""],"Created by":[null,""],"Created at":[null,""],"Modified by":[null,""],"Modified at":[null,""],"\"%1\" is required.":[null,""],"\"%1\" is not valid according to its domain.":[null,""],"The values of \"%1\" are not valid.":[null,""],"Pre-validation":[null,""],":":[null,""],"Scan":[null,""],"Translate":[null,""],"Edit":[null,""],"Fuzzy":[null,""],"You need to save the record before adding translations.":[null,""],"No other language available.":[null,""],"Show":[null,""],"Hide":[null,""],"Open the record":[null,""],"Clear the field":[null,""],"Search a record":[null,""],"Add":[null,""],"Remove":[null,""],"Open":[null,""],"Undelete":[null,""],"Save As":[null,""],"Save As...":[null,""],"Select":[null,""],"Select...":[null,""],"Clear":[null,""],"Open...":[null,""],"Choose a language":[null,""],"%1%":[null,""],"Menu":[null,""],"Copy Selected Rows":[null,""],"#ERROR":[null,""],"More":[null,""],"Today":[null,""],"Month":[null,""],"Week":[null,""],"Day":[null,""],",...":[null,""],"%1 (%2)":[null,""],"Select your action":[null,""],"No action defined.":[null,""],"Discard changes":[null,""],"Save and New":[null,""],"Add and New":[null,""],"Apply changes":[null,""],"Attachments (%1)":[null,""],"Notes (%1)":[null,""],"Logs (%1)":[null,""],"Model:":[null,""],"ID:":[null,""],"Created by:":[null,""],"Created at:":[null,""],"Last Modified by:":[null,""],"Last Modified at:":[null,""],"Search %1":[null,""],"Revision":[null,""],"All Fields":[null,""],"Fields Selected":[null,""],"CSV Parameters":[null,""],"Delimiter:":[null,""],"Quote Char:":[null,""],"CSV Import: %1":[null,""],"Auto-Detect":[null,""],"File to Import":[null,""],"Encoding:":[null,""],"Lines to Skip:":[null,""],"You must select an import file first.":[null,""],"Detection failed":[null,""],"Unknown column header \"%1\"":[null,""],"Error":[null,""],"Import failed":[null,""],"%1 record imported":["%1 records imported","",""],"CSV Export: %1":[null,""],"Save Export":[null,""],"URL Export":[null,""],"Delete Export":[null,""],"Predefined Exports":[null,""],"Selected Records":[null,""],"Listed Records":[null,""],"Export:":[null,""],"Ignore search limit":[null,""],"Use locale format":[null,""],"Add Field Names":[null,""],"%1 (string)":[null,""],"%1 (model name)":[null,""],"%1/Record Name":[null,""],"What is the name of this export?":[null,""],"Override %1 definition?":[null,""],"%1 record saved":["%1 records saved","",""],"E-mail %1":[null,""],"To:":[null,""],"Cc:":[null,""],"Bcc:":[null,""],"Subject:":[null,""],"Reports":[null,""],"Attachments":[null,""],"Files":[null,""],"Send":[null,""],"Remove File":[null,""],"Code Scanner":[null,""],"Code":[null,""],"Toggle Sound":[null,""],"Wizard":[null,""],"Translate view":[null,""]}
1
+ {"":{"content-type":"text/plain; charset=utf-8"},"Are your sure to leave?":[null,""],"Incompatible version of the server.":[null,""],"Version mismatch":[null,""],"Could not connect to the server.":[null,""],"Connection error":[null,""],"Favorites":[null,""],"Manage...":[null,""],"Logout":[null,""],"Action":[null,""],"New":[null,""],"Save":[null,""],"Switch":[null,""],"Reload/Undo":[null,""],"Duplicate":[null,""],"Delete":[null,""],"Previous":[null,""],"Next":[null,""],"Search":[null,""],"Close Tab":[null,""],"Attachment":[null,""],"Note":[null,""],"Relate":[null,""],"Print":[null,""],"E-Mail":[null,""],"Previous tab":[null,""],"Next tab":[null,""],"Global search":[null,""],"Show this help":[null,""],"Show/Hide access keys":[null,""],"Help":[null,""],"Close":[null,""],"Documentation...":[null,""],"Keyboard shortcuts":[null,""],"Global shortcuts":[null,""],"Tab shortcuts":[null,""],"Unable to reach the server.":[null,""],"Error: \"%1\". Try again later.":[null,""],"Login":[null,""],"Database":[null,""],"User name":[null,""],"Login with":[null,""],"Too many requests. Try again later.":[null,""],"Not found.":[null,""],"Send you an email to reset your password.":[null,""],"A request to reset your password has been sent.\nPlease check your mailbox.":[null,""],"Your selection:":[null,""],"Cancel":[null,""],"OK":[null,""],"Y":[null,""],"M":[null,""],"w":[null,""],"d":[null,""],"h":[null,""],"m":[null,""],"s":[null,""],"By: ":[null,""],"y":[null,""],"Yes":[null,""],"True":[null,""],"t":[null,""],"False":[null,""],"Always ignore this warning.":[null,""],"Do you want to proceed?":[null,""],"No":[null,""],"Concurrency Warning":[null,""],"This record has been modified while you were editing it.":[null,""],"Choose:":[null,""],"\"Cancel\" to cancel saving;":[null,""],"\"Compare\" to see the modified version;":[null,""],"\"Write Anyway\" to save your current version.":[null,""],"Compare":[null,""],"Compare: %1":[null,""],"Write Anyway":[null,""],"Application Error":[null,""],"Details":[null,""],"Report Bug":[null,""],"Processing":[null,""],"Search...":[null,""],"Create...":[null,""],"Create \"%1\"...":[null,""],"Download":[null,""],"Bold":[null,""],"Italic":[null,""],"Underline":[null,""],"Font":[null,""],"Size":[null,""],"Justify Right":[null,""],"Justify Left":[null,""],"Justify Center":[null,""],"Justify Full":[null,""],"Switch view":[null,""],"Previous Record":[null,""],"Next Record":[null,""],"Create a new record":[null,""],"Save this record":[null,""],"Reload":[null,""],"View Logs...":[null,""],"Show revisions...":[null,""],"Add an attachment to the record":[null,""],"Add a note to the record":[null,""],"E-Mail...":[null,""],"Send an e-mail using the record":[null,""],"Export":[null,""],"Import":[null,""],"The following action requires to close all tabs.\nDo you want to continue?":[null,""],"Launch action":[null,""],"Open related records":[null,""],"Print report":[null,""],"This record has been modified\ndo you want to save it?":[null,""],"Record saved.":[null,""],"Working now on the duplicated record(s).":[null,""],"Are you sure to remove this record?":[null,""],"Are you sure to remove those records?":[null,""],"Records removed.":[null,""],"Records not removed.":[null,""],"You have to select one record.":[null,""],"Add...":[null,""],"Preview":[null,""],"Template":[null,""],"Attachment (%1)":[null,""],"Note (%1/%2)":[null,""],"Filters":[null,""],"Clear Search":[null,""],"Bookmarks":[null,""],"Remove this bookmark":[null,""],"Bookmark this filter":[null,""],"Bookmark Name:":[null,""],"Show active records":[null,""],"Show inactive records":[null,""],"Find":[null,""],"From":[null,""],"To":[null,""],"Open the calendar":[null,""],"ID":[null,""],"Created by":[null,""],"Created at":[null,""],"Modified by":[null,""],"Modified at":[null,""],"\"%1\" is required.":[null,""],"\"%1\" is not valid according to its domain.":[null,""],"The values of \"%1\" are not valid.":[null,""],"Pre-validation":[null,""],":":[null,""],"Scan":[null,""],"Translate":[null,""],"Edit":[null,""],"Fuzzy":[null,""],"You need to save the record before adding translations.":[null,""],"No other language available.":[null,""],"Show":[null,""],"Hide":[null,""],"Open the record":[null,""],"Clear the field":[null,""],"Search a record":[null,""],"Add":[null,""],"Remove":[null,""],"Open":[null,""],"Undelete":[null,""],"Save As":[null,""],"Save As...":[null,""],"Select":[null,""],"Select...":[null,""],"Clear":[null,""],"Open...":[null,""],"Choose a language":[null,""],"%1%":[null,""],"Menu":[null,""],"Copy Selected Rows":[null,""],"#ERROR":[null,""],"More":[null,""],"Today":[null,""],"Month":[null,""],"Week":[null,""],"Day":[null,""],",...":[null,""],"%1 (%2)":[null,""],"Select your action":[null,""],"No action defined.":[null,""],"Discard changes":[null,""],"Save and New":[null,""],"Add and New":[null,""],"Apply changes":[null,""],"Attachments (%1)":[null,""],"Notes (%1)":[null,""],"Logs (%1)":[null,""],"Model:":[null,""],"ID:":[null,""],"Module:":[null,""],"XML ID:":[null,""],"Created by:":[null,""],"Created at:":[null,""],"Last Modified by:":[null,""],"Last Modified at:":[null,""],"Search %1":[null,""],"Revision":[null,""],"All Fields":[null,""],"Fields Selected":[null,""],"CSV Parameters":[null,""],"Delimiter:":[null,""],"Quote Char:":[null,""],"CSV Import: %1":[null,""],"Auto-Detect":[null,""],"File to Import":[null,""],"Encoding:":[null,""],"Lines to Skip:":[null,""],"You must select an import file first.":[null,""],"Detection failed":[null,""],"Unknown column header \"%1\"":[null,""],"Error":[null,""],"Import failed":[null,""],"%1 record imported":["%1 records imported","",""],"CSV Export: %1":[null,""],"Save Export":[null,""],"URL Export":[null,""],"Delete Export":[null,""],"Predefined Exports":[null,""],"Selected Records":[null,""],"Listed Records":[null,""],"Export:":[null,""],"Ignore search limit":[null,""],"Use locale format":[null,""],"Add Field Names":[null,""],"%1 (string)":[null,""],"%1 (model name)":[null,""],"%1/Record Name":[null,""],"What is the name of this export?":[null,""],"Override %1 definition?":[null,""],"%1 record saved":["%1 records saved","",""],"E-mail %1":[null,""],"To:":[null,""],"Cc:":[null,""],"Bcc:":[null,""],"Subject:":[null,""],"Reports":[null,""],"Attachments":[null,""],"Files":[null,""],"Send":[null,""],"Remove File":[null,""],"Code Scanner":[null,""],"Code":[null,""],"Toggle Sound":[null,""],"Wizard":[null,""],"Translate view":[null,""]}
package/locale/cs.po CHANGED
@@ -192,12 +192,6 @@ msgstr ""
192
192
  msgid "False"
193
193
  msgstr ""
194
194
 
195
- msgid "Message: "
196
- msgstr ""
197
-
198
- msgid "Warning: "
199
- msgstr ""
200
-
201
195
  msgid "Always ignore this warning."
202
196
  msgstr ""
203
197
 
@@ -207,13 +201,7 @@ msgstr ""
207
201
  msgid "No"
208
202
  msgstr ""
209
203
 
210
- msgid "Confirmation: "
211
- msgstr ""
212
-
213
- msgid "Concurrency Exception"
214
- msgstr ""
215
-
216
- msgid "Write Concurrency Warning: "
204
+ msgid "Concurrency Warning"
217
205
  msgstr ""
218
206
 
219
207
  msgid "This record has been modified while you were editing it."
@@ -243,6 +231,9 @@ msgstr ""
243
231
  msgid "Application Error"
244
232
  msgstr ""
245
233
 
234
+ msgid "Details"
235
+ msgstr ""
236
+
246
237
  msgid "Report Bug"
247
238
  msgstr ""
248
239
 
@@ -592,6 +583,12 @@ msgstr ""
592
583
  msgid "ID:"
593
584
  msgstr ""
594
585
 
586
+ msgid "Module:"
587
+ msgstr ""
588
+
589
+ msgid "XML ID:"
590
+ msgstr ""
591
+
595
592
  msgid "Created by:"
596
593
  msgstr ""
597
594
 
package/locale/de.json CHANGED
@@ -1 +1 @@
1
- {"":{"content-type":"text/plain; charset=utf-8"},"Are your sure to leave?":[null,"Wollen Sie die Seite wirklich verlassen?"],"Incompatible version of the server.":[null,"Inkompatible Serverversion."],"Version mismatch":[null,"Versionskonflikt"],"Could not connect to the server.":[null,"Verbindung zum Server nicht möglich."],"Connection error":[null,"Verbindungsfehler"],"Favorites":[null,"Favoriten"],"Manage...":[null,"Verwalten..."],"Logout":[null,"Abmelden"],"Action":[null,"Aktion"],"New":[null,"Neu"],"Save":[null,"Speichern"],"Switch":[null,"Ansicht wechseln"],"Reload/Undo":[null,"Neu laden/Rückgängig"],"Duplicate":[null,"Duplizieren"],"Delete":[null,"Löschen"],"Previous":[null,"Vorheriger"],"Next":[null,"Nächster"],"Search":[null,"Suchen"],"Close Tab":[null,"Registerkarte schließen"],"Attachment":[null,"Anhang"],"Note":[null,"Notiz"],"Relate":[null,"Beziehung"],"Print":[null,"Drucken"],"E-Mail":[null,"E-Mail"],"Previous tab":[null,"Vorherige Registerkarte"],"Next tab":[null,"Nächste Registerkarte"],"Global search":[null,"Globale Suche"],"Show this help":[null,"Diese Hilfe anzeigen"],"Show/Hide access keys":[null,"Zugriffstasten anzeigen/ausblenden"],"Help":[null,"Hilfe"],"Close":[null,"Schließen"],"Documentation...":[null,"Dokumentation..."],"Keyboard shortcuts":[null,"Tastenkombinationen"],"Global shortcuts":[null,"Globale Tastenkombinationen"],"Tab shortcuts":[null,"Registerkarten Tastenkombinationen"],"Unable to reach the server.":[null,"Kann nicht zum Server verbinden."],"Login":[null,"Log-in"],"Database":[null,"Datenbank"],"User name":[null,"Benutzername"],"Login with":[null,"Log-in mit"],"Too many requests. Try again later.":[null,"Zu viele Anfragen. Bitte versuchen Sie es später erneut."],"Not found.":[null,"Nicht gefunden."],"Send you an email to reset your password.":[null,""],"A request to reset your password has been sent.\nPlease check your mailbox.":[null,""],"Your selection:":[null,"Ihre Auswahl:"],"Cancel":[null,"Abbrechen"],"OK":[null,"OK"],"Y":[null,"J"],"M":[null,"M"],"w":[null,"W"],"d":[null,"t"],"h":[null,"h"],"m":[null,"m"],"s":[null,"s"],"By: ":[null,"Von: "],", ":[null,", "],"y":[null,"J"],"Yes":[null,"Ja"],"True":[null,"Wahr"],"t":[null,"w"],"False":[null,"Falsch"],"Message: ":[null,"Nachricht: "],"Warning: ":[null,"Warnung: "],"Always ignore this warning.":[null,"Diese Warnung künftig nicht mehr anzeigen."],"Do you want to proceed?":[null,"Fortfahren?"],"No":[null,"Nein"],"Confirmation: ":[null,"Bestätigung: "],"Concurrency Exception":[null,"Aktualisierungskonflikt"],"Write Concurrency Warning: ":[null,"Aktualisierungskonflikt beim Schreiben des aktuellen Datensatzes: "],"This record has been modified while you were editing it.":[null,"Dieser Datensatz wurde anderweitig geändert, während Sie ihn bearbeitet haben."],"Choose:":[null,"Lösungsmöglichkeiten:"],"\"Cancel\" to cancel saving;":[null,"\"Abbrechen\" um den Speichervorgang abzubrechen;"],"\"Compare\" to see the modified version;":[null,"\"Vergleichen\" um die geänderte Version des Datensatzes zu betrachten;"],"\"Write Anyway\" to save your current version.":[null,"- \"Überschreiben\" um die gespeicherte Version mit Ihrer Version zu überschreiben."],"Compare":[null,"Vergleichen"],"Compare: %1":[null,"Vergleichen: %s"],"Write Anyway":[null,"Überschreiben"],"Application Error":[null,"Anwendungsfehler"],"Report Bug":[null,"Fehler melden"],"Processing":[null,"Verarbeitung läuft…"],"Search...":[null,"Suche..."],"Create...":[null,"Erstellen..."],"Create \"%1\"...":[null,"Erstelle \"%1\" …"],"Download":[null,"Herunterladen"],"...":[null,"..."],"Bold":[null,"Fett"],"Italic":[null,"Kursiv"],"Underline":[null,"Unterstrichen"],"Font":[null,"Schriftart"],"Size":[null,"Größe"],"Justify Right":[null,"Rechtsbündig"],"Justify Left":[null,"Linksbündig"],"Justify Center":[null,"Zentrieren"],"Justify Full":[null,"Blocksatz"],"Switch view":[null,"Ansicht wechseln"],"Previous Record":[null,"Vorheriger Datensatz"],"Next Record":[null,"Nächster Datensatz"],"Create a new record":[null,"Neuen Datensatz erstellen"],"Save this record":[null,"Diesen Datensatz speichern"],"Reload":[null,"Neu laden"],"View Logs...":[null,"Logs anzeigen..."],"Show revisions...":[null,"Bearbeitungen anzeigen..."],"Add an attachment to the record":[null,"Einen Anhang zum Datensatz hinzufügen"],"Add a note to the record":[null,"Eine Notiz zu einem Datensatz hinzufügen"],"E-Mail...":[null,"E-Mail..."],"Send an e-mail using the record":[null,"Eine E-Mail basierend auf diesem Datensatz versenden"],"Export":[null,"Export"],"Import":[null,"Import"],"The following action requires to close all tabs.\nDo you want to continue?":[null,"Die folgende Aktion erfordert die Schließung aller Registerkarten.\nFortfahren?"],"Launch action":[null,"Aktion ausführen"],"Open related records":[null,"Datensätze einer Beziehung öffnen"],"Print report":[null,"Bericht drucken"],"This record has been modified\ndo you want to save it?":[null,"Datensatz geändert.\nSoll der Datensatz gespeichert werden?"],"Record saved.":[null,"Der Datensatz wurde gespeichert."],"Working now on the duplicated record(s).":[null,"Sie arbeiten nun an dem/den duplizierten Datensatz/Datensätzen."],"Are you sure to remove this record?":[null,"Möchten Sie diesen Datensatz wirklich löschen?"],"Are you sure to remove those records?":[null,"Möchten Sie diese Datensätze wirklich löschen?"],"Records removed.":[null,"Die Datensätze wurden gelöscht."],"Records not removed.":[null,"Die Datensätze wurden nicht gelöscht."],"You have to select one record.":[null,"Ein Datensatz muss ausgewählt werden."],"Add...":[null,"Hinzufügen..."],"Preview":[null,"Vorschau"],"Template":[null,"Vorlage"],"Attachment (%1)":[null,"Anhänge (%1)"],"Note (%1/%2)":[null,"Notiz (%1/%2)"],"Filters":[null,"Filter"],"Clear Search":[null,"Suchfeld leeren"],"Bookmarks":[null,"Lesezeichen"],"Remove this bookmark":[null,"Dieses Lesezeichen entfernen"],"Bookmark this filter":[null,"Diesen Filter als Lesezeichen hinzufügen"],"Bookmark Name:":[null,"Lesezeichenname:"],"Show active records":[null,"Aktive Datensätze anzeigen"],"Show inactive records":[null,"Inaktive Datensätze anzeigen"],"Find":[null,"Suchen"],"From":[null,"Von"],"To":[null,"An"],"Open the calendar":[null,"Kalender öffnen"],"ID":[null,"ID"],"Created by":[null,"Erstellt von"],"Created at":[null,"Erstellt am"],"Modified by":[null,"Zuletzt verändert von"],"Modified at":[null,"Zuletzt verändert am"],"\"%1\" is required.":[null,"\"%1\" ist erforderlich."],"\"%1\" is not valid according to its domain.":[null,"\"%1\" liegt nicht im gültigen Wertebereich (Domain)."],"The values of \"%1\" are not valid.":[null,"Die Werte von \"%1\" sind ungültig."],"Pre-validation":[null,"Vorvalidierung"],":":[null,":"],"Scan":[null,"Scannen"],"Translate":[null,"Übersetzen"],"Edit":[null,"Bearbeiten"],"Fuzzy":[null,"Fuzzy"],"You need to save the record before adding translations.":[null,"Der Datensatz muss gespeichert werden, bevor eine Übersetzung hinzugefügt werden kann."],"No other language available.":[null,"Keine weitere Sprache verfügbar."],"Show":[null,"Anzeigen"],"Hide":[null,"Ausblenden"],"Open the record":[null,"Datensatz öffnen"],"Clear the field":[null,"Feldinhalt löschen"],"Search a record":[null,"Datensatz suchen"],"Add":[null,"Hinzufügen"],"Remove":[null,"Entfernen"],"Open":[null,"Öffnen"],"Undelete":[null,"Löschung rückgängig machen"],"Save As":[null,"Speichern unter…"],"Save As...":[null,"Speichern unter..."],"Select":[null,"Auswählen"],"Select...":[null,"Auswählen..."],"Clear":[null,"Leeren"],"Open...":[null,"Öffnen..."],"Choose a language":[null,"Sprache auswählen"],"%1%":[null,"%1%"],"Menu":[null,"Menü"],"#ERROR":[null,"#FEHLER"],"More":[null,"Mehr"],": ":[null,": "],"Today":[null,"Heute"],"Month":[null,"Monat"],"Week":[null,"Woche"],"Day":[null,"Tag"],",...":[null,",..."],"%1 (%2)":[null,"%1 (%2)"],"Select your action":[null,"Aktion wählen"],"No action defined.":[null,"Keine Aktion definiert."],"Discard changes":[null,"Änderungen verwerfen"],"Save and New":[null,"Speichern und Neu"],"Add and New":[null,"Hinzufügen und Neu"],"Apply changes":[null,"Änderungen anwenden"],"Attachments (%1)":[null,"Anhänge (%1)"],"Notes (%1)":[null,"Notizen (%1)"],"Logs (%1)":[null,"Logs (%1)"],"Model:":[null,"Modell:"],"ID:":[null,"ID:"],"Created by:":[null,"Erstellt von:"],"Created at:":[null,"Erstellt am:"],"Last Modified by:":[null,"Zuletzt verändert von:"],"Last Modified at:":[null,"Zuletzt verändert am:"],"Search %1":[null,"Suche %1"],"Revision":[null,"Bearbeitung"],"All Fields":[null,"Alle Felder"],"Fields Selected":[null,"Ausgewählte Felder"],"CSV Parameters":[null,"CSV-Parameter"],"Delimiter:":[null,"Feldtrenner:"],"Quote Char:":[null,"Anführungszeichen:"],"CSV Import: %1":[null,"CSV-Import: %1"],"Auto-Detect":[null,"Automatische Erkennung"],"File to Import":[null,"Zu importierende Datei"],"Encoding:":[null,"Zeichenkodierung:"],"Lines to Skip:":[null,"Zu überspringende Zeilen:"],"You must select an import file first.":[null,"Es muss zuerst eine Importdatei ausgewählt werden."],"Detection failed":[null,"Lesen der Datei fehlgeschlagen"],"Unknown column header \"%1\"":[null,"Unbekannte Spaltenüberschrift \"%1\""],"Error":[null,"Fehler"],"Import failed":[null,"Import fehlgeschlagen"],"%1 record imported":["%1 records imported","%1 Datensatz importiert","%1 Datensätze importiert"],"CSV Export: %1":[null,"CSV-Export: %1"],"Save Export":[null,"Exportkonfiguration speichern"],"URL Export":[null,"URL-Export"],"Delete Export":[null,"Exportkonfiguration löschen"],"Predefined Exports":[null,"Vordefinierte Exporte"],"Selected Records":[null,"Ausgewählte Datensätze"],"Listed Records":[null,"Angezeigte Datensätze"],"Export:":[null,"Export:"],"Ignore search limit":[null,"Suchlimit ignorieren"],"Use locale format":[null,"Lokales Format verwenden"],"Add Field Names":[null,"Feldnamen hinzufügen"],"%1 (string)":[null,"%1 (string)"],"%1 (model name)":[null,"%1 (Bezeichnung des Datensatzes)"],"%1/Record Name":[null,"%1/Bezeichnung des Datensatzes"],"What is the name of this export?":[null,"Wie soll der Name des Exports lauten?"],"Override %1 definition?":[null,"Definition von %1 nicht berücksichtigen?"],"%1 record saved":["%1 records saved","%1 Datensatz gespeichert","%1 Datensätze gespeichert"],"E-mail %1":[null,"E-Mail %1"],"To:":[null,"An:"],"Cc:":[null,"Cc:"],"Bcc:":[null,"Bcc:"],"Subject:":[null,"Betreff:"],"Reports":[null,"Berichte"],"Attachments":[null,"Anhänge"],"Files":[null,"Dateien"],"Send":[null,"Senden"],"Remove File":[null,"Datei entfernen"],"Code Scanner":[null,"Barcode Scanner"],"Code":[null,"Code"],"Toggle Sound":[null,"Ton ein-/ausschalten"],"Wizard":[null,"Assistent"],"Translate view":[null,"Aktuelle Sicht übersetzen"]}
1
+ {"":{"content-type":"text/plain; charset=utf-8"},"Are your sure to leave?":[null,"Wollen Sie die Seite wirklich verlassen?"],"Incompatible version of the server.":[null,"Inkompatible Serverversion."],"Version mismatch":[null,"Versionskonflikt"],"Could not connect to the server.":[null,"Verbindung zum Server nicht möglich."],"Connection error":[null,"Verbindungsfehler"],"Favorites":[null,"Favoriten"],"Manage...":[null,"Verwalten..."],"Logout":[null,"Abmelden"],"Action":[null,"Aktion"],"New":[null,"Neu"],"Save":[null,"Speichern"],"Switch":[null,"Ansicht wechseln"],"Reload/Undo":[null,"Neu laden/Rückgängig"],"Duplicate":[null,"Duplizieren"],"Delete":[null,"Löschen"],"Previous":[null,"Vorheriger"],"Next":[null,"Nächster"],"Search":[null,"Suchen"],"Close Tab":[null,"Registerkarte schließen"],"Attachment":[null,"Anhang"],"Note":[null,"Notiz"],"Relate":[null,"Beziehung"],"Print":[null,"Drucken"],"E-Mail":[null,"E-Mail"],"Previous tab":[null,"Vorherige Registerkarte"],"Next tab":[null,"Nächste Registerkarte"],"Global search":[null,"Globale Suche"],"Show this help":[null,"Diese Hilfe anzeigen"],"Show/Hide access keys":[null,"Zugriffstasten anzeigen/ausblenden"],"Help":[null,"Hilfe"],"Close":[null,"Schließen"],"Documentation...":[null,"Dokumentation..."],"Keyboard shortcuts":[null,"Tastenkombinationen"],"Global shortcuts":[null,"Globale Tastenkombinationen"],"Tab shortcuts":[null,"Registerkarten Tastenkombinationen"],"Unable to reach the server.":[null,"Kann nicht zum Server verbinden."],"Error: \"%1\". Try again later.":[null,"Fehler: \"%1\". Versuchen Sie es später erneut."],"Login":[null,"Log-in"],"Database":[null,"Datenbank"],"User name":[null,"Benutzername"],"Login with":[null,"Log-in mit"],"Too many requests. Try again later.":[null,"Zu viele Anfragen. Bitte versuchen Sie es später erneut."],"Not found.":[null,"Nicht gefunden."],"Send you an email to reset your password.":[null,"E-Mail zum Zurücksetzen des Passworts senden."],"A request to reset your password has been sent.\nPlease check your mailbox.":[null,"Eine Anfrage zum Zurücksetzen Ihres Passworts wurde gesendet.\nBitte überprüfen Sie Ihr Postfach."],"Your selection:":[null,"Ihre Auswahl:"],"Cancel":[null,"Abbrechen"],"OK":[null,"OK"],"Y":[null,"J"],"M":[null,"M"],"w":[null,"W"],"d":[null,"t"],"h":[null,"h"],"m":[null,"m"],"s":[null,"s"],"By: ":[null,"Von: "],", ":[null,", "],"y":[null,"J"],"Yes":[null,"Ja"],"True":[null,"Wahr"],"t":[null,"w"],"False":[null,"Falsch"],"Always ignore this warning.":[null,"Diese Warnung künftig nicht mehr anzeigen."],"Do you want to proceed?":[null,"Fortfahren?"],"No":[null,"Nein"],"Concurrency Warning":[null,"Aktualisierungskonflikt"],"This record has been modified while you were editing it.":[null,"Dieser Datensatz wurde anderweitig geändert, während Sie ihn bearbeitet haben."],"Choose:":[null,"Lösungsmöglichkeiten:"],"\"Cancel\" to cancel saving;":[null,"\"Abbrechen\" um den Speichervorgang abzubrechen;"],"\"Compare\" to see the modified version;":[null,"\"Vergleichen\" um die geänderte Version des Datensatzes zu betrachten;"],"\"Write Anyway\" to save your current version.":[null,"- \"Überschreiben\" um die gespeicherte Version mit Ihrer Version zu überschreiben."],"Compare":[null,"Vergleichen"],"Compare: %1":[null,"Vergleichen: %s"],"Write Anyway":[null,"Überschreiben"],"Application Error":[null,"Anwendungsfehler"],"Details":[null,"Details"],"Report Bug":[null,"Fehler melden"],"Processing":[null,"Verarbeitung läuft…"],"Search...":[null,"Suche..."],"Create...":[null,"Erstellen..."],"Create \"%1\"...":[null,"Erstelle \"%1\" …"],"Download":[null,"Herunterladen"],"...":[null,"..."],"Bold":[null,"Fett"],"Italic":[null,"Kursiv"],"Underline":[null,"Unterstrichen"],"Font":[null,"Schriftart"],"Size":[null,"Größe"],"Justify Right":[null,"Rechtsbündig"],"Justify Left":[null,"Linksbündig"],"Justify Center":[null,"Zentrieren"],"Justify Full":[null,"Blocksatz"],"Switch view":[null,"Ansicht wechseln"],"Previous Record":[null,"Vorheriger Datensatz"],"Next Record":[null,"Nächster Datensatz"],"Create a new record":[null,"Neuen Datensatz erstellen"],"Save this record":[null,"Diesen Datensatz speichern"],"Reload":[null,"Neu laden"],"View Logs...":[null,"Logs anzeigen..."],"Show revisions...":[null,"Bearbeitungen anzeigen..."],"Add an attachment to the record":[null,"Einen Anhang zum Datensatz hinzufügen"],"Add a note to the record":[null,"Eine Notiz zu einem Datensatz hinzufügen"],"E-Mail...":[null,"E-Mail..."],"Send an e-mail using the record":[null,"Eine E-Mail basierend auf diesem Datensatz versenden"],"Export":[null,"Export"],"Import":[null,"Import"],"The following action requires to close all tabs.\nDo you want to continue?":[null,"Die folgende Aktion erfordert die Schließung aller Registerkarten.\nFortfahren?"],"Launch action":[null,"Aktion ausführen"],"Open related records":[null,"Datensätze einer Beziehung öffnen"],"Print report":[null,"Bericht drucken"],"This record has been modified\ndo you want to save it?":[null,"Datensatz geändert.\nSoll der Datensatz gespeichert werden?"],"Record saved.":[null,"Der Datensatz wurde gespeichert."],"Working now on the duplicated record(s).":[null,"Sie arbeiten nun an dem/den duplizierten Datensatz/Datensätzen."],"Are you sure to remove this record?":[null,"Möchten Sie diesen Datensatz wirklich löschen?"],"Are you sure to remove those records?":[null,"Möchten Sie diese Datensätze wirklich löschen?"],"Records removed.":[null,"Die Datensätze wurden gelöscht."],"Records not removed.":[null,"Die Datensätze wurden nicht gelöscht."],"You have to select one record.":[null,"Ein Datensatz muss ausgewählt werden."],"Add...":[null,"Hinzufügen..."],"Preview":[null,"Vorschau"],"Template":[null,"Vorlage"],"Attachment (%1)":[null,"Anhänge (%1)"],"Note (%1/%2)":[null,"Notiz (%1/%2)"],"Filters":[null,"Filter"],"Clear Search":[null,"Suchfeld leeren"],"Bookmarks":[null,"Lesezeichen"],"Remove this bookmark":[null,"Dieses Lesezeichen entfernen"],"Bookmark this filter":[null,"Diesen Filter als Lesezeichen hinzufügen"],"Bookmark Name:":[null,"Lesezeichenname:"],"Show active records":[null,"Aktive Datensätze anzeigen"],"Show inactive records":[null,"Inaktive Datensätze anzeigen"],"Find":[null,"Suchen"],"From":[null,"Von"],"To":[null,"An"],"Open the calendar":[null,"Kalender öffnen"],"ID":[null,"ID"],"Created by":[null,"Erstellt von"],"Created at":[null,"Erstellt am"],"Modified by":[null,"Zuletzt verändert von"],"Modified at":[null,"Zuletzt verändert am"],"\"%1\" is required.":[null,"\"%1\" ist erforderlich."],"\"%1\" is not valid according to its domain.":[null,"\"%1\" liegt nicht im gültigen Wertebereich (Domain)."],"The values of \"%1\" are not valid.":[null,"Die Werte von \"%1\" sind ungültig."],"Pre-validation":[null,"Vorvalidierung"],":":[null,":"],"Scan":[null,"Scannen"],"Translate":[null,"Übersetzen"],"Edit":[null,"Bearbeiten"],"Fuzzy":[null,"Fuzzy"],"You need to save the record before adding translations.":[null,"Der Datensatz muss gespeichert werden, bevor eine Übersetzung hinzugefügt werden kann."],"No other language available.":[null,"Keine weitere Sprache verfügbar."],"Show":[null,"Anzeigen"],"Hide":[null,"Ausblenden"],"Open the record":[null,"Datensatz öffnen"],"Clear the field":[null,"Feldinhalt löschen"],"Search a record":[null,"Datensatz suchen"],"Add":[null,"Hinzufügen"],"Remove":[null,"Entfernen"],"Open":[null,"Öffnen"],"Undelete":[null,"Löschung rückgängig machen"],"Save As":[null,"Speichern unter…"],"Save As...":[null,"Speichern unter..."],"Select":[null,"Auswählen"],"Select...":[null,"Auswählen..."],"Clear":[null,"Leeren"],"Open...":[null,"Öffnen..."],"Choose a language":[null,"Sprache auswählen"],"%1%":[null,"%1%"],"Menu":[null,"Menü"],"Copy Selected Rows":[null,"Ausgewählte Zeilen kopieren"],"#ERROR":[null,"#FEHLER"],"More":[null,"Mehr"],": ":[null,": "],"Today":[null,"Heute"],"Month":[null,"Monat"],"Week":[null,"Woche"],"Day":[null,"Tag"],",...":[null,",..."],"%1 (%2)":[null,"%1 (%2)"],"Select your action":[null,"Aktion wählen"],"No action defined.":[null,"Keine Aktion definiert."],"Discard changes":[null,"Änderungen verwerfen"],"Save and New":[null,"Speichern und Neu"],"Add and New":[null,"Hinzufügen und Neu"],"Apply changes":[null,"Änderungen anwenden"],"Attachments (%1)":[null,"Anhänge (%1)"],"Notes (%1)":[null,"Notizen (%1)"],"Logs (%1)":[null,"Logs (%1)"],"Model:":[null,"Modell:"],"ID:":[null,"ID:"],"Module:":[null,"Modul:"],"XML ID:":[null,"XML-ID:"],"Created by:":[null,"Erstellt von:"],"Created at:":[null,"Erstellt am:"],"Last Modified by:":[null,"Zuletzt verändert von:"],"Last Modified at:":[null,"Zuletzt verändert am:"],"Search %1":[null,"Suche %1"],"Revision":[null,"Bearbeitung"],"All Fields":[null,"Alle Felder"],"Fields Selected":[null,"Ausgewählte Felder"],"CSV Parameters":[null,"CSV-Parameter"],"Delimiter:":[null,"Feldtrenner:"],"Quote Char:":[null,"Anführungszeichen:"],"CSV Import: %1":[null,"CSV-Import: %1"],"Auto-Detect":[null,"Automatische Erkennung"],"File to Import":[null,"Zu importierende Datei"],"Encoding:":[null,"Zeichenkodierung:"],"Lines to Skip:":[null,"Zu überspringende Zeilen:"],"You must select an import file first.":[null,"Es muss zuerst eine Importdatei ausgewählt werden."],"Detection failed":[null,"Lesen der Datei fehlgeschlagen"],"Unknown column header \"%1\"":[null,"Unbekannte Spaltenüberschrift \"%1\""],"Error":[null,"Fehler"],"Import failed":[null,"Import fehlgeschlagen"],"%1 record imported":["%1 records imported","%1 Datensatz importiert","%1 Datensätze importiert"],"CSV Export: %1":[null,"CSV-Export: %1"],"Save Export":[null,"Exportkonfiguration speichern"],"URL Export":[null,"URL-Export"],"Delete Export":[null,"Exportkonfiguration löschen"],"Predefined Exports":[null,"Vordefinierte Exporte"],"Selected Records":[null,"Ausgewählte Datensätze"],"Listed Records":[null,"Angezeigte Datensätze"],"Export:":[null,"Export:"],"Ignore search limit":[null,"Suchlimit ignorieren"],"Use locale format":[null,"Lokales Format verwenden"],"Add Field Names":[null,"Feldnamen hinzufügen"],"%1 (string)":[null,"%1 (string)"],"%1 (model name)":[null,"%1 (Bezeichnung des Datensatzes)"],"%1/Record Name":[null,"%1/Bezeichnung des Datensatzes"],"What is the name of this export?":[null,"Wie soll der Name des Exports lauten?"],"Override %1 definition?":[null,"Definition von %1 nicht berücksichtigen?"],"%1 record saved":["%1 records saved","%1 Datensatz gespeichert","%1 Datensätze gespeichert"],"E-mail %1":[null,"E-Mail %1"],"To:":[null,"An:"],"Cc:":[null,"Cc:"],"Bcc:":[null,"Bcc:"],"Subject:":[null,"Betreff:"],"Reports":[null,"Berichte"],"Attachments":[null,"Anhänge"],"Files":[null,"Dateien"],"Send":[null,"Senden"],"Remove File":[null,"Datei entfernen"],"Code Scanner":[null,"Barcode Scanner"],"Code":[null,"Code"],"Toggle Sound":[null,"Ton ein-/ausschalten"],"Wizard":[null,"Assistent"],"Translate view":[null,"Aktuelle Sicht übersetzen"]}