comfortable_mexican_sofa 1.12.4 → 1.12.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (75) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +7 -3
  3. data/app/assets/images/{comfortable_mexican_sofa → comfy/admin/cms}/arrow_bottom.gif +0 -0
  4. data/app/assets/images/{comfortable_mexican_sofa → comfy/admin/cms}/arrow_right.gif +0 -0
  5. data/app/assets/images/{comfortable_mexican_sofa → comfy/admin/cms}/checkerboard.gif +0 -0
  6. data/app/assets/images/{comfortable_mexican_sofa → comfy/admin/cms}/icon_draft.gif +0 -0
  7. data/app/assets/images/{comfortable_mexican_sofa → comfy/admin/cms}/icon_file.gif +0 -0
  8. data/app/assets/images/{comfortable_mexican_sofa → comfy/admin/cms}/icon_layout.gif +0 -0
  9. data/app/assets/images/{comfortable_mexican_sofa → comfy/admin/cms}/icon_move.gif +0 -0
  10. data/app/assets/images/{comfortable_mexican_sofa → comfy/admin/cms}/icon_page.gif +0 -0
  11. data/app/assets/images/{comfortable_mexican_sofa → comfy/admin/cms}/icon_site.gif +0 -0
  12. data/app/assets/images/{comfortable_mexican_sofa → comfy/admin/cms}/icon_snippet.gif +0 -0
  13. data/app/assets/javascripts/comfy/admin/cms/application.js.coffee +24 -0
  14. data/app/assets/javascripts/{comfortable_mexican_sofa/application.js.coffee → comfy/admin/cms/base.js.coffee} +20 -32
  15. data/app/assets/javascripts/comfy/admin/cms/custom.js.coffee +1 -0
  16. data/app/assets/javascripts/{comfortable_mexican_sofa → comfy/admin}/cms/files.js.coffee +0 -0
  17. data/app/assets/javascripts/{comfortable_mexican_sofa → comfy/admin/cms}/lib/bootstrap-datetimepicker.js +0 -0
  18. data/app/assets/javascripts/comfy/admin/cms/lib/diff.js.coffee +9 -0
  19. data/app/assets/javascripts/{comfortable_mexican_sofa → comfy/admin/cms}/lib/diff/diff_match_patch.min.js +0 -0
  20. data/app/assets/javascripts/{comfortable_mexican_sofa → comfy/admin/cms}/lib/diff/pretty_text_diff.min.js +0 -0
  21. data/app/assets/javascripts/comfy/admin/cms/lib/redactor.js +8221 -0
  22. data/app/assets/javascripts/comfy/admin/cms/lib/redactor/filemanager.js +64 -0
  23. data/app/assets/javascripts/comfy/admin/cms/lib/redactor/i18n/cs.js +86 -0
  24. data/app/assets/javascripts/comfy/admin/cms/lib/redactor/i18n/da.js +74 -0
  25. data/app/assets/javascripts/comfy/admin/cms/lib/redactor/i18n/de.js +79 -0
  26. data/app/assets/javascripts/comfy/admin/cms/lib/redactor/i18n/es.js +74 -0
  27. data/app/assets/javascripts/comfy/admin/cms/lib/redactor/i18n/fr.js +74 -0
  28. data/app/assets/javascripts/comfy/admin/cms/lib/redactor/i18n/it.js +77 -0
  29. data/app/assets/javascripts/comfy/admin/cms/lib/redactor/i18n/ja.js +75 -0
  30. data/app/assets/javascripts/comfy/admin/cms/lib/redactor/i18n/nb.js +74 -0
  31. data/app/assets/javascripts/comfy/admin/cms/lib/redactor/i18n/nl.js +79 -0
  32. data/app/assets/javascripts/comfy/admin/cms/lib/redactor/i18n/pl.js +75 -0
  33. data/app/assets/javascripts/comfy/admin/cms/lib/redactor/i18n/pt_BR.js +74 -0
  34. data/app/assets/javascripts/comfy/admin/cms/lib/redactor/i18n/ru.js +75 -0
  35. data/app/assets/javascripts/comfy/admin/cms/lib/redactor/i18n/sv.js +76 -0
  36. data/app/assets/javascripts/comfy/admin/cms/lib/redactor/i18n/zh_CN.js +75 -0
  37. data/app/assets/javascripts/comfy/admin/cms/lib/redactor/i18n/zh_TW.js +75 -0
  38. data/app/assets/javascripts/comfy/admin/cms/lib/redactor/imagemanager.js +57 -0
  39. data/app/assets/javascripts/comfy/admin/cms/lib/redactor/table.js +337 -0
  40. data/app/assets/javascripts/comfy/admin/cms/lib/redactor/video.js +77 -0
  41. data/app/assets/javascripts/{comfortable_mexican_sofa → comfy/admin}/cms/uploader.js.coffee +0 -2
  42. data/app/assets/stylesheets/comfy/admin/cms/application.sass +11 -0
  43. data/app/assets/stylesheets/{comfortable_mexican_sofa → comfy/admin/cms}/base.sass +15 -13
  44. data/app/assets/stylesheets/{comfortable_mexican_sofa → comfy/admin/cms}/bootstrap_overrides.sass +0 -0
  45. data/app/assets/stylesheets/{comfortable_mexican_sofa → comfy/admin/cms}/codemirror_overrides.sass +0 -0
  46. data/app/assets/stylesheets/comfy/admin/cms/custom.sass +1 -0
  47. data/app/assets/stylesheets/{comfortable_mexican_sofa → comfy/admin/cms}/lib/bootstrap-datetimepicker.css +0 -0
  48. data/app/assets/stylesheets/comfy/admin/cms/lib/redactor.css +921 -0
  49. data/app/assets/stylesheets/comfy/admin/cms/redactor_overrides.sass +20 -0
  50. data/app/controllers/comfy/admin/cms/base_controller.rb +3 -2
  51. data/app/controllers/comfy/admin/cms/files_controller.rb +52 -24
  52. data/app/helpers/comfy/cms_helper.rb +1 -0
  53. data/app/models/comfy/cms/file.rb +1 -1
  54. data/app/views/comfy/admin/cms/files/_page_form.html.haml +1 -1
  55. data/app/views/comfy/admin/cms/files/index.html.haml +1 -1
  56. data/app/views/layouts/comfy/admin/cms/_head.html.haml +11 -8
  57. data/comfortable_mexican_sofa.gemspec +0 -1
  58. data/lib/comfortable_mexican_sofa/engine.rb +0 -1
  59. data/lib/comfortable_mexican_sofa/version.rb +1 -1
  60. data/lib/generators/comfy/cms/assets_generator.rb +3 -3
  61. data/lib/generators/comfy/cms/cms_generator.rb +4 -11
  62. data/test/controllers/comfy/admin/cms/files_controller_test.rb +83 -31
  63. data/test/gemfiles/Gemfile.rails.4.0 +0 -1
  64. data/test/gemfiles/Gemfile.rails.4.1 +0 -1
  65. data/test/gemfiles/Gemfile.rails.4.2 +0 -1
  66. data/test/gemfiles/Gemfile.rails.master +0 -1
  67. data/test/generators/cms_assets_generator_test.rb +3 -3
  68. data/test/generators/cms_generator_test.rb +2 -6
  69. data/test/integration/js_variables_test.rb +20 -0
  70. metadata +50 -41
  71. data/app/assets/javascripts/comfortable_mexican_sofa/admin/application.js +0 -1
  72. data/app/assets/javascripts/comfortable_mexican_sofa/lib/diff.js.coffee +0 -9
  73. data/app/assets/stylesheets/comfortable_mexican_sofa/admin/application.css +0 -1
  74. data/app/assets/stylesheets/comfortable_mexican_sofa/application.sass +0 -8
  75. data/config/initializers/plupload.rb +0 -9
@@ -0,0 +1,77 @@
1
+ (function ($) {
2
+ $.Redactor.opts.langs['it'] = {
3
+ html: 'HTML',
4
+ video: 'Video',
5
+ image: 'Immagine',
6
+ table: 'Tabella',
7
+ link: 'Collegamento',
8
+ link_insert: 'Inserisci un collegamento ...',
9
+ link_edit: 'Modifica link',
10
+ unlink: 'Rimuovi il collegamento',
11
+ formatting: 'Stili',
12
+ paragraph: 'Paragrafo',
13
+ quote: 'Citazione',
14
+ code: 'Codice',
15
+ header1: 'H1',
16
+ header2: 'H2',
17
+ header3: 'H3',
18
+ header4: 'H4',
19
+ header5: 'H5',
20
+ bold: 'Grassetto',
21
+ italic: 'Corsivo',
22
+ superscript: 'Apice',
23
+ strikethrough: 'Barrato',
24
+ fontcolor: 'Colore del font',
25
+ backcolor: 'Colore di sfondo',
26
+ unorderedlist: 'Elenco puntato',
27
+ orderedlist: 'Elenco numerato',
28
+ outdent: 'Rimuovi rientro',
29
+ indent: 'Aumenta rientro',
30
+ cancel: 'Annulla',
31
+ insert: 'Inserisci',
32
+ save: 'Salva',
33
+ _delete: 'rimuovi',
34
+ insert_table: 'Inserisci tabella',
35
+ insert_row_above: 'Inserisci una riga sopra',
36
+ insert_row_below: 'Inserisci una riga sotto',
37
+ insert_column_left: 'Aggiungi una colonna a sinistra',
38
+ insert_column_right: 'Aggiungi una colonna a destra',
39
+ delete_column: 'Cancella colonna',
40
+ delete_row: 'Cancella riga',
41
+ delete_table: 'Cancella tabella',
42
+ rows: 'Righe',
43
+ columns: 'Colonne',
44
+ add_head: 'Aggiungi head',
45
+ delete_head: 'Cancella head',
46
+ title: 'Titolo',
47
+ image_position: 'Posizione',
48
+ none: 'Nessuno',
49
+ left: 'Sinistra',
50
+ right: 'Destra',
51
+ image_web_link: 'URL immagine',
52
+ text: 'Testo',
53
+ mailto: 'Email',
54
+ web: 'URL',
55
+ video_html_code: 'Codice da incorporare',
56
+ file: 'File',
57
+ upload: 'Upload',
58
+ download: 'Download',
59
+ choose: 'Scegli',
60
+ or_choose: 'O Scegli',
61
+ drop_file_here: 'Trascina il file qui',
62
+ align_left: 'Allinea a sinistra',
63
+ align_center: 'Allinea al centro',
64
+ align_right: 'Allinea a destra',
65
+ align_justify: 'Giustifica',
66
+ horizontalrule: 'Riga orizzonatale',
67
+ fullscreen: 'Schermo intero',
68
+ deleted: 'Cancellato',
69
+ anchor: 'Ancora',
70
+ link_new_tab: 'Apri link in una nuova tab',
71
+ underline: 'Sottolineato',
72
+ alignment: 'Allineamento',
73
+ filename: 'Nome (opzionale)',
74
+ edit: 'Modifica',
75
+ center: 'Center'
76
+ };
77
+ })( jQuery );
@@ -0,0 +1,75 @@
1
+ (function ($) {
2
+ $.Redactor.opts.langs['ja'] = {
3
+ html: 'HTML',
4
+ video: 'ビデオ',
5
+ image: 'イメージ',
6
+ table: 'テーブル',
7
+ link: 'リンク',
8
+ link_insert: 'リンクの挿入 ...',
9
+ link_edit: 'Edit link',
10
+ unlink: 'リンクを外す',
11
+ formatting: 'スタイル',
12
+ paragraph: '段落',
13
+ quote: '引用',
14
+ code: 'コード',
15
+ header1: 'ヘッダー 1',
16
+ header2: 'ヘッダー 2',
17
+ header3: 'ヘッダー 3',
18
+ header4: 'ヘッダー 4',
19
+ header5: 'ヘッダー 5',
20
+ bold: '太字',
21
+ italic: 'イタリック',
22
+ fontcolor: 'フォント色',
23
+ backcolor: '背景色',
24
+ unorderedlist: '番号なしリスト',
25
+ orderedlist: '番号つきリスト',
26
+ outdent: '字上げ(逆インデント)',
27
+ indent: '字下げ(インデント)',
28
+ cancel: 'キャンセル',
29
+ insert: '挿入',
30
+ save: '保存',
31
+ _delete: '削除',
32
+ insert_table: 'テーブルの挿入',
33
+ insert_row_above: '列を上に追加',
34
+ insert_row_below: '列を下に追加',
35
+ insert_column_left: '行を左に追加',
36
+ insert_column_right: '行を右に追加',
37
+ delete_column: '行を削除',
38
+ delete_row: '列を削除',
39
+ delete_table: 'テーブルを削除',
40
+ rows: '列',
41
+ columns: '行',
42
+ add_head: 'テーブルヘッダの追加',
43
+ delete_head: 'テーブルヘッダの削除',
44
+ title: 'タイトル',
45
+ image_position: 'イメージの位置',
46
+ none: '無し',
47
+ left: '左',
48
+ right: '右',
49
+ image_web_link: 'イメージへのリンク',
50
+ text: 'テキスト',
51
+ mailto: 'メール',
52
+ web: 'URL',
53
+ video_html_code: 'ビデオ埋め込みコード',
54
+ file: 'ファイル',
55
+ upload: 'アップロード',
56
+ download: 'ダウンロード',
57
+ choose: '選択',
58
+ or_choose: 'または選択',
59
+ drop_file_here: 'ファイルをここにドロップ',
60
+ align_left: '左揃え',
61
+ align_center: '中央揃え',
62
+ align_right: '右揃え',
63
+ align_justify: '均等割り付け',
64
+ horizontalrule: '水平線',
65
+ fullscreen: '全画面',
66
+ deleted: '打消し',
67
+ anchor: 'アンカー',
68
+ link_new_tab: '新しいタブでリンクを開く',
69
+ underline: 'アンダーライン',
70
+ alignment: '行揃え',
71
+ filename: '名前(オプション)',
72
+ edit: '編集',
73
+ center: 'Center'
74
+ };
75
+ })( jQuery );
@@ -0,0 +1,74 @@
1
+ (function ($) {
2
+ $.Redactor.opts.langs['no_NB'] = {
3
+ html: 'HTML',
4
+ video: 'Sett inn video...',
5
+ image: 'Sett inn bilde...',
6
+ table: 'Tabell',
7
+ link: 'Link',
8
+ link_insert: 'Sett inn link...',
9
+ link_edit: 'Rediger link',
10
+ unlink: 'Fjern link',
11
+ formatting: 'Formatering',
12
+ paragraph: 'Avsnitt',
13
+ quote: 'Sitat',
14
+ code: 'Kode',
15
+ header1: 'Overskrift 1',
16
+ header2: 'Overskrift 2',
17
+ header3: 'Overskrift 3',
18
+ header4: 'Overskrift 4',
19
+ header5: 'Overskrift 5',
20
+ bold: 'Fet',
21
+ italic: 'Kursiv',
22
+ fontcolor: 'Tekstfarge',
23
+ backcolor: 'Bakgrunsfarge',
24
+ unorderedlist: 'Usortert liste',
25
+ orderedlist: 'Sortert liste',
26
+ outdent: 'Redusere innrykk',
27
+ indent: 'Innrykk',
28
+ cancel: 'Avbryt',
29
+ insert: 'Sett inn',
30
+ save: 'Lagre',
31
+ _delete: 'Slett',
32
+ insert_table: 'Sett inn tabell...',
33
+ insert_row_above: 'Legg til rad over',
34
+ insert_row_below: 'Legg til rad under',
35
+ insert_column_left: 'Legg til kolonne venstre',
36
+ insert_column_right: 'Legg til kolonne høyre',
37
+ delete_column: 'Slett kolonne',
38
+ delete_row: 'Slett rad',
39
+ delete_table: 'Slett tabell',
40
+ rows: 'Rader',
41
+ columns: 'Kolonner',
42
+ add_head: 'Legg til tabellhode',
43
+ delete_head: 'Slett tabellhode',
44
+ title: 'Tittel',
45
+ image_position: 'Plassering',
46
+ none: 'Ingen',
47
+ left: 'Venstre',
48
+ right: 'Høyre',
49
+ image_web_link: 'Bildelink',
50
+ text: 'Tekst',
51
+ mailto: 'E-Post',
52
+ web: 'URL',
53
+ video_html_code: 'Kode for innbyggingsvideo eller Youtube/Vimeo link',
54
+ file: 'Sett inn fil...',
55
+ upload: 'Last opp',
56
+ download: 'Last ned',
57
+ choose: 'Velg',
58
+ or_choose: 'Eller velg',
59
+ drop_file_here: 'Slipp filen her',
60
+ align_left: 'Venstrejuster',
61
+ align_center: 'Midtjuster',
62
+ align_right: 'Høyrejuster',
63
+ align_justify: 'Balansert',
64
+ horizontalrule: 'Sett inn horisontal linje',
65
+ deleted: 'Slettet',
66
+ anchor: 'Anker',
67
+ link_new_tab: 'Åpne link i ny fane',
68
+ underline: 'Understreking',
69
+ alignment: 'Justering',
70
+ filename: 'Filnavn (valgfritt)',
71
+ edit: 'Endre',
72
+ center: 'Midten'
73
+ };
74
+ })(jQuery);
@@ -0,0 +1,79 @@
1
+ (function ($) {
2
+ $.Redactor.opts.langs['nl'] = {
3
+ html: 'HTML',
4
+ video: 'Video',
5
+ image: 'Afbeelding',
6
+ table: 'Tabel',
7
+ link: 'Link',
8
+ link_insert: 'Link invoegen...',
9
+ link_edit: 'Edit link',
10
+ unlink: 'Link ontkoppelen',
11
+ formatting: 'Stijlen',
12
+ paragraph: 'Paragraaf',
13
+ quote: 'Citaat',
14
+ code: 'Code',
15
+ header1: 'Kop 1',
16
+ header2: 'Kop 2',
17
+ header3: 'Kop 3',
18
+ header4: 'Kop 4',
19
+ header5: 'Kop 5',
20
+ bold: 'Vet',
21
+ italic: 'Cursief',
22
+ fontcolor: 'Tekstkleur',
23
+ backcolor: 'Achtergrondkleur',
24
+ unorderedlist: 'Ongeordende lijst',
25
+ orderedlist: 'Geordende lijst',
26
+ outdent: 'Uitspringen',
27
+ indent: 'Inspringen',
28
+ redo: 'Opnieuw maken',
29
+ undo: 'Ongedaan maken',
30
+ cut: 'Knippen',
31
+ cancel: 'Annuleren',
32
+ insert: 'Invoegen',
33
+ save: 'Opslaan',
34
+ _delete: 'Verwijderen',
35
+ insert_table: 'Tabel invoegen',
36
+ insert_row_above: 'Rij hierboven invoegen',
37
+ insert_row_below: 'Rij hieronder invoegen',
38
+ insert_column_left: 'Kolom links toevoegen',
39
+ insert_column_right: 'Kolom rechts toevoegen',
40
+ delete_column: 'Verwijder kolom',
41
+ delete_row: 'Verwijder rij',
42
+ delete_table: 'Verwijder tabel',
43
+ rows: 'Rijen',
44
+ columns: 'Kolommen',
45
+ add_head: 'Titel toevoegen',
46
+ delete_head: 'Titel verwijderen',
47
+ title: 'Titel',
48
+ image_position: 'Positie',
49
+ none: 'geen',
50
+ left: 'links',
51
+ right: 'rechts',
52
+ image_web_link: 'Afbeelding link',
53
+ text: 'Tekst',
54
+ mailto: 'Email',
55
+ web: 'URL',
56
+ video_html_code: 'Video embed code',
57
+ file: 'Bestand',
58
+ upload: 'Uploaden',
59
+ download: 'Downloaden',
60
+ choose: 'Kies',
61
+ or_choose: 'Of kies',
62
+ drop_file_here: 'Sleep bestand hier',
63
+ align_left: 'Links uitlijnen',
64
+ align_center: 'Centreren',
65
+ align_right: 'Rechts uitlijnen',
66
+ align_justify: 'Uitvullen',
67
+ horizontalrule: 'Horizontale lijn',
68
+ fullscreen: 'Volledig scherm',
69
+ deleted: 'Verwijderd',
70
+ anchor: 'Anker',
71
+ link_new_tab: 'Open link in nieuw tabblad',
72
+ underline: 'Onderstrepen',
73
+ alignment: 'Uitlijning',
74
+ filename: 'Naam (optioneel)',
75
+ edit: 'Bewerk',
76
+ center: 'Center'
77
+ };
78
+ })( jQuery );
79
+
@@ -0,0 +1,75 @@
1
+ (function ($) {
2
+ $.Redactor.opts.langs['pl'] = {
3
+ html: 'Źródło',
4
+ video: 'Wideo',
5
+ image: 'Obrazek',
6
+ table: 'Tabela',
7
+ link: 'Link',
8
+ link_insert: 'Wstaw link ...',
9
+ link_edit: 'Edit link',
10
+ unlink: 'Usuń link',
11
+ formatting: 'Style',
12
+ paragraph: 'Zwykły tekst',
13
+ quote: 'Cytat',
14
+ code: 'Kod źródłowy',
15
+ header1: 'Nagłówek 1',
16
+ header2: 'Nagłówek 2',
17
+ header3: 'Nagłówek 3',
18
+ header4: 'Nagłówek 4',
19
+ header5: 'Nagłówek 5',
20
+ bold: 'Pogrubiony',
21
+ italic: 'Pochylony',
22
+ fontcolor: 'Kolor tekstu',
23
+ backcolor: 'Kolor tła',
24
+ unorderedlist: 'Wypunktowanie',
25
+ orderedlist: 'Numeracja',
26
+ outdent: 'Zwiększ wcięcie',
27
+ indent: 'Zmniejsz wcięcie',
28
+ cancel: 'Anuluj',
29
+ insert: 'Wstaw',
30
+ save: 'Zachowaj',
31
+ _delete: 'Usuń',
32
+ insert_table: 'Wstaw tabele',
33
+ insert_row_above: 'Dodaj wiersz na górze',
34
+ insert_row_below: 'Dodaj wiersz na dole',
35
+ insert_column_left: 'Dodaj kolumnę po lewej',
36
+ insert_column_right: 'Dodaj kolumnę po prawej',
37
+ delete_column: 'Usuń kolumnę',
38
+ delete_row: 'Usuń wiersz',
39
+ delete_table: 'Usuń tabele',
40
+ rows: 'Wiersze',
41
+ columns: 'Kolumny',
42
+ add_head: 'Dodaj nagłówek',
43
+ delete_head: 'Usuń nagłówek',
44
+ title: 'Wskazówka',
45
+ image_position: 'Obramowanie',
46
+ none: 'nie ma',
47
+ left: 'od lewej',
48
+ right: 'od prawej',
49
+ image_web_link: 'albo link do obrazku',
50
+ text: 'Tekst',
51
+ mailto: 'Poczta e-mail',
52
+ web: 'URL',
53
+ video_html_code: 'Kod źródłowy pliku wideo',
54
+ file: 'Plik',
55
+ upload: 'Wgraj na serwer',
56
+ download: 'Pobierz',
57
+ choose: 'Wybierz z listy',
58
+ or_choose: 'lub wybierz',
59
+ drop_file_here: 'Przenieś plik tutaj',
60
+ align_left: 'Tekst do lewej',
61
+ align_center: 'Wyśrodkuj',
62
+ align_right: 'Tekst do prawej',
63
+ align_justify: 'Wyjustuj',
64
+ horizontalrule: 'Linia pozioma',
65
+ fullscreen: 'Pełny ekran',
66
+ deleted: 'Usunięty',
67
+ anchor: 'Kotwica',
68
+ link_new_tab: 'Otwórz link w nowym oknie',
69
+ underline: 'Pokdreślony',
70
+ alignment: 'Wyrównanie',
71
+ filename: 'Name (optional)',
72
+ edit: 'Edit',
73
+ center: 'Center'
74
+ };
75
+ })( jQuery );
@@ -0,0 +1,74 @@
1
+ (function ($) {
2
+ $.Redactor.opts.langs['pt-BR'] = {
3
+ html: 'HTML',
4
+ video: 'Inserir Video...',
5
+ image: 'Inserir Imagem...',
6
+ table: 'Tabela',
7
+ link: 'Hiperligação',
8
+ link_insert: 'Inserir Hiperligação ...',
9
+ link_edit: 'Edit link',
10
+ unlink: 'Remover Hiperligação',
11
+ formatting: 'Formatação',
12
+ paragraph: 'Parágrafo',
13
+ quote: 'Citar',
14
+ code: 'Código',
15
+ header1: 'Cabeçalho 1',
16
+ header2: 'Cabeçalho 2',
17
+ header3: 'Cabeçalho 3',
18
+ header4: 'Cabeçalho 4',
19
+ header5: 'Cabeçalho 5',
20
+ bold: 'Negrito',
21
+ italic: 'Itálico',
22
+ fontcolor: 'Cor da Fonte',
23
+ backcolor: 'Cor de Fundo',
24
+ unorderedlist: 'Lista Não Ordenada',
25
+ orderedlist: 'Lista Ordenada',
26
+ outdent: 'Remover Identação',
27
+ indent: 'Identar',
28
+ cancel: 'Cancelar',
29
+ insert: 'Inserir',
30
+ save: 'Guardar',
31
+ _delete: 'Eliminar',
32
+ insert_table: 'Inserir Tabela...',
33
+ insert_row_above: 'Adicionar Linha Acima',
34
+ insert_row_below: 'Adicionar Linha Abaixo',
35
+ insert_column_left: 'Adicionar Coluna à Esquerda',
36
+ insert_column_right: 'Adicionar Coluna à Direita',
37
+ delete_column: 'Eliminar Coluna',
38
+ delete_row: 'Eliminar Linha',
39
+ delete_table: 'Eliminar Tabela',
40
+ rows: 'Linhas',
41
+ columns: 'Colunas',
42
+ add_head: 'Adicionar Cabeçalho',
43
+ delete_head: 'Eliminar Cabeçalho',
44
+ title: 'Título',
45
+ image_position: 'Posição',
46
+ none: 'Nenhum',
47
+ left: 'Esquerda',
48
+ right: 'Direita',
49
+ image_web_link: 'Url de Imagem',
50
+ text: 'Texto',
51
+ mailto: 'Email',
52
+ web: 'URL',
53
+ video_html_code: 'Código de Incorporação de Vídeo',
54
+ file: 'Inserir Ficheiro...',
55
+ upload: 'Upload',
56
+ download: 'Download',
57
+ choose: 'Escolha',
58
+ or_choose: 'Ou escolha',
59
+ drop_file_here: 'Largue o ficheiro aqui',
60
+ align_left: 'Alinhar à esquerda',
61
+ align_center: 'Centrar',
62
+ align_right: 'Alinhar à direita',
63
+ align_justify: 'Justificar',
64
+ horizontalrule: 'Inserir Linha Horizontal',
65
+ deleted: 'Eliminado',
66
+ anchor: 'Âncora',
67
+ link_new_tab: 'Abrir hiperligação em novo separador',
68
+ underline: 'Underline',
69
+ alignment: 'Alignment',
70
+ filename: 'Name (optional)',
71
+ edit: 'Edit',
72
+ center: 'Center'
73
+ };
74
+ })( jQuery );